diff --git a/Shorewall-docsN/6to4.xml b/Shorewall-docsN/6to4.xml new file mode 100644 index 000000000..723f5c104 --- /dev/null +++ b/Shorewall-docsN/6to4.xml @@ -0,0 +1,111 @@ + + +
+ + + + 6to4 Tunnels + + + + Eric + + de Thouars + + + + Tom + + Eastep + + + + 2004-01-05 + + + 2003-2004 + + Eric de Thoars and Tom Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + The 6to4 tunnel feature of Shorewall only facilitates IPv6 over IPv4 + tunneling. It does not provide any IPv6 security measures. + + + 6to4 tunneling with Shorewall can be used to connect your IPv6 network + to another IPv6 network over an IPv4 infrastructure. + + More information on Linux and IPv6 can be found in the Linux IPv6 HOWTO. + Details on how to setup a 6to4 tunnels are described in the section Setup + of 6to4 tunnels. + +
+ Connecting two IPv6 Networks + + Suppose that we have the following situation: + + + + We want systems in the 2002:100:333::/64 subnetwork to be able to + communicate with the systems in the 2002:488:999::/64 network. This is + accomplished through use of the /etc/shorewall/tunnels + file and the ip utility for network interface and routing + configuration. + + Unlike GRE and IPIP tunneling, the /etc/shorewall/policy, + /etc/shorewall/interfaces and /etc/shorewall/zones + files are not used. There is no need to declare a zone to represent the + remote IPv6 network. This remote network is not visible on IPv4 interfaces + and to iptables. All that is visible on the IPv4 level is an IPv4 stream + which contains IPv6 traffic. Separate IPv6 interfaces and ip6tables rules + need to be defined to handle this traffic. + + In /etc/shorewall/tunnels on system A, we need + the following: + + #TYPE ZONE GATEWAY GATEWAY ZONE +6to4 net 134.28.54.2 + + This entry in /etc/shorewall/tunnels, opens the + firewall so that the IPv6 encapsulation protocol (41) will be accepted + to/from the remote gateway. + + Use the following commands to setup system A: + + >ip tunnel add tun6to4 mode sit ttl 254 remote 134.28.54.2 +>ip link set dev tun6to4 up +>ip addr add 3ffe:8280:0:2001::1/64 dev tun6to4 +>ip route add 2002:488:999::/64 via 3ffe:8280:0:2001::2 + + Similarly, in /etc/shorewall/tunnels on system + B we have: + + #TYPE ZONE GATEWAY GATEWAY ZONE +6to4 net 206.191.148.9 + + And use the following commands to setup system B: + + >ip tunnel add tun6to4 mode sit ttl 254 remote 206.191.148.9 +>ip link set dev tun6to4 up +>ip addr add 3ffe:8280:0:2001::2/64 dev tun6to4 +>ip route add 2002:100:333::/64 via 3ffe:8280:0:2001::1 + + On both systems, restart Shorewall and issue the configuration + commands as listed above. The systems in both IPv6 subnetworks can now + talk to each other using IPv6. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/Accounting.xml b/Shorewall-docsN/Accounting.xml new file mode 100644 index 000000000..fa3695ce4 --- /dev/null +++ b/Shorewall-docsN/Accounting.xml @@ -0,0 +1,238 @@ + + +
+ + + + Shorewall Traffic Accounting + + + + Tom + + Eastep + + + + 2004-04-19 + + + 2003-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + Shorewall Traffic Accounting support was added in Shorewall release + 1.4.7. + + Shorewall accounting rules are described in the file + /etc/shorewall/accounting. By default, the accounting rules are placed in a + chain called accounting and can thus be displayed using + shorewall show accounting. All traffic passing into, out of + or through the firewall traverses the accounting chain including traffic + that will later be rejected by interface options such as tcpflags + and maclist. If your kernel doesn't support the + connection tracking match extension (Kernel 2.4.21) then some traffic + rejected under norfc1918 will not traverse the accounting + chain. + + The columns in the accounting file are as follows: + + + + ACTION - What to do when a match + is found. Possible values are: + + + + COUNT- Simply count the match and continue trying to match the + packet with the following accounting rules + + + + DONE- Count the match and don't attempt to match any + following accounting rules. + + + + <chain> - The name of a chain to + jump to. Shorewall will create the chain automatically. If the name + of the chain is followed by :COUNT then a COUNT rule + matching this rule will automatically be added to <chain>. + Chain names must start with a letter, must be composed of letters + and digits, and may contain underscores (_) and + periods (.). Beginning with Shorewall version 1.4.8, + chain names man also contain embedded dashes (-) and + are not required to start with a letter. + + + + + + CHAIN - The name of the chain + where the accounting rule is to be added. If empty or - + then the accounting chain is assumed. + + + + SOURCE - Packet Source. The name + of an interface, an address (host or net) or an interface name followed + by : and a host or net address. + + + + DESTINATION - Packet Destination + Format the same as the SOURCE column. + + + + PROTOCOL - A protocol name (from + /etc/protocols) or a protocol number. + + + + DEST PORT - Destination Port + number. Service name from /etc/services or port + number. May only be specified if the protocol is TCP or UDP (6 or 17). + + + + SOURCE PORT- Source Port number. + Service name from /etc/services or port number. May only be specified if + the protocol is TCP or UDP (6 or 17). + + + + In all columns except ACTION and CHAIN, the values -,any + and all are treated as wild-cards. + + The accounting rules are evaluated in the Netfilter filter + table. This is the same environment where the rules file + rules are evaluated and in this environment, DNAT has already occurred in + inbound packets and SNAT has not yet occurred on outbound ones. + + Accounting rules are not stateful -- each rule only handles traffic in + one direction. For example, if eth0 is your internet interface and you have + a web server in your DMZ connected to eth1 then to count HTTP traffic in + both directions requires two rules: + + #ACTION CHAIN SOURCE DESTINATION PROTOCOL DEST SOURCE + # PORT PORT + DONE - eth0 eth1 tcp 80 + DONE - eth1 eth0 tcp - 80 + + Associating a counter with a chain allows for nice reporting. For + example: + + #ACTION CHAIN SOURCE DESTINATION PROTOCOL DEST SOURCE + # PORT PORT + web:COUNT - eth0 eth1 tcp 80 + web:COUNT - eth1 eth0 tcp - 80 + web:COUNT - eth0 eth1 tcp 443 + web:COUNT - eth1 eth0 tcp - 443 + DONE web + + Now shorewall show web will give you a breakdown of + your web traffic: + + [root@gateway shorewall]# shorewall show web + Shorewall-1.4.6-20030821 Chain web at gateway.shorewall.net - Wed Aug 20 09:48:56 PDT 2003 + + Counters reset Wed Aug 20 09:48:00 PDT 2003 + + Chain web (4 references) + pkts bytes target prot opt in out source destination + 11 1335 tcp -- eth0 eth1 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 + 18 1962 tcp -- eth1 eth0 0.0.0.0/0 0.0.0.0/0 tcp spt:80 + 0 0 tcp -- eth0 eth1 0.0.0.0/0 0.0.0.0/0 tcp dpt:443 + 0 0 tcp -- eth1 eth0 0.0.0.0/0 0.0.0.0/0 tcp spt:443 + 29 3297 RETURN all -- * * 0.0.0.0/0 0.0.0.0/0 + [root@gateway shorewall]# + + Here is a slightly different example: + + #ACTION CHAIN SOURCE DESTINATION PROTOCOL DEST SOURCE + # PORT PORT + web - eth0 eth1 tcp 80 + web - eth1 eth0 tcp - 80 + web - eth0 eth1 tcp 443 + web - eth1 eth0 tcp - 443 + COUNT web eth0 eth1 + COUNT web eth1 eth0 + + Now shorewall show web simply gives you a breakdown by + input and output: + + [root@gateway shorewall]# shorewall show accounting web + Shorewall-1.4.6-20030821 Chains accounting web at gateway.shorewall.net - Wed Aug 20 10:27:21 PDT 2003 + + Counters reset Wed Aug 20 10:24:33 PDT 2003 + + Chain accounting (3 references) + pkts bytes target prot opt in out source destination + 8767 727K web tcp -- eth0 eth1 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 + 0 0 web tcp -- eth0 eth1 0.0.0.0/0 0.0.0.0/0 tcp dpt:443 + 11506 13M web tcp -- eth1 eth0 0.0.0.0/0 0.0.0.0/0 tcp spt:80 + 0 0 web tcp -- eth1 eth0 0.0.0.0/0 0.0.0.0/0 tcp spt:443 + + Chain web (4 references) + pkts bytes target prot opt in out source destination + 8767 727K all -- eth0 eth1 0.0.0.0/0 0.0.0.0/0 + 11506 13M all -- eth1 eth0 0.0.0.0/0 0.0.0.0/0 + [root@gateway shorewall]# + + Here's how the same example would be constructed on an HTTP server + with only one interface (eth0). + + + READ THE ABOVE CAREFULLY -- IT SAYS SERVER. + If you want to account for web browsing, you have to reverse the rules + below. + + + #ACTION CHAIN SOURCE DESTINATION PROTOCOL DEST SOURCE + # PORT PORT + web - eth0 - tcp 80 + web - - eth0 tcp - 80 + web - eth0 - tcp 443 + web - - eth0 tcp - 443 + COUNT web eth0 + COUNT web - eth0 + + Note that with only one interface, only the SOURCE (for input rules) + or the DESTINATION (for output rules) is specified in each rule. + + Here's the output: + + [root@mail shorewall]# shorewall show accounting web Shorewall-1.4.7 + Chains accounting web at mail.shorewall.net - Sun Oct 12 10:27:21 PDT 2003 + + Counters reset Sat Oct 11 08:12:57 PDT 2003 + + Chain accounting (3 references) + pkts bytes target prot opt in out source destination + 8767 727K web tcp -- eth0 * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 + 11506 13M web tcp -- * eth0 0.0.0.0/0 0.0.0.0/0 tcp spt:80 + 0 0 web tcp -- eth0 * 0.0.0.0/0 0.0.0.0/0 tcp dpt:443 + 0 0 web tcp -- * eth0 0.0.0.0/0 0.0.0.0/0 tcp spt:443 + + Chain web (4 references) + pkts bytes target prot opt in out source destination + 8767 727K all -- eth0 * 0.0.0.0/0 0.0.0.0/0 + 11506 13M all -- * eth0 0.0.0.0/0 0.0.0.0/0 + [root@mail shorewall]# + + For an example of integrating Shorewall Accounting with MRTG, see + http://www.nightbrawler.com/code/shorewall-stats/. +
\ No newline at end of file diff --git a/Shorewall-docsN/CorpNetwork.xml b/Shorewall-docsN/CorpNetwork.xml new file mode 100644 index 000000000..c47a3d145 --- /dev/null +++ b/Shorewall-docsN/CorpNetwork.xml @@ -0,0 +1,542 @@ + + +
+ + + + Corporate Network + + + + Tom + + Eastep + + + + Graeme + + Boyle + + + + 2003-11-13 + + + 2003 Thomas M. Eastep and Graeme Boyle + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ The Network + + + + + This configuration is used on a corporate network that has a + Linux (RedHat 8.0) server with three interfaces, running Shorewall + 1.4.5 release, + + + + Make sure you know what public IP addresses are currently + being used and verify these before starting. + + + + Verify your DNS settings before starting + any Shorewall configuration especially if you have split DNS. + + + + System names and Internet IP addresses have been changed to + protect the innocent. + + + + + + This configuration uses a combination of One-to-one NAT and Proxy + ARP. This is generally not relevant to a simple configuration with a + single public IP address. If you have just a single public IP address, + most of what you see here won't apply to your setup so beware of + copying parts of this configuration and expecting them to work for you. + What you copy may or may not work in your configuration. + + + I have a T1 with 64 static IP addresses (192.0.18.65-127/26). The + internet is connected to eth0. The local network is connected via eth1 + (10.10.0.0/22) and the DMZ is connected to eth2 (192.168.21.0/24). I have + an IPSec tunnel connecting our offices in Germany to our offices in the + US. I host two Microsoft Exchange servers for two different companies + behind the firewall hence, the two Exchange servers in the diagram below. + +
+ Summary + + + + SNAT for all systems connected to the LAN - Internal addresses + 10.10.x.x to external address 192.0.18.127. + + + + One-to-one NAT for Polaris (Exchange + Server #2). Internal address 10.10.1.8 and external address + 192.0.18.70. + + + + One-to-one NAT for Sims (Inventory + Management server). Internal address 10.10.1.56 and external address + 192.0.18.75. + + + + One-to-one NAT for Project (Project Web + Server). Internal address 10.10.1.55 and external address + 192.0.18.84. + + + + One-to-one NAT for Fortress (Exchange + Server). Internal address 10.10.1.252 and external address + 192.0.18.93. + + + + One-to-one NAT for BBSRV (Blackberry + Server). Internal address 10.10.1.230 and external address + 192.0.18.97. + + + + One-to-one NAT for Intweb (Intranet Web + Server). Internal address 10.10.1.60 and external address + 192.0.18.115. + + + + The firewall runs on a 2Gb, Dual PIV/2.8GHz, Intel motherboard + with RH8.0. + + The Firewall is also a proxy server running Privoxy 3.0. + + The single system in the DMZ (address 192.0.18.80) runs sendmail, + imap, pop3, DNS, a Web server (Apache) and an FTP server (vsFTPd 1.1.0). + That server is managed through Proxy ARP. + + All administration and publishing is done using ssh/scp. I have X + installed on the firewall and the system in the DMZ. X applications + tunnel through SSH to Hummingbird Exceed running on a PC located in the + LAN. Access to the firewall using SSH is restricted to systems in the + LAN, DMZ or the system Kaos which is on the Internet and managed by me. + + + + The Ethernet 0 interface in the Server is configured with IP + address 192.0.18.68, netmask 255.255.255.192. The server's default + gateway is 192.0.18.65, the Router connected to my network and the ISP. + This is the same default gateway used by the firewall itself. On the + firewall, Shorewall automatically adds a host route to 192.0.18.80 + through Ethernet 2 (192.168.21.1) because of the entry in + /etc/shorewall/proxyarp (see below). I modified the start, stop and init + scripts to include the fixes suggested when having an IPSec tunnel. +
+ +
+ Some Mistakes I Made + + Yes, believe it or not, I made some really basic mistakes when + building this firewall. Firstly, I had the new firewall setup in + parallel with the old firewall so that there was no interruption of + service to my users. During my out-bound testing, I set up systems on + the LAN to utilize the firewall which worked fine. When testing my NAT + connections, from the outside, these would fail and I could not + understand why. Eventually, I changed the default route on the internal + system I was trying to access, to point to the new firewall and + bingo, everything worked as expected. This oversight + delayed my deployment by a couple of days not to mention level of + frustration it produced. + + Another problem that I encountered was in setting up the Proxyarp + system in the DMZ. Initially I forgot to remove the entry for the eth2 + from the /etc/shorewall/masq file. Once my file settings were correct, I + started verifying that the ARP caches on the firewall, as well as the + outside system kaos, were showing the correct Ethernet + MAC address. However, in testing remote access, I could access the + system in the DMZ only from the firewall and LAN but not from the + Internet. The message I received was connection denied on + all protocols. What I did not realize was that a helpful + administrator that had turned on an old system and assigned the same + address as the one I was using for Proxyarp without notifying me. How + did I work this out. I shutdown the system in the DMZ, rebooted the + router and flushed the ARP cache on the firewall and kaos. Then, from + kaos, I started pinging that IP address and checked the updated ARP + cache and lo-and-behold a different MAC address showed up. High levels + of frustration etc., etc. The administrator will not be doing that + again! :-) +
+ +
+ Lessons Learned + + + + Read the documentation. + + + + Draw your network topology before starting. + + + + Understand what services you are going to allow in and out of + the firewall, whether they are TCP or UDP packets and make a note of + these port numbers. + + + + Try to get quiet time to build the firewall - you need to + focus on the job at hand. + + + + When asking for assistance, be honest and include as much + detail as requested. Don't try and hide IP addresses etc., you + will probably screw up the logs and make receiving assistance + harder. + + + + Read the documentation. + + +
+ +
+ Futures + + This is by no means the final configuration. In the near future, I + will be moving more systems from the LAN to the DMZ. I will also be + watching the logs for port scan programs etc. but, this should be + standard security maintenance. +
+
+ +
+ Configuation Files + + Here are copies of my files. I have removed most of the internal + documentation for the purpose of this space however, my system still has + the original files with all the comments and I highly recommend you do the + same. + +
+ Shorewall.conf + + ############################################################################## +# /etc/shorewall/shorewall.conf V1.4 - Change the following variables to +# match your setup +# +# This program is under GPL [http://www.gnu.org/copyleft/gpl.htm] +# +# This file should be placed in /etc/shorewall +# +# (c) 1999,2000,2001,2002,2003 - Tom Eastep (teastep@shorewall.net) +############################################################################## +# L O G G I N G +############################################################################## +LOGFILE=/var/log/messages +LOGFORMAT=Shorewall:%s:%s: +LOGRATE= +LOGBURST= +LOGUNCLEAN=info +BLACKLIST_LOGLEVEL= +LOGNEWNOTSYN= +MACLIST_LOG_LEVEL=info +TCP_FLAGS_LOG_LEVEL=debug +RFC1918_LOG_LEVEL=debug +PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin:/usr/local/sbin +SUBSYSLOCK=/var/lock/subsys/shorewall +STATEDIR=/var/lib/shorewall +MODULESDIR= +FW=fw +NAT_ENABLED=Yes +MANGLE_ENABLED=Yes +IP_FORWARDING=On +ADD_IP_ALIASES=Yes +ADD_SNAT_ALIASES=Yes +TC_ENABLED=Yes +CLEAR_TC=No +MARK_IN_FORWARD_CHAIN=No +CLAMPMSS=No +ROUTE_FILTER=Yes +NAT_BEFORE_RULES=No +MULTIPORT=Yes +DETECT_DNAT_IPADDRS=Yes +MUTEX_TIMEOUT=60 +NEWNOTSYN=Yes +BLACKLIST_DISPOSITION=DROP +MACLIST_DISPOSITION=REJECT +TCP_FLAGS_DISPOSITION=DROP +#LAST LINE -- DO NOT REMOVE +
+ +
+ Zones File + + # +# Shorewall 1.4 -- Sample Zone File For Two Interfaces +# /etc/shorewall/zones +# +# This file determines your network zones. Columns are: +# +# ZONE Short name of the zone +# DISPLAY Display name of the zone +# COMMENTS Comments about the zone +# +#ZONE DISPLAY COMMENTS +net Net Internet +loc Local Local Networks +dmz DMZ Demilitarized Zone +vpn1 VPN1 VPN to Germany +#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE +
+ +
+ Interfaces File + + ############################################################################## +#ZONE INTERFACE BROADCAST OPTIONS +net eth0 62.123.106.127 routefilter,norfc1918,blacklist,tcpflags +loc eth1 detect dhcp,routefilter +dmz eth2 detect +vpn1 ipsec0 +#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE + +
+ +
+ Routestopped File + + #INTERFACE HOST(S) +eth1 - +eth2 - +#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE +
+ +
+ Policy File + + ############################################################################### +#SOURCE DEST POLICY LOG LEVEL LIMIT:BURST +loc net ACCEPT +loc fw ACCEPT +loc dmz ACCEPT +# If you want open access to the Internet from your Firewall +# remove the comment from the following line. +fw net ACCEPT +fw loc ACCEPT +fw dmz ACCEPT +dmz fw ACCEPT +dmz loc ACCEPT +dmz net ACCEPT +# +# Adding VPN Access +loc vpn1 ACCEPT +dmz vpn1 ACCEPT +fw vpn1 ACCEPT +vpn1 loc ACCEPT +vpn1 dmz ACCEPT +vpn1 fw ACCEPT +# +net all DROP info +all all REJECT info +#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE +
+ +
+ Masq File + + #INTERFACE SUBNET ADDRESS +eth0 eth1 1192.0.18.126 +# +#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE +
+ +
+ NAT File + + #EXTERNAL INTERFACE INTERNAL ALL INTERFACES LOCAL +# +# Intranet Web Server +192.0.18.115 eth0:0 10.10.1.60 No No +# +# Project Web Server +192.0.18.84 eth0:1 10.10.1.55 No No +# +# Blackberry Server +192.0.18.97 eth0:2 10.10.1.55 No No +# +# Corporate Mail Server +192.0.18.93 eth0:3 10.10.1.252 No No +# +# Second Corp Mail Server +192.0.18.70 eth0:4 10.10.1.8 No No +# +# Sims Server +192.0.18.75 eth0:5 10.10.1.56 No No +# +#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE +
+ +
+ Proxy ARP File + + #ADDRESS INTERFACE EXTERNAL HAVEROUTE +# +# The Corporate email server in the DMZ +192.0.18.80 eth2 eth0 No +# +#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE +
+ +
+ Tunnels File + + # TYPE ZONE GATEWAY GATEWAY ZONE PORT +ipsec net 134.147.129.82 +#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE +
+ +
+ Rules File (The shell variables are set in /etc/shorewall/params) + + ############################################################################## +#ACTION SOURCE DEST PROTO DEST SOURCE ORIGINAL +# PORT PORT(S) DEST +# +# Accept DNS connections from the firewall to the network +# +ACCEPT fw net tcp 53 +ACCEPT fw net udp 53 +# +# Accept SSH from internet interface from kaos only +# +ACCEPT net:192.0.18.98 fw tcp 22 +# +# Accept connections from the local network for administration +# +ACCEPT loc fw tcp 20:22 +ACCEPT loc net tcp 22 +ACCEPT loc fw tcp 53 +ACCEPT loc fw udp 53 +ACCEPT loc net tcp 53 +ACCEPT loc net udp 53 +# +# Allow Ping To And From Firewall +# +ACCEPT loc fw icmp 8 +ACCEPT loc dmz icmp 8 +ACCEPT loc net icmp 8 +ACCEPT dmz fw icmp 8 +ACCEPT dmz loc icmp 8 +ACCEPT dmz net icmp 8 +DROP net fw icmp 8 +DROP net loc icmp 8 +DROP net dmz icmp 8 +ACCEPT fw loc icmp 8 +ACCEPT fw dmz icmp 8 +DROP fw net icmp 8 +# +# Accept proxy web connections from the inside +# +ACCEPT loc fw tcp 8118 +# +# Forward PcAnywhere, Oracle and Web traffic from outside to the Demo systems +# From a specific IP Address on the Internet. +# +# ACCEPT net:207.65.110.10 loc:10.10.3.151 tcp 1521,http +# ACCEPT net:207.65.110.10 loc:10.10.2.32 tcp 5631:5632 +# +# Intranet web server +ACCEPT net loc:10.10.1.60 tcp 443 +ACCEPT dmz loc:10.10.1.60 tcp 443 +# +# Projects web server +ACCEPT net loc:10.10.1.55 tcp 80 +ACCEPT dmz loc:10.10.1.55 tcp 80 +# +# Blackberry Server +ACCEPT net loc:10.10.1.230 tcp 3101 +# +# Corporate Email Server +ACCEPT net loc:10.10.1.252 tcp 25,53,110,143,443 +# +# Corporate #2 Email Server +ACCEPT net loc:10.10.1.8 tcp 25,80,110,443 +# +# Sims Server +ACCEPT net loc:10.10.1.56 tcp 80,443 +ACCEPT net loc:10.10.1.56 tcp 7001:7002 +ACCEPT net:63.83.198.0/24 loc:10.10.1.56 tcp 5631:5632 +# +# Access to DMZ +ACCEPT loc dmz udp 53,177 +ACCEPT loc dmz tcp 80,25,53,22,143,443,993,20,110 - +ACCEPT net dmz udp 53 +ACCEPT net dmz tcp 25,53,22,21,123 +ACCEPT dmz net tcp 25,53,80,123,443,21,22 +ACCEPT dmz net udp 53 +# +#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE +
+ +
+ Start File + + ############################################################################ +# Shorewall 1.4 -- /etc/shorewall/start +# +# Add commands below that you want to be executed after shorewall has +# been started or restarted. +# +qt service ipsec start +
+ +
+ Stop File + + ############################################################################ +# Shorewall 1.4 -- /etc/shorewall/stop +# +# Add commands below that you want to be executed at the beginning of a +# shorewall stop command. +# +qt service ipsec stop +
+ +
+ Init File + + ############################################################################ +# Shorewall 1.4 -- /etc/shorewall/init +# +# Add commands below that you want to be executed at the beginning of +# a shorewall start or shorewall restart command. +# +qt service ipsec stop +
+
+
\ No newline at end of file diff --git a/Shorewall-docsN/Documentation.xml b/Shorewall-docsN/Documentation.xml new file mode 100644 index 000000000..d7dfc3712 --- /dev/null +++ b/Shorewall-docsN/Documentation.xml @@ -0,0 +1,3384 @@ + + +
+ + + + Shorewall 2.0 Reference + + + + Tom + + Eastep + + + + 2004-06-12 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + This documentation is intended primarily for reference. + Step-by-step instructions for configuring Shorewall in common setups may + be found in the QuickStart + Guides. + + + +
+ Components + + Shorewall consists of the following components: + + + + params + + + a parameter file installed in /etc/shorewall + that can be used to establish the values of shell variables for use + in other files. + + + + + shorewall.conf + + + a parameter file installed in /etc/shorewall + that is used to set several firewall parameters. + + + + + zones + + + a parameter file installed in /etc/shorewall + that defines a network partitioning into zones + + + + + policy + + + a parameter file installed in /etc/shorewall + that establishes overall firewall policy. + + + + + rules + + + a parameter file installed in /etc/shorewall + and used to express firewall rules that are exceptions to the + high-level policies established in /etc/shorewall/policy. + + + + + blacklist + + + a parameter file installed in /etc/shorewall + and used to list blacklisted IP/subnet/MAC addresses. + + + + + ecn + + + a parameter file installed in /etc/shorewall + and used to selectively disable Explicit Congestion Notification + (ECN - RFC 3168). + + + + + functions + + + a set of shell functions used by both the firewall and + shorewall shell programs. Installed in /usr/share/shorewall. + + + + + modules + + + a parameter file installed in /etc/shorewall + and that specifies kernel modules and their parameters. Shorewall + will automatically load the modules specified in this file. + + + + + tos + + + a parameter file installed in /etc/shorewall + that is used to specify how the Type of Service (TOS) field in + packets is to be set. + + + + + init.sh and init.debian.sh + + + a shell script installed in /etc/init.d + to automatically start Shorewall during boot. The + particular script installed depends on which distribution you are + running. + + + + + interfaces + + + a parameter file installed in /etc/shorewall + and used to describe the interfaces on the firewall system. + + + + + hosts + + + a parameter file installed in /etc/shorewall + and used to describe individual hosts or subnetworks in zones. + + + + + maclist + + + a parameter file installed in /etc/shorewall + and used to verify the MAC address (and possibly also the IP + address(es)) of devices. + + + + + masq + + + This file also describes IP masquerading under Shorewall and + is installed in /etc/shorewall. + + + + + firewall + + + a shell program that reads the configuration files in + /etc/shorewall and configures + your firewall. This file is installed in /usr/share/shorewall. + + + + + nat + + + a parameter file in /etc/shorewall + used to define one-to-one NAT. + + + + + proxyarp + + + a parameter file in /etc/shorewall + used to define Proxy Arp. + + + + + rfc1918 + + + a parameter file in /usr/share/shorewall + used to define the treatment of packets under the norfc1918 interface option. + + + + + bogons + + + a parameter file in /usr/share/shorewall + used to define the treatment of packets under the nobogons interface option. + + + + + routestopped + + + a parameter file in /etc/shorewall + used to define those hosts that can access the firewall when + Shorewall is stopped. + + + + + tcrules + + + a parameter file in /etc/shorewall + used to define rules for classifying packets for Traffic Shaping/Control. + + + + + tunnels + + + a parameter file in /etc/shorewall + used to define IPSec tunnels. + + + + + shorewall + + + a shell program (requiring a Bourne shell or derivative) used + to control and monitor the firewall. This should be placed in + /sbin or in /usr/sbin (the install.sh script and + the rpm install this file in /sbin). + + + + + accounting + + + a parameter file in /etc/shorewall + used to define traffic accounting rules. This file was added in + version 1.4.7. + + + + + version + + + a file created in /usr/share/shorewall + that describes the version of Shorewall installed on your system. + + + + + actions and + action.template + + + files in /etc/shorewall + and /usr/share/shorewall + respectively that allow you to define your own actions for rules in + /etc/shorewall/rules. + + + + + actions.std and action.* + + + files in /usr/share/shorewall + that define the actions included as a standard part of Shorewall. + + + +
+ +
+ /etc/shorewall/params + + You may use the file /etc/shorewall/params file + to set shell variables that you can then use in some of the other + configuration files. + + It is suggested that variable names begin with an upper case letter + to distinguish them from variables used internally within the Shorewall + programs + + + shell variables + + NET_IF=eth0 NET_BCAST=130.252.100.255 +NET_OPTIONS=blacklist,norfc1918 + + + + /etc/shorewall/interfaces record + + net $NET_IF $NET_BCAST $NET_OPTIONS + + + The result will be the same as if the record had been written + + net eth0 130.252.100.255 blacklist,norfc1918 + + Variables may be used anywhere in the other configuration files. +
+ +
+ /etc/shorewall/zones + + This file is used to define the network zones. There is one entry in + /etc/shorewall/zones for each zone; Columns in an + entry are: + + + + ZONE + + + short name for the zone. The name should be 5 characters or + less in length (4 characters or less if you are running Shorewall + 1.4.4 or later) and consist of lower-case letters or numbers. Short + names must begin with a letter and the name assigned to the firewall + is reserved for use by Shorewall itself. Note that the output + produced by iptables is much easier to read if you select short + names that are three characters or less in length. The name + all may not be used as a zone name nor may the zone + name assigned to the firewall itself via the FW variable in . + + + + + DISPLAY + + + The name of the zone as displayed during Shorewall startup. + + + + + COMMENTS + + + Any comments that you want to make about the zone. Shorewall + ignores these comments. + + + + + #ZONE DISPLAY COMMENTS +net Net Internet +loc Local Local networks +dmz DMZ Demilitarized zone + + You may add, delete and modify entries in the /etc/shorewall/zones + file as desired so long as you have at least one zone defined. + + + If you rename or delete a zone, you should perform shorewall + stop; shorewall start to install the change rather + than shorewall restart. + + + + The order of entries in the /etc/shorewall/zones + file is significant in some cases. + +
+ +
+ /etc/shorewall/interfaces + + This file is used to tell the firewall which of your firewall's + network interfaces are connected to which zone. There will be one entry in + /etc/shorewall/interfaces for each of your interfaces. Columns in an entry + are: + + + + ZONE + + + A zone defined in the file or + -. If you specify -, you must use the + file to define the zones accessed via this + interface. + + + + + INTERFACE + + + the name of the interface (examples: eth0, ppp0, ipsec+). Each + interface can be listed on only one record in this file. + + + You do not need to include the loopback interface (lo) in + this file. + + + + + + BROADCAST + + + the broadcast address(es) for the sub-network(s) attached to + the interface. This should be left empty for P-T-P interfaces (ppp*, + ippp*); if you need to specify options for such an interface, enter + - in this column. If you supply the special value + detect in this column, the firewall will + automatically determine the broadcast address. In order to use + detect: + + + + the interface must be up before you start your firewall + + + + the interface must only be attached to a single + sub-network (i.e., there must have a single broadcast address). + + + + + + + OPTIONS + + + a comma-separated list of options. Possible options include: + + + + arp_filter + + + (Added in version 1.4.7) - This option causes + /proc/sys/net/ipv4/conf/<interface>/arp_filter + to be set with the result that this interface will only answer + ARP who-has requests from hosts that are routed + out of that interface. Setting this option facilitates testing + of your firewall where multiple firewall interfaces are + connected to the same HUB/Switch (all interface connected to + the single HUB/Switch should have this option specified). Note + that using such a configuration in a production environment is + strongly recommended against. + + + + + newnotsyn + + + (Added in version 1.4.6) - This option overrides NEWNOTSYN=No for packets arriving on + this interface. In other words, packets coming in on this + interface are processed as if NEWNOTSYN=Yes had been specified + in . + + + + + routeback + + + (Added in version 1.4.2) - This option causes Shorewall + to set up handling for routing packets that arrive on this + interface back out the same interface. If this option is + specified, the ZONE column may not contain -. + + + + + tcpflags + + + (added in version 1.3.11) - This option causes Shorewall + to make sanity checks on the header flags in TCP packets + arriving on this interface. Checks include Null flags, + SYN+FIN, SYN+RST and FIN+URG+PSH; these flag combinations are + typically used for silent port scans. Packets + failing these checks are logged according to the + TCP_FLAGS_LOG_LEVEL option in and are + disposed of according to the TCP_FLAGS_DISPOSITION option. + + + + + blacklist + + + This option causes incoming packets on this interface to + be checked against the blacklist. + + + + + dhcp + + + The interface is assigned an IP address via DHCP or is + used by a DHCP server running on the firewall. The firewall + will be configured to allow DHCP traffic to and from the + interface even when the firewall is stopped. You may also wish + to use this option if you have a static IP but you are on a + LAN segment that has a lot of Laptops that use DHCP and you + select the norfc1918 option + (see below). + + + + + norfc1918 + + + Packets arriving on this interface and that have a + source or destination address that is reserved in RFC 1918 + will be dropped after being optionally logged. + + Prior to Shorewall 2.0.1, addresses blocked by the + standard rfc1918 file include + those addresses reserved by RFC1918 plus other ranges reserved + by the IANA or by other RFCs. Beginning with Shorewall 2.0.1, + these additional addresses are covered by the nobogons option below. + + Beware that as IPv4 addresses become in increasingly + short supply, ISPs are beginning to use RFC 1918 addresses + within their own infrastructure. Also, many cable and DSL + modems have an RFC 1918 address that can be + used through a web browser for management and monitoring + functions. If you want to specify norfc1918 + on your external interface but need to allow access to certain + addresses from the above list, see FAQ + 14. + + + + + nobogons (Added in Shorewall 2.0.1) + + + Packets arriving on this interface that have a source + address reserved by the IANA or by other RFCs (other than + 1918) are dropped after being optionally logged. See the + /etc/shorewall/bogons file documentation below. + + + + + routefilter + + + Invoke the Kernel's route filtering (anti-spoofing) + facility on this interface. The kernel will reject any packets + incoming on this interface that have a source address that + would be routed outbound through another interface on the + firewall. + + + If you specify this option for an interface then the + interface must be up prior to starting the firewall. + + + + + + proxyarp + + + (Added in version 1.3.5) - This option causes Shorewall + to set /proc/sys/net/ipv4/conf/<interface>/proxy_arp + and is used when implementing Proxy ARP Sub-netting as + described at http://www.tldp.org/HOWTO/mini/Proxy-ARP-Subnet/. + Do not set this option if you + are implementing Proxy ARP through entries in . + + + + + maclist + + + (Added in version 1.3.10) - If this option is specified, + all connection requests from this interface are subject to + MAC Verification. May + only be specified for ethernet interfaces. + + + + + + + detectnets + + + (Added in version 1.4.10) - If this option is specified, + the zone named in the ZONE column will contain only the hosts + routed through the interface named in the INTERFACE column. + Do not set this option on your external + (Internet) interface! The interface must be in the + UP state when Shorewall is [re]started. + + + + + nosmurfs + + + (Added in version 2.0.0) - If this option is specified, + incoming connection requests will be checked to ensure that + they do not have a broadcast or multicast address as their + source. Any such packets will be dropped after being + optionally logged according to the setting of SMURF_LOG_LEVEL + in /etc/shorewall/shorewall.conf. + + + + + My recommendations concerning options: + + + + External Interface -- tcpflags,blacklist,norfc1918,routefilter,nosmurfs + + + + Wireless Interface -- maclist,routefilter,tcpflags,detectnets,nosmurfs + + + + Use dhcp and proxyarp when needed. + + + + + + + + You have a conventional firewall setup in which eth0 connects to + a Cable or DSL modem and eth1 connects to your local network and eth0 + gets its IP address via DHCP. You want to check all packets entering + from the internet against the <link linkend="Blacklist">black list</link>. + Your /etc/shorewall/interfaces file would be as follows: + + #ZONE INTERFACE BROADCAST OPTIONS +net eth0 detect dhcp,norfc1918,blacklist + + + + You have a standalone dialup GNU/Linux System. Your + /etc/shorewall/interfaces file would be: + + #ZONE INTERFACE BROADCAST OPTIONS +net ppp0 + + + + You have local interface eth1 with two IP addresses - + 192.168.1.1/24 and 192.168.12.1/24 + + #ZONE INTERFACE BROADCAST OPTIONS +loc eth1 192.168.1.255,192.168.12.255 + +
+ +
+ /etc/shorewall/hosts Configuration + + For most applications, specifying zones entirely in terms of network + interfaces is sufficient. There may be times though where you need to + define a zone to be a more general collection of hosts. This is the + purpose of the /etc/shorewall/hosts file. + + + The only time that you need entries in /etc/shorewall/hosts + is where you have more than one zone + connecting through a single interface. + + IF YOU DON'T HAVE THIS SITUATION THEN + DON'T TOUCH THIS FILE!! + + + Columns in this file are: + + + + ZONE + + + A zone defined in the file. + + + + + HOST(S) + + + The name of an interface defined in the /etc/shorewall/interfaces file followed + by a colon (":") and a comma-separated list whose elements + are either: + + + + The IP address of a host + + + + A subnetwork in the form <subnet-address>/<mask + width> + + + + A physical port name (Shorewall version 2.0.1 and later); + only allowed when the interface names a bridge created by the + brctl addbr command. This port must not be + defined in /etc/shorewall/interfaces and + may optionally followed by a colon (":") and a host or + network IP. See the bridging + documentation for details. + + + + + If you are running a version of Shorewall earlier than + 1.4.6, only a single host/subnet address may be specified in an + entry in /etc/shorewall/hosts. + + + + + + OPTIONS + + + A comma-separated list of option + + + + routeback + + + (Added in version 1.4.2) - This option causes Shorewall + to set up handling for routing packets sent by this host group + back back to the same group. + + + + + maclist + + + Added in version 1.3.10. If specified, connection + requests from the hosts specified in this entry are subject to + MAC Verification. + This option is only valid for ethernet interfaces. + + + + + tcpflags (Added in Shorewall 2.0.1) + + + (added in version 1.3.11) - This option causes Shorewall + to make sanity checks on the header flags in TCP packets + arriving from these hosts. Checks include Null flags, SYN+FIN, + SYN+RST and FIN+URG+PSH; these flag combinations are typically + used for silent port scans. Packets failing + these checks are logged according to the TCP_FLAGS_LOG_LEVEL + option in and are disposed of + according to the TCP_FLAGS_DISPOSITION option. + + + + + blacklist (Added in Shorewall 2.0.1 -- only makes sense + for bridge ports) + + + This option causes incoming packets on this port to be + checked against the blacklist. + + + + + norfc1918 (Added in Shorewall 2.0.1 -- only makes sense + for bridge ports) + + + Packets arriving on this port and that have a source + address that is reserved in RFC 1918 will be dropped after + being optionally logged as specified in the settion of + RFC1918_LOG_LEVEL in shorewall.conf. + + + + + nobogons (Added in Shorewall 2.0.1 -- only makes sense for + bridge ports) + + + Packets arriving on this port that have a source address + reserved by the IANA or by other RFCs (other than 1918) are + dropped after being optionally logged. See the + /etc/shorewall/bogons file documentation below. + + + + + nosmurfs (Added in Shorewall 2.0.1 -- only makes sense for + bridge ports) + + + If this option is specified, incoming connection + requests will be checked to ensure that they do not have a + broadcast or multicast address as their source. Any such + packets will be dropped after being optionally logged + according to the setting of SMURF_LOG_LEVEL in /etc/shorewall/shorewall.conf. + + + + + + + + If you don't define any hosts for a zone, the hosts in the zone + default to i0:0.0.0.0/0 , i1:0.0.0.0/0, ... where i0, i1, ... are the + interfaces to the zone. + + + You probably DON'T want to specify any hosts for your internet + zone since the hosts that you specify will be the only ones that you + will be able to access without adding additional rules. + + + + Your local interface is eth1 and you have two groups of local + hosts that you want to make into separate zones: + + 192.168.1.0/25 192.168.1.128/25 + + Your /etc/shorewall/interfaces file might look like: + + #ZONE INTERFACE BROADCAST OPTIONS +net eth0 detect dhcp,norfc1918 +- eth1 192.168.1.127,192.168.1.255 + + The - in the ZONE column for eth1 tells Shorewall + that eth1 interfaces to multiple zones. + + #ZONE HOST(S) OPTIONS +loc1 eth1:192.168.1.0/25 +loc2 eth1:192.168.1.128/25 + + + + You have local interface eth1 with two IP addresses - + 192.168.1.1/24 and 192.168.12.1/24 + + Your /etc/shorewall/interfaces file might look like: + + #ZONE INTERFACE BROADCAST OPTIONS +net eth0 detect dhcp,norfc1918 +- eth1 192.168.1.255,192.168.12.255 + + Your /etc/shorewall/hosts file might look like: + + #ZONE HOST(S) OPTIONS +loc eth1:192.168.1.0/24 +loc eth1:192.168.12.0/24 + + If you are running Shorewall 1.4.6 or later, your hosts file may + look like: + + #ZONE HOST(S) OPTIONS +loc eth1:192.168.1.0/24,192.168.12.0/24 + + +
+ Nested and Overlapping Zones + + The /etc/shorewall/interfaces and + /etc/shorewall/hosts file allow you to define + nested or overlapping zones. Such overlapping/nested zones are allowed + and Shorewall processes zones in the order that they appear in the + /etc/shorewall/zones file. So if you have nested + zones, you want the sub-zone to appear before the super-zone and in the + case of overlapping zones, the rules that will apply to hosts that + belong to both zones is determined by which zone appears first in + /etc/shorewall/zones. + + Hosts that belong to more than one zone may be managed by the + rules of all of those zones. This is done through use of the special + CONTINUE policy described below. +
+
+ +
+ /etc/shorewall/policy Configuration + + This file is used to describe the firewall policy regarding + establishment of connections. Connection establishment is described in + terms of clients who initiate connections and + servers who receive those connection requests. + Policies defined in /etc/shorewall/policy describe + which zones are allowed to establish connections with other zones. + + Policies established in /etc/shorewall/policy can + be viewed as default policies. If no rule in /etc/shorewall/rules applies + to a particular connection request then the policy from + /etc/shorewall/policy is applied. + + Five policies are defined: + + + + ACCEPT + + + The connection is allowed. + + + + + DROP + + + The connection request is ignored. + + + + + REJECT + + + The connection request is rejected with an RST (TCP) or an + ICMP destination-unreachable packet being returned to the client. + + + + + CONTINUE + + + The connection is neither ACCEPTed, DROPped nor REJECTed. + CONTINUE may be used when one or both of the zones named in the + entry are sub-zones of or intersect with another zone. For more + information, see below. + + + + + NONE + + + (Added in version 1.4.1) - Shorewall should not set up any + infrastructure for handling traffic from the SOURCE zone to the DEST + zone. When this policy is specified, the LOG + LEVEL and BURST:LIMIT + columns must be left blank. + + + + + For each policy specified in /etc/shorewall/policy, you can indicate + that you want a message sent to your system log each time that the policy + is applied. + + Entries in /etc/shorewall/policy have four columns as follows: + + + + SOURCE + + + The name of a client zone (a zone defined in the file , the name of the + firewall zone or all). + + + + + DEST + + + The name of a destination zone (a zone defined in the file , the name of the + firewall zone or all). Shorewall automatically + allows all traffic from the firewall to itself so the name of the firewall zone cannot appear in + both the SOURCE and DEST columns. + + + + + POLICY + + + The default policy for connection requests from the SOURCE + zone to the DESTINATION zone. + + + + + LOG LEVEL + + + Optional. If left empty, no log message is generated when the + policy is applied. Otherwise, this column should contain an integer + or name indicating a syslog + level. + + + + + LIMIT:BURST - optional + + + If left empty, TCP connection requests from the SOURCE zone to the DEST + zone will not be rate-limited. Otherwise, this column specifies the + maximum rate at which TCP connection requests will be accepted + followed by a colon (:) followed by the maximum burst + size that will be tolerated. Example: 10/sec:40 + specifies that the maximum rate of TCP connection requests allowed + will be 10 per second and a burst of 40 connections will be + tolerated. Connection requests in excess of these limits will be + dropped. See the rules file documentation + for an explaination of how rate limiting works. + + + + + In the SOURCE and DEST columns, you can enter all to + indicate all zones. + + The default /etc/shorewall/policy file is as + follows. + + #SOURCE DEST POLICY LOG LEVEL LIMIT:BURST +loc net ACCEPT +net all DROP info +all all REJECT info + + This table may be interpreted as follows: + + + + All connection requests from the local network to hosts on the + internet are accepted. + + + + All connection requests originating from the internet are + ignored and logged at level KERNEL.INFO. + + + + All other connection requests are rejected and logged. + + + + + The firewall script processes the /etc/shorewall/policy + file from top to bottom and uses the first + applicable policy that it finds. For example, in the + following policy file, the policy for (loc, loc) connections would be + ACCEPT as specified in the first entry even though the third entry in + the file specifies REJECT. + + #SOURCE DEST POLICY LOG LEVEL LIMIT:BURST +loc all ACCEPT +net all DROP info +loc loc REJECT info + + +
+ Intra-Zone Traffic + + Shorewall allows a zone to be associated with more than one + interface or with multiple networks that interface through a single + interface. Beginning with Shorewall 1.4.1, Shorewall will ACCEPT all + traffic from a zone to itself provided that there is no explicit policy + governing traffic from that zone to itself (an explicit policy does not + specify all in either the SOURCE or DEST column) and that + there are no rules concerning connections from that zone to itself. If + there is an explicit policy or if there are one or more rules, then + traffic within the zone is handled just like traffic between zones is. + + Any time that you have multiple interfaces associated with a + single zone, you should ask yourself if you really want traffic routed + between those interfaces. Cases where you might not want that behavior + are: + + + + Multiple net interfaces to different ISPs. You + don't want to route traffic from one ISP to the other through + your firewall. + + + + Multiple VPN clients. You don't necessarily want them to + all be able to communicate between themselves using your + gateway/router. + + + + Beginning with Shorewall 2.0.0, you can control the traffic from + the firewall to itself. As with any zone, fw->fw traffic is enabled + by default. It is not necessary to define the loopback interface (lo) in + /etc/shorewall/interfaces in order to + define fw->fw rules or a fw->fw policy. + + + So long as there are no intra-zone rules for a zone, all + intra-zone traffic for that zone is accepted. As soon as you add a + single rule from the zone to itself, then ALL traffic from that zone + to itself is controlled by the rules and the first policy in + /etc/shorewall/policy that matches the zone to + itself. + +
+ +
+ The CONTINUE policy + + Where zones are nested or overlapping, + the CONTINUE policy allows hosts that are within multiple zones to be + managed under the rules of all of these zones. Let's look at an + example: + + /etc/shorewall/zones: + + #ZONE DISPLAY COMMENTS +sam Sam Sam's system at home +net Internet The Internet +loc Local Local Network + + /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +- eth0 detect dhcp,norfc1918 +loc eth1 detect + + /etc/shorewall/hosts: + + #ZONE HOST(S) OPTIONS +net eth0:0.0.0.0/0 +sam eth0:206.191.149.197 + + + Sam's home system is a member of both the sam zone and the net + zone and as described above , that means + that sam must be listed before + net in /etc/shorewall/zones. + + + /etc/shorewall/policy: + + #SOURCE DEST POLICY LOG LEVEL +loc net ACCEPT +sam all CONTINUE +net all DROP info +all all REJECT info + + The second entry above says that when Sam is the client, + connection requests should first be process under rules where the source + zone is sam and if there is no match + then the connection request should be treated under rules where the + source zone is net. It is important + that this policy be listed BEFORE the next policy (net + to all). + + Partial /etc/shorewall/rules: + + #ACTION SOURCE DEST PROTO DEST PORT(S) +... +DNAT sam loc:192.168.1.3 tcp ssh +DNAT net loc:192.168.1.5 tcp www +... + + Given these two rules, Sam can connect to the firewall's + internet interface with ssh and the connection request will be forwarded + to 192.168.1.3. Like all hosts in the net + zone, Sam can connect to the firewall's internet interface on TCP + port 80 and the connection request will be forwarded to 192.168.1.5. The + order of the rules is not significant. + + Sometimes it is necessary to suppress port forwarding + for a sub-zone. For example, suppose that all hosts can SSH to the + firewall and be forwarded to 192.168.1.5 EXCEPT Sam. When Sam connects + to the firewall's external IP, he should be connected to the + firewall itself. Because of the way that Netfilter is constructed, this + requires two rules as follows: + + #ACTION SOURCE DEST PROTO DEST PORT(S) +... +DNAT sam fw tcp ssh +DNAT net loc:192.168.1.3 tcp ssh +... + + The first rule allows Sam SSH access to the firewall. The second + rule says that any clients from the net zone with the exception of those + in the sam zone should have their connection port + forwarded to 192.168.1.3. If you need to exclude more than one zone in + this way, you can list the zones separated by commas (e.g., + net!sam,joe,fred). This technique also may be used when the ACTION is + REDIRECT. +
+
+ +
+ /etc/shorewall/rules + + The /etc/shorewall/rules file defines + exceptions to the policies established in the /etc/shorewall/policy + file. There is one entry in /etc/shorewall/rules for each of these rules. + Entries in this file only govern the establishment of new connections — + packets that are part of an existing connection or that establish a + connection that is related to an existing connection are automatically + accepted. + + Rules for each pair of zones (source zone, destination zone) are + evaluated in the order that they appear in the file — the first match + determines the disposition of the connection request with a couple of + caveats: + + + + LOG rules cause the connection request to be logged then + processing continues with the next rule in the file. + + + + QUEUE rules cause the connection request to be passed to + user-space -- the user-space application can later insert them back + into the stream for further processing by following rules. + + + + CONTINUE rules may cause the connection request to be + reprocessed using a different (source zone, destination zone) pair. + + + + Entries in the file have the following columns: + + + + ACTION + + + + + ACCEPT, DROP, REJECT, CONTINUE + + + These have the same meaning here as in the policy file + above. + + + + + ACCEPT+ + + + Added in Shorewall 2.0.2 Beta 2. Works like ACCEPT but + also exempts the connection from matching DNAT and REDIRECT + rules later in the file. + + + + + NONAT + + + Added in Shorewall 2.0.2 Beta 2. Exempts matching + connections from DNAT and REDIRECT rules later in the file. + + + + + DNAT + + + Causes the connection request to be forwarded to the + system specified in the DEST column (port forwarding). + DNAT stands for Destination + Network Address + Translation + + + + + DNAT- + + + The above ACTION (DNAT) generates two iptables rules: + + + + a header-rewriting rule in the Netfilter + nat table + + + + an ACCEPT rule in the Netfilter filter + table. + + + + DNAT- works like DNAT but only generates the + header-rewriting rule. + + + + + REDIRECT + + + Causes the connection request to be redirected to a port + on the local (firewall) system. + + + + + REDIRECT- + + + The above ACTION (REDIRECT) generates two iptables + rules: + + + + a header-rewriting rule in the Netfilter + nat table + + + + an ACCEPT rule in the Netfilter filter + table. + + + + REDIRECT- works like REDIRECT but only generates the + header-rewriting rule. + + + + + LOG + + + Log the packet -- requires a syslog level (see below). + + + + + QUEUE + + + Forward the packet to a user-space application. This + facility is provided to allow interfacing to ftwall for Kazaa filtering. + + + When the protocol specified in the PROTO column is TCP + (tcp, TCP or 6), + Shorewall will only pass connection requests (SYN packets) + to user space. This is for compatibility with ftwall. + + + + + + <defined + action> + + + (Shorewall 1.4.9 and later) - An action defined in the + /etc/shorewall/actions + file. + + + + + The ACTION may optionally be followed by : and + a syslog level (example: + REJECT:info or ACCEPT:debug). This causes the packet to be logged at + the specified level prior to being processed according to the + specified ACTION. Note: if the ACTION is LOG then you MUST specify a + syslog level. Beginning with Shorewall version 2.0.2 Beta 1, a + log tag may be specified. A log tag is a + string of alphanumeric characters and is specified by following the + log level with ":" and the log tag. Example:ACCEPT:info:ftp net dmz tcp 21 +The log tag is appended to the log prefix generated by the + LOGPREFIX variable in /etc/shorewall/conf. + If "ACCEPT:info" generates the log prefix + "Shorewall:net2dmz:ACCEPT:" then "ACCEPT:info:ftp" + will generate "Shorewall:net2dmz:ACCEPT:ftp " (note the + trailing blank). The maximum length of a log prefix supported by + iptables is 29 characters; if a larger prefix is generated, + Shorewall will issue a warning message and will truncate the prefix + to 29 characters. + + The use of DNAT or REDIRECT requires that you have NAT enabled + in your kernel configuration. + + + + + SOURCE + + + Describes the source hosts to which the rule applies.. The + contents of this field must begin with the name of a zone defined in + /etc/shorewall/zones, $FW or all. If the ACTION is + DNAT or REDIRECT, sub-zones may be excluded from the rule by + following the initial zone name with ! and a + comma-separated list of those sub-zones to be excluded. There is an + example above. + + If the source is not all then the source may be + further restricted by adding a colon (:) followed by + a comma-separated list of qualifiers. Qualifiers are may include: + + + + interface name + + + refers to any connection requests arriving on the + specified interface (example loc:eth4). Beginning with + Shorwall 1.3.9, the interface name may optionally be followed + by a colon (:) and an IP address or subnet + (examples: loc:eth4:192.168.4.22, net:eth0:192.0.2.0/24). + + + + + IP address + + + refers to a connection request from the host with the + specified address (example net:155.186.235.151). If the ACTION + is DNAT, this must not be a DNS name. + + + + + MAC Address + + + in Shorewall + format. + + + + + subnet + + + refers to a connection request from any host in the + specified subnet (example net:155.186.235.0/24). + + + + + + + + DEST + + + Describes the destination host(s) to which the rule applies. + May take most of the forms described above for SOURCE plus the + following two additional forms: + + + + An IP address followed by a colon and the port number that the server is listening on + (service names from /etc/services are not allowed - example + loc:192.168.1.3:80). + + + + A single port number (again, service names are not + allowed) -- this form is only allowed if the ACTION is REDIRECT + and refers to a server running on the firewall itself and + listening on the specified port. + + + + Restrictions: + + + + MAC addresses may not be specified. + + + + In DNAT rules, only IP addresses may be given -- DNS names + are not permitted. + + + + You may not specify both an IP address and an interface + name in the DEST column. + + + + Unlike in the SOURCE column, a range of IP addresses may be + specified in the DEST column as <first address>-<last + address>. When the ACTION is DNAT or DNAT-, + connections will be assigned to the addresses in the range in a + round-robin fashion (load-balancing). This + feature is available with DNAT rules only with Shorewall 1.4.6 and + later versions; it is available with DNAT- rules in all versions + that support DNAT-. + + + + + PROTO + + + Protocol. Must be a protocol name from /etc/protocols, a + number or all. Specifies the protocol of the + connection request. + + + + + DEST PORT(S) + + + Port or port range (<low port>:<high port>) + being connected to. May only be specified if the protocol is tcp, + udp or icmp. For icmp, this column's contents are interpreted as + an icmp type. If you don't want to specify DEST PORT(S) but need + to include information in one of the columns to the right, enter + - in this column. You may give a list of ports and/or + port ranges separated by commas. Port numbers may be either integers + or service names from /etc/services. + + + + + SOURCE PORTS(S) + + + May be used to restrict the rule to a particular client port + or port range (a port range is specified as <low port + number>:<high port number>). If you don't want to + restrict client ports but want to specify something in the next + column, enter - in this column. If you wish to + specify a list of port number or ranges, separate the list elements + with commas (with no embedded white space). Port numbers may be + either integers or service names from /etc/services. + + + + + ORIGINAL DEST + + + This column may only be non-empty if the ACTION is DNAT or + REDIRECT. + + If DNAT or REDIRECT is the ACTION and the ORIGINAL DEST column + is left empty, any connection request arriving at the firewall from + the SOURCE that matches the rule will be forwarded or redirected. + This works fine for connection requests arriving from the internet + where the firewall has only a single external IP address. When the + firewall has multiple external IP addresses or when the SOURCE is + other than the internet, there will usually be a desire for the rule + to only apply to those connection requests directed to particular IP + addresses (see Example 2 below for another usage). Those IP + addresses are specified in the ORIGINAL DEST column as a + comma-separated list. + + The IP address(es) may be optionally followed by + : and a second IP address. This latter address, if + present, is used as the source address for packets forwarded to the + server (This is called Source NAT or SNAT. + + If this list begins with ! then the rule will + only apply if the original destination address matches none of the + addresses listed. + + + When using SNAT, it is a good idea to qualify the source + with an IP address or subnet. Otherwise, it is likely that SNAT + will occur on connections other than those described in the rule. + The reason for this is that SNAT occurs in the Netfilter + POSTROUTING hook where it is not possible to restrict the scope of + a rule by incoming interface. + + + + + #ACTION SOURCE DEST PROTO DEST SOURCE ORIGINAL +# PORT(S) PORT(S) DEST +DNAT loc:192.168.1.0/24 loc:192.168.1.3 tcp www - 206.124.146.179:192.168.1.3 + + + + If SNAT is not used (no : and second IP + address), the original source address is used. If you want any + destination address to match the rule but want to specify SNAT, + simply use a colon followed by the SNAT address. + + + + + RATE LIMIT + + + Beginning with Shorewall version 1.4.7, you may rate-limit + ACCEPT, DNAT[-], REDIRECT[-] or LOG rules with an entry in this + column. Entries have the form + + <rate>/<interval>[:<burst>] + + where <rate> is the number of connections per + <interval> (sec or min) and + <burst> is the largest burst permitted. If no burst value is + given, a value of 5 is assumed. + + There may be no whitespace embedded in the specification. + + + Let's take + + ACCEPT<2/sec:4> net dmz tcp 80 + + The first time this rule is reached, the packet will be + accepted; in fact, since the burst is 4, the first four packets + will be accepted. After this, it will be 500ms (1 second divided + by the rate of 2) before a packet will be accepted from this rule, + regardless of how many packets reach it. Also, every 500ms which + passes without matching a packet, one of the bursts will be + regained; if no packets hit the rule for 2 second, the burst will + be fully recharged; back where we started. + + + + When rate limiting is specified on a rule with + all in the SOURCE or DEST fields below, the limit + will apply to each pair of zones individually rather than as a + single limit for all pairs of zones covered by the rule. + + + If you want to specify any following columns but no rate + limit, place - in this column. + + + + + USER/GROUP + + + Beginning with Shorewall release 1.4.7, output rules from the + firewall itself may be restricted to a particular set of users + and/or user groups. See the User Set + Documentation for details. + + + + + + You wish to forward all ssh connection requests from the internet + to local system 192.168.1.3. You wish to limit the number of connections + to 4/minute with a burst of 8 (Shorewall 1.4.7 and later only): + + #ACTION SOURCE DEST PROTO DEST PORT(S) +DNAT<4/min:8> net loc:192.168.1.3 tcp ssh + + + + You want to redirect all local www connection requests EXCEPT + those to your own http server (206.124.146.177) to a Squid transparent + proxy running on the firewall and listening on port 3128. Squid will of + course require access to remote web servers. This example shows yet + another use for the ORIGINAL DEST column; here, connection requests that + were NOT (notice the <quote>!</quote>) originally destined to + 206.124.146.177 are redirected to local port 3128. + + #ACTION SOURCE DEST PROTO DEST PORT(S) SOURCE ORIGINAL +# PORT(S) DEST +REDIRECT loc 3128 tcp www - !206.124.146.177 +ACCEPT fw net tcp www + + + + You want to run a web server at 155.186.235.222 in your DMZ and + have it accessible remotely and locally. the DMZ is managed by Proxy ARP + or by classical sub-netting. + + #ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT net dmz:155.186.235.222 tcp www +ACCEPT loc dmz:155.186.235.222 tcp www + + + + You want to run wu-ftpd on 192.168.2.2 in your masqueraded DMZ. + Your internet interface address is 155.186.235.151 and you want the FTP + server to be accessible from the internet in addition to the local + 192.168.1.0/24 and dmz 192.168.2.0/24 subnetworks. + + since the server is in the 192.168.2.0/24 subnetwork, + we can assume that access to the server from that subnet will not + involve the firewall (but see FAQ 2)unless + you have more than one external IP address, you can leave the ORIGINAL + DEST column blank in the first rule. You cannot leave it blank in the + second rule though because then all ftp connections originating in the + local subnet 192.168.1.0/24 would be sent to 192.168.2.2 regardless of + the site that the user was trying to connect to. That is clearly not + what you want. + + #ACTION SOURCE DEST PROTO DEST PORT(S) SOURCE ORIGINAL +# PORT(S) DEST +DNAT net dmz:192.168.2.2 tcp ftp +DNAT loc:192.168.1.0/24 dmz:192.168.2.2 tcp ftp - 155.186.235.151 + + If you are running wu-ftpd, you should restrict the range of + passive in your /etc/ftpaccess file. I only need a few simultaneous FTP + sessions so I use port range 65500-65535. In /etc/ftpaccess, this entry + is appropriate: + + passive ports 0.0.0.0/0 65500 65534 + + If you are running pure-ftpd, you would include -p + 65500:65534 on the pure-ftpd runline. + + The important point here is to ensure that the port range used for + FTP passive connections is unique and will not overlap with any usage on + the firewall system. + + + + You wish to allow unlimited DMZ access to the host with MAC + address 02:00:08:E3:FA:55. + + #ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT loc:~02-00-08-E3-FA-55 dmz all + + + + You wish to allow access to the SMTP server in your DMZ from all + zones. + + #ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT all dmz tcp 25 + + When all is used as a source or + destination, intra-zone traffic is not affected. In this example, if + there were two DMZ interfaces then the above rule would NOT enable SMTP + traffic between hosts on these interfaces. + + + + Your firewall's external interface has several IP addresses + but you only want to accept SSH connections on address 206.124.146.176. + + #ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT net fw:206.124.146.176 tcp 22 + + + + (For advanced users running Shorewall version 1.3.13 or later). + From the internet, you with to forward tcp port 25 directed to + 192.0.2.178 and 192.0.2.179 to host 192.0.2.177 in your DMZ. You also + want to allow access from the internet directly to tcp port 25 on + 192.0.2.177. + + #ACTION SOURCE DEST PROTO DEST PORT(S) SOURCE ORIGINAL +# PORT(S) DEST +DNAT- net dmz:192.0.2.177 tcp 25 - 192.0.2.178 +DNAT- net dmz:192.0.2.177 tcp 25 - 192.0.2.179 +ACCEPT net dmz:192.0.2.177 tcp 25 + + Using DNAT- rather than DNAT avoids + two extra copies of the third rule from being generated. + + + + (Shorewall version 1.4.6 or later). You have 9 http servers + behind a Shorewall firewall and you want connection requests to be + distributed among your servers. The servers are + 192.168.1.101-192.168.1.109. + + #ACTION SOURCE DEST PROTO DEST PORT(S) +DNAT net loc:192.168.1.101-192.168.1.109 tcp 80 + + + + (Shorewall 2.0.2 Beta 2 and Later). You want to redirect all + local www connection requests EXCEPT those from 192.168.1.4 and + 192.168.1.199 to a Squid transparent proxy running on the firewall and + listening on port 3128. + + #ACTION SOURCE DEST PROTO DEST PORT(S) SOURCE ORIGINAL +# PORT(S) DEST +NONAT loc:192.168.1.4,192.168.1.199 \ + net tcp www +REDIRECT loc 3128 tcp www - +ACCEPT fw net tcp www + + The reason that NONAT is used in the above example rather than + ACCEPT+ is that the example is assuming the usual ACCEPT loc->net + policy. Since traffic from the local zone to the internet zone is + accepted anyway, adding an additional ACCEPT rule is unnecessary and all + that is required is to avoid the REDIRECT rule for HTTP connection + requests from the two listed IP addresses. + + + Look here for information on other services. +
+ +
+ /etc/shorewall/masq + + The /etc/shorewall/masq file is used to define classical IP + Masquerading and Source Network Address Translation (SNAT). There is one + entry in the file for each subnet that you want to masquerade. In order to + make use of this feature, you must have NAT enabled. + + Columns are: + + + + INTERFACE + + + The interface that will masquerade the subnet; this is + normally your internet interface. This interface name can be + optionally qualified by adding : and a subnet or host + IP. When this qualification is added, only packets addressed to that + host or subnet will be masqueraded. Beginning with Shorewall version + 1.4.10, the interface name can be qualified with ":" + followed by a comma separated list of hosts and/or subnets. If this + list begins with ! (e.g., eth0:!192.0.2.8/29,192.0.2.32/29) + then only packets addressed to destinations not + listed will be masqueraded; otherwise (e.g., eth0:192.0.2.8/29,192.0.2.32/29), + traffic will be masqueraded if it does + match one of the listed addresses. + + Beginning with Shorewall version 1.3.14, if you have set + ADD_SNAT_ALIASES=Yes in , you can cause + Shorewall to create an alias label of the form + interfacename:digit (e.g., eth0:0) by placing + that label in this column. See example 5 below. Alias labels created + in this way allow the alias to be visible to the ipconfig utility. + THAT IS THE ONLY THING THAT THIS LABEL IS GOOD + FOR AND IT MAY NOT APPEAR ANYWHERE ELSE IN YOUR SHOREWALL + CONFIGURATION. + + + + + SUBNET + + + The subnet that you want to have masqueraded through the + INTERFACE. This may be expressed as a single IP address, a subnet or + an interface name. In the latter instance, the interface must be + configured and started before Shorewall is started as Shorewall will + determine the subnet based on information obtained from the + ip utility. + + + When using Shorewall 1.3.13 or earlier, when an interface + name is specified, Shorewall will only masquerade traffic from the + first subnetwork on the named interface; if the interface + interfaces to more that one subnetwork, you will need to add + additional entries to this file for each of those other + subnetworks. Beginning with Shorewall 1.3.14, shorewall will + masquerade/SNAT traffic from any host that is routed through the + named interface. + + + The subnet may be optionally followed by ! and + a comma-separated list of addresses and/or subnets that are to be + excluded from masquerading. + + + + + ADDRESS + + + The source address to be used for outgoing packets. This + column is optional and if left blank, the current primary IP address + of the interface in the first column is used. If you have a static + IP on that interface, listing it here makes processing of output + packets a little less expensive for the firewall. If you specify an + address in this column, it must be an IP address configured on the + INTERFACE or you must have ADD_SNAT_ALIASES enabled in . Beginning with Shorewall version 1.4.6, you may + include a range of IP addresses in this column to indicate that + Netfilter should use the addresses in the range in round-robin + fashion. Beginning with Shorewall version 1.4.7, you may include a + list of ranges and/or addresses in this column; again, Netfilter + will use all listed ranges/addresses in rounde-robin fashion. + + + + + PROTO (Added in Shorewall version 2.0.2 Beta 1) + + + If specified, must be a protocol number of a protocol name + from /etc/protocols. Restricts the SNAT or Masquerade to that + protocol. + + + + + PORT(S) (Added in Shorewall version 2.0.2 Beta 1) + + + If the PROTO column specifies TCP (6) or UDP (17) then this + column may be used to restrict to SNAT or Masquerade to traffic with + a certain destination port or a set of destination ports. The column + may contain: + + + + A port number or a port name from /etc/services. + + + + A comma-separated list of port numbers and/or port names. + Your kernel must have Multiport match support. You can tell if + your kernel has this support by issuing a shorewall + check command and looking at the output under + Shorewall has detected the following iptables/netfilter + capabilities:. + + + + A range of port numbers of the form <low + port>:<high port> + + + + + + + + You have eth0 connected to a cable modem and eth1 connected to + your local subnetwork 192.168.9.0/24. Your /etc/shorewall/masq file + would look like: + + #INTERFACE SUBNET ADDRESS +eth0 192.168.9.0/24 + + + + You have a number of IPSEC tunnels through ipsec0 and you want to + masquerade traffic from your 192.168.9.0/24 subnet to the remote subnet + 10.1.0.0/16 only. + + #INTERFACE SUBNET ADDRESS +ipsec0:10.1.0.0/16 192.168.9.0/24 + + + + You have a DSL line connected on eth0 and a local network + (192.168.10.0/24) connected to eth1. You want all local->net + connections to use source address 206.124.146.176. + + #INTERFACE SUBNET ADDRESS +eth0 192.168.10.0/24 206.124.146.176 + + + + Same as example 3 except that you wish to exclude 192.168.10.44 + and 192.168.10.45 from the SNAT rule. + + #INTERFACE SUBNET ADDRESS +eth0 192.168.10.0/24!192.168.10.44,192.168.10.45 206.124.146.176 + + + + <emphasis role="bold">(Shorewall version >= 1.3.14):</emphasis> + You have a second IP address (206.124.146.177) assigned to you and wish + to use it for SNAT of the subnet 192.168.12.0/24. You want to give that + address the name eth0:0. You must have ADD_SNAT_ALIASES=Yes in <xref + linkend="Conf" />. + + #INTERFACE SUBNET ADDRESS +eth0:0 192.168.12.0/24 206.124.146.177 + + + + <emphasis role="bold">(Shorewall version >= 1.4.7):</emphasis> + You want to use both 206.124.146.177 and 206.124.146.179 for SNAT of the + subnet 192.168.12.0/24. Each address will be used on alternate outbound + connections. + + #INTERFACE SUBNET ADDRESS +eth0 192.168.12.0/24 206.124.146.177,206.124.146.179 + + + + <emphasis role="bold">(Shorewall version >= 2.0.2 Beta 1):</emphasis> + You want all outgoing SMTP traffic entering the firewall on eth1 to be + sent from eth0 with source IP address 206.124.146.177. You want all + other outgoing traffic from eth1 to be sent from eth0 with source IP + address 206.124.146.176. + + #INTERFACE SUBNET ADDRESS PROTO PORT(S) +eth0 eth1 206.124.146.177 tcp 25 +eth0 eth1 206.124.146.176 + + Note that the order of the entries in the above example is + important. + +
+ +
+ /etc/shorewall/proxyarp + + If you want to use proxy ARP on an entire sub-network, I suggest + that you look at the Proxy ARP Subnet + Mini HOWTO. If you decide to use the technique described in that + HOWTO, you can set the proxy_arp flag for an interface (/proc/sys/net/ipv4/conf/<interface>/proxy_arp) + by including the proxyarp option in the + interface's record in . When using Proxy + ARP sub-netting, you do NOT include any + entries in /etc/shorewall/proxyarp. + + The /etc/shorewall/proxyarp file is used to + define Proxy ARP. The file is typically + used for enabling Proxy ARP on a small set of systems since you need one + entry in this file for each system using proxy ARP. Columns are: + + + + ADDRESS + + + address of the system. + + + + + INTERFACE + + + the interface that connects to the system. If the interface is + obvious from the subnetting, you may enter - in this + column. + + + + + EXTERNAL + + + the external interface that you want to honor ARP requests for + the ADDRESS specified in the first column. + + + + + HAVEROUTE + + + If you already have a route through INTERFACE to ADDRESS, this + column should contain Yes or yes. If + you want Shorewall to add the route, the column should contain + No or no. + + + + + PERSISTENT + + + If you specify "No" or "no" in the HAVEROUTE + column, Shorewall will automatically add a route to the host in the + ADDRESS column through the interface in the INTERFACE column. If you + enter No or no in the PERSISTENT + column or if you leave the column empty, that route will be deleted + if you issue a shorewall stop or + shorewall clear command. If you place + Yes or yes in the PERSISTENT column, + then those commands will not cause the route to be deleted. + + + + + + After you have made a change to the /etc/shorewall/proxyarp + file, you may need to flush the ARP cache of all routers on + the LAN segment connected to the interface specified in the EXTERNAL + column of the change/added entry(s). If you are having problems + communicating between an individual host (A) on that segment and a + system whose entry has changed, you may need to flush the ARP cache on + host A as well. + + ISPs typically have ARP configured with long TTL (hours!) so if + your ISPs router has a stale cache entry (as seen using tcpdump + -nei <external interface> host <IP addr>), it + may take a long while to time out. I personally have had to contact my + ISP and ask them to delete a stale entry in order to restore a system to + working order after changing my proxy ARP settings. + + + + You have public IP addresses 155.182.235.0/28. You configure your + firewall as follows: + + eth0 - 155.186.235.1 (internet connection) eth1 - + 192.168.9.0/24 (masqueraded local systems) eth2 - 192.168.10.1 + (interface to your DMZ) + + In your DMZ, you want to install a Web/FTP server with public + address 155.186.235.4. On the Web server, you subnet just like the + firewall's eth0 and you configure 155.186.235.1 as the default + gateway. In your /etc/shorewall/proxyarp file, you + will have: + + #ADDRESS INTERFACE EXTERNAL HAVEROUTE +155.186.235.4 eth2 eth0 NO + + You may want to configure the servers in your DMZ with + a subnet that is smaller than the subnet of your internet interface. See + the Proxy + ARP Subnet Mini HOWTO for details. In this case you will want to + place Yes in the HAVEROUTE column. + + + + Do not use Proxy ARP and FreeS/Wan on the same system unless you + are prepared to suffer the consequences. If you start or restart + Shorewall with an IPSEC tunnel active, the proxied IP addresses are + mistakenly assigned to the IPSEC tunnel device (ipsecX) rather than to + the interface that you specify in the INTERFACE column of + /etc/shorewall/proxyarp. I haven't had the time + to debug this problem so I can't say if it is a bug in the Kernel or + in FreeS/Wan. + + You might be able to work around + this problem using the following (I haven't tried it): + + In /etc/shorewall/init, include: + + qt /etc/init.d/ipsec stop + + In /etc/shorewall/start, include: + + qt /etc/init.d/ipsec start + +
+ +
+ /etc/shorewall/nat + + The /etc/shorewall/nat file is used to define + one-to-one NAT. There is one entry in the file for each one-to-one NAT + relationship that you wish to define. In order to make use of this + feature, you must have NAT enabled. + + + If all you want to do is forward ports to servers behind your + firewall, you do NOT want to use one-to-one NAT. Port forwarding can be + accomplished with simple entries in the rules file. + Also, in most cases Proxy ARP provides a + superior solution to one-to-one NAT because the internal systems are + accessed using the same IP address internally and externally. + + + Columns in an entry are: + + + + EXTERNAL + + + External IP address + + + This should NOT be the primary IP address of the interface + named in the next column. + + + + + + INTERFACE + + + Interface that you want the EXTERNAL IP address to appear on. + Beginning with Shorewall version 1.3.14, if you have set + ADD_IP_ALIASES=Yes in , you can specify an + alias label of the form interfacename:digit + (e.g., eth0:0) and Shorewall will create the alias with that label. + Alias labels created in this way allow the alias to be visible to + the ipconfig utility. THAT IS THE ONLY THING + THAT THIS LABEL IS GOOD FOR AND IT MAY NOT APPEAR ANYWHERE ELSE IN + YOUR SHOREWALL CONFIGURATION. + + + + + INTERNAL + + + Internal IP address. + + + + + ALL INTERFACES + + + If Yes or yes, NAT will be + effective from all hosts. If No or no + (or if left empty) then NAT will be effective only through the + interface named in the INTERFACE column. + + + + + LOCAL + + + If Yes or yes, NAT will be effective from the firewall system. + Note that with Shorewall 2.0.1 and earlier versions, this column was + ignored if the ALL INTERFACES column did not contain "Yes" + or "yes". Beginning with Shorewall 2.0.2 Beta 1, this + column's contents are independent of the value in ALL + INTERFACES. + + + For this to work, you must be running kernel 2.4.19 or later + and iptables 1.2.6a or later and you must have enabled CONFIG_IP_NF_NAT_LOCAL in your kernel. + + + + + + Look here for additional information and an + example. +
+ +
+ /etc/shorewall/tunnels + + The /etc/shorewall/tunnels file allows you to define IPSec, GRE, + IPIP, OpenVPN, PPTP + and 6to4.tunnels with end-points on your firewall. To use ipsec, you must + install version 1.9, 1.91 or the current FreeS/WAN development + snapshot. + + + For kernels 2.4.4 and above, you will need to use version 1.91 or + a development snapshot as patching with version 1.9 results in kernel + compilation errors. + + + Instructions for setting up IPSEC tunnels + may be found here, instructions for IPIP and GRE + tunnels are here, instructions for OpenVPN + tunnels are here, instructions for PPTP + tunnels are here, instructions for 6to4 + tunnels are here, and instructions for integrating Shorewall with other types of + tunnels are here. +
+ +
+ /etc/shorewall/shorewall.conf + + This file is used to set the following firewall parameters: + + + + DYNAMIC_ZONES + + + (Added at version 2.0.2) - When set to Yes or yes, enables + dynamic zones. + + + + + CONFIG_PATH + + + (Added at version 2.0.2) - Specifies where configuration files + other than shorewall.conf may be found. + CONFIG_PATH is specifies as a list of directory names separated by + colons (":"). When looking for a configuration file other + than shorewall.conf: + + + + If the command is "try" or if "-c + <configuration directory>" was specified in the + command then the directory given in the command is searched + first. + + + + Next, each directory in the CONFIG_PATH setting is + searched in sequence. + + + + If CONFIG_PATH is not given or if it is set to the empty value + then the contents of /usr/share/shorewall/configpath + are used. As released from shorewall.net, that file sets the + CONFIG_PATH to /etc/shorewall:/usr/share/shorewall + but your particular distribution may set it differently. + + Note that the setting in /usr/share/shorewall/configpath + is always used to locate shorewall.conf. + + + + + RESTOREFILE + + + (Added at version 2.0.3 Beta 1) - The simple name of a file in + /var/lib/shorewall to be used as the default restore + script in the shorewall save, shorewall restore, shorewall forget + and shorewall -f start commands. See the Saved Configuration + documentation for details. + + + + + BRIDGING + + + (Added at version 2.0.1) - When set to Yes or yes, enables + Shorewall Bridging support. + + + + + SMURF_LOG_LEVEL + + + (Added at version 2.0.0) - Specifies the logging level for + smurf packets (see the nosmurfs + option in /etc/shorewall/interfaces). + If set to the empty value ( SMURF_LOG_LEVEL="" ) then smurfs + are not logged. + + + + + MODULE_SUFFIX + + + (Added at version 1.4.9) - The value of this variable + determines the possible file extensions of kernel modules. The + default value is "o gz ko and o.gz". See for more details. + + + + + ADMINISABSENTMINDED + + + (Added at version 1.4.7) - The value of this variable affects + Shorewall's stopped + state. When ADMINISABSENTMINDES=No, only traffic to/from + those addresses listed in /etc/shorewall/routestopped is accepted + when Shorewall is stopped.When ADMINISABSENTMINDED=Yes, in addition + to traffic to/from addresses in /etc/shorewall/routestopped, + connections that were active when Shorewall stopped continue to work + and all new connections from the firewall system itself are allowed. + If this variable is not set or is given the empty value then + ADMINISABSENTMINDED=No is assumed. + + + + + SHOREWALL_SHELL + + + (Added at version 1.4.6) - This parameter is used to specify + the shell program to be used to interpret the firewall script + (/usr/share/shorewall/firewall). If not specified or specified as a + null value, /bin/sh is assumed. + + + + + LOGFORMAT + + + (Added at version 1.4.4) - The value of this variable generate + the --log-prefix setting for Shorewall logging rules. It contains a + printf formatting template which accepts three + arguments (the chain name, logging rule number (optional) and the + disposition). To use LOGFORMAT with fireparse, set it as: + + LOGFORMAT="fp=%s:%d a=%s " + + If the LOGFORMAT value contains the substring %d + then the logging rule number is calculated and formatted in that + position; if that substring is not included then the rule number is + not included. If not supplied or supplied as empty + (LOGFORMAT="") then Shorewall:%s:%s: is + assumed. + + + /sbin/shorewall uses the leading part of + the LOGFORMAT string (up to but not including the first + %) to find log messages in the show log, + status and hits commands. This part + should not be omitted (the LOGFORMAT should not begin with + %) and the leading part should be sufficiently + unique for /sbin/shorewall to identify + Shorewall messages. + + + + + + CLEAR_TC + + + (Added at version 1.3.13) - If this option is set to + No then Shorewall won't clear the current traffic + control rules during [re]start. This setting is intended for use by + people that prefer to configure traffic shaping when the network + interfaces come up rather than when the firewall is started. If that + is what you want to do, set TC_ENABLED=Yes and CLEAR_TC=No and do + not supply an /etc/shorewall/tcstart file. That + way, your traffic shaping rules can still use the fwmark + classifier based on packet marking defined in + /etc/shorewall/tcrules. If not specified, CLEAR_TC=Yes is assumed. + + + + + MARK_IN_FORWARD_CHAIN + + + (Added at version 1.3.12) - If your kernel has a FORWARD chain + in the mangle table, you may set MARK_IN_FORWARD_CHAIN=Yes to cause + the marking specified in the tcrules file to occur in + that chain rather than in the PREROUTING chain. This permits you to + mark inbound traffic based on its destination address when SNAT or + Masquerading are in use. To determine if your kernel has a FORWARD + chain in the mangle table, use the /sbin/shorewall + show mangle command; if a FORWARD chain is + displayed then your kernel will support this option. If this option + is not specified or if it is given the empty value (e.g., + MARK_IN_FORWARD_CHAIN="") then MARK_IN_FORWARD_CHAIN=No is + assumed. + + + + + RFC1918_LOG_LEVEL + + + (Added at version 1.3.12) - This parameter determines the + level at which packets logged under the norfc1918 + mechanism are logged. The value must be a valid syslog level and if no level is + given, then info is assumed. Prior to Shorewall version 1.3.12, + these packets are always logged at the info level. + + + + + BOGON_LOG_LEVEL + + + (Added at version 2.0.1) - This parameter determines the level + at which packets logged under the nobogons + mechanism are logged. The value must be a valid syslog level and if no level is + given, then info is assumed. + + + + + TCP_FLAGS_DISPOSITION + + + (Added in Version 1.3.11) - Determines the disposition of TCP + packets that fail the checks enabled by the tcpflags interface option and must have + a value of ACCEPT (accept the packet), REJECT (send an RST response) + or DROP (ignore the packet). If not set or if set to the empty value + (e.g., TCP_FLAGS_DISPOSITION="") then + TCP_FLAGS_DISPOSITION=DROP is assumed. + + + + + TCP_FLAGS_LOG_LEVEL + + + (Added in Version 1.3.11) - Determines the syslog level for logging + packets that fail the checks enabled by the tcpflags interface option.The value must + be a valid syslogd log level. If you don't want to log these + packets, set to the empty value (e.g., + TCP_FLAGS_LOG_LEVEL=""). + + + + + MACLIST_DISPOSITION + + + (Added in Version 1.3.10) - Determines the disposition of + connections requests that fail MAC + Verification and must have the value ACCEPT (accept the + connection request anyway), REJECT (reject the connection request) + or DROP (ignore the connection request). If not set or if set to the + empty value (e.g., MACLIST_DISPOSITION="") then + MACLIST_DISPOSITION=REJECT is assumed. + + + + + MACLIST_LOG_LEVEL + + + (Added in Version 1.3.10) - Determines the syslog level for logging + connection requests that fail MAC + Verification. The value must be a valid syslogd log level. + If you don't want to log these connection requests, set to the + empty value (e.g., MACLIST_LOG_LEVEL=""). + + + + + NEWNOTSYN + + + (Added in Version 1.3.8) - When set to Yes or + yes, Shorewall will filter TCP packets that are not + part of an established connention and that are not SYN packets (SYN + flag on - ACK flag off). If set to No, Shorewall will + silently drop such packets. If not set or set to the empty value + (e.g., NEWNOTSYN=), NEWNOTSYN=No is assumed. + + If you have a HA setup with failover to another firewall, you + should have NEWNOTSYN=Yes on both firewalls. You should also select + NEWNOTSYN=Yes if you have asymmetric routing. + + + + + LOGNEWNOTSYN + + + (Added in Version 1.3.6) - Beginning with version 1.3.6, + Shorewall drops non-SYN TCP packets that are not part of an existing + connection. If you would like to log these packets, set LOGNEWNOTSYN + to the syslog level at + which you want the packets logged. Example: LOGNEWNOTSYN=ULOG| + + + Packets logged under this option are usually the result of + broken remote IP stacks rather than the result of any sort of + attempt to breach your firewall. + + + + + + DETECT_DNAT_ADDRS + + + (Added in Version 1.3.4) - If set to Yes or + yes, Shorewall will detect the first IP address of + the interface to the source zone and will include this address in + DNAT rules as the original destination IP address. If set to + No or no, Shorewall will not detect + this address and any destination IP address will match the DNAT + rule. If not specified or empty, DETECT_DNAT_ADDRS=Yes + is assumed. + + + + + NAT_BEFORE_RULES + + + If set to No or no, port + forwarding rules can override the contents of the file. If set to Yes or + yes, port forwarding rules cannot override one-to-one + NAT. If not set or set to an empty value, Yes is + assumed. + + + + + FW + + + This parameter specifies the name of the firewall zone. If not + set or if set to an empty string, the value fw is + assumed. + + + + + SUBSYSLOCK + + + This parameter should be set to the name of a file that the + firewall should create if it starts successfully and remove when it + stops. Creating and removing this file allows Shorewall to work with + your distribution's initscripts. For RedHat, this should be set + to /var/lock/subsys/shorewall. For Debian, the value is + /var/state/shorewall and in LEAF it is /var/run/shorwall. Example: + SUBSYSLOCK=/var/lock/subsys/shorewall. + + + + + STATEDIR + + + This parameter specifies the name of a directory where + Shorewall stores state information. If the directory doesn't + exist when Shorewall starts, it will create the directory. Example: + STATEDIR=/tmp/shorewall. + + + If you change the STATEDIR variable while the firewall is + running, create the new directory if necessary then copy the + contents of the old directory to the new directory. + + + + + + MODULESDIR + + + This parameter specifies the directory where your kernel + netfilter modules may be found. If you leave the variable empty, + Shorewall will supply the value "/lib/modules/`uname + -r`/kernel/net/ipv4/netfilter. + + + + + LOGRATE and LOGBURST + + + These parameters set the match rate and initial burst size for + logged packets. Please see the iptables man page for a description + of the behavior of these parameters (the iptables option --limit is + set by LOGRATE and --limit-burst is set by LOGBURST). If both + parameters are set empty, no rate-limiting will occur. + + + + + LOGRATE=10/minute +LOGBURST=5 + + For each logging rule, the first time the rule is reached, + the packet will be logged; in fact, since the burst is 5, the + first five packets will be logged. After this, it will be 6 + seconds (1 minute divided by the rate of 10) before a message will + be logged from the rule, regardless of how many packets reach it. + Also, every 6 seconds which passes without matching a packet, one + of the bursts will be regained; if no packets hit the rule for 30 + seconds, the burst will be fully recharged; back where we started. + + + + + + LOGFILE + + + This parameter tells the /sbin/shorewall program where to look + for Shorewall messages when processing the show log, + monitor, status and hits + commands. If not assigned or if assigned an empty value, + /var/log/messages is assumed. + + + + + IP_FORWARDING + + + This parameter determines whether Shorewall enables or + disables IPV4 Packet Forwarding (/proc/sys/net/ipv4/ip_forward). + Possible values are: + + + + On or on + + + packet forwarding will be enabled. + + + + + Off or off + + + packet forwarding will be disabled. + + + + + Keep or keep + + + Shorewall will neither enable nor disable packet + forwarding. + + + + + If this variable is not set or is given an empty value + (IP_FORWARD="") then IP_FORWARD=On is assumed. + + + + + ADD_IP_ALIASES + + + This parameter determines whether Shorewall automatically adds + the external address(es) in . + If the variable is set to Yes or yes + then Shorewall automatically adds these aliases. If it is set to + No or no, you must add these aliases + yourself using your distribution's network configuration tools. + + If this variable is not set or is given an empty value + (ADD_IP_ALIASES="") then ADD_IP_ALIASES=Yes is assumed. + + + + + ADD_SNAT_ALIASES + + + This parameter determines whether Shorewall automatically adds + the SNAT ADDRESS in . If + the variable is set to Yes or yes then + Shorewall automatically adds these addresses. If it is set to + No or no, you must add these addresses + yourself using your distribution's network configuration tools. + + If this variable is not set or is given an empty value + (ADD_SNAT_ALIASES="") then ADD_SNAT_ALIASES=No is assumed. + + + + + LOGUNCLEAN + + + This parameter determines the logging level of mangled/invalid + packets controlled by the dropunclean and logunclean + interface options. If LOGUNCLEAN is empty (LOGUNCLEAN=) then packets + selected by dropclean are dropped silently (logunclean + packets are logged under the info log level). + Otherwise, these packets are logged at the specified level (Example: + LOGUNCLEAN=debug). + + + + + BLACKLIST_DISPOSITION + + + This parameter determines the disposition of packets from + blacklisted hosts. It may have the value DROP if the packets are to + be dropped or REJECT if the packets are to be replied with an ICMP + port unreachable reply or a TCP RST (tcp only). If you do not assign + a value or if you assign an empty value then DROP is assumed. + + + + + BLACKLIST_LOGLEVEL + + + This paremter determines if packets from blacklisted hosts are + logged and it determines the syslog level that they are to be logged + at. Its value is a syslog level + (Example: BLACKLIST_LOGLEVEL=debug). If you do not assign a value or + if you assign an empty value then packets from blacklisted hosts are + not logged. + + + + + CLAMPMSS + + + This parameter enables the TCP Clamp MSS to PMTU feature of + Netfilter and is usually required when your internet connection is + through PPPoE or PPTP. If set to Yes or + yes, the feature is enabled. If left blank or set to + No or no, the feature is not enabled. + + + This option requires CONFIG_IP_NF_TARGET_TCPMSS in your kernel. + + + + + + ROUTE_FILTER + + + If this parameter is given the value Yes or + yes then route filtering (anti-spoofing) is enabled + on all network interfaces which are brought up while Shorewall is in + the started state. The default value is no. + + + +
+ +
+ /etc/shorewall/modules Configuration + + The file /etc/shorewall/modules contains + commands for loading the kernel modules required by Shorewall-defined + firewall rules. Shorewall will source this file during start/restart + provided that it exists and that the directory specified by the MODULESDIR + parameter exists (see above). + + The file that is released with Shorewall calls the Shorewall + function loadmodule for the set of modules that I load. + + The loadmodule function is called as follows: + + loadmodule <modulename> [ <module parameters> ] + + where + + + + <modulename> + + + is the name of the modules without the trailing + .o (example ip_conntrack). + + + + + <module parameters> + + + Optional parameters to the insmod utility. + + + + + The function determines if the module named by <modulename> + is already loaded and if not then the function determines if the + .o file corresponding to the module exists in the + <moduledirectory>; if so, then the following + command is executed: + + insmod <moduledirectory>/<modulename>.o <module parameters> + + If the file doesn't exist, the function determines of the + .o.gz file corresponding to the module exists in the + moduledirectory. If it does, the function assumes + that the running configuration supports compressed modules and execute the + following command: + + insmod <moduledirectory>/<modulename>.o.gz <module parameters> + + Beginning with the 1.4.9 Shorewall release, the value of the + MODULE_SUFFIX option in determines which files the loadmodule function + looks for if the named module doesn't exist. For each file + <extension> listed in MODULE_SUFFIX (default + "o gz ko o.gz"), the function will append a period (".") + and the extension and if the resulting file exists then the following + command will be executed: + + insmod moduledirectory/<modulename>.<extension> <module parameters> +
+ +
+ /etc/shorewall/tos Configuration + + The /etc/shorewall/tos file allows you to set + the Type of Service field in packet headers based on packet source, packet + destination, protocol, source port and destination port. In order for this + file to be processed by Shorewall, you must have mangle support enabled. + + Entries in the file have the following columns: + + + + SOURCE + + + The source zone. May be qualified by following the zone name + with a colon (:) and either an IP address, an IP + subnet, a MAC address in + Shorewall Format or the name of an interface. This column + may also contain the name of the firewall zone to indicate packets + originating on the firewall itself or all to indicate + any source. + + + + + DEST + + + The destination zone. May be qualified by following the zone + name with a colon (:) and either an IP address or an + IP subnet. Because packets are marked prior to routing, you may not + specify the name of an interface. This column may also contain + all to indicate any destination. + + + + + PROTOCOL + + + The name of a protocol in /etc/protocols or + the protocol's number. + + + + + SOURCE PORT(S) + + + The source port or a port range. For all ports, place a hyphen + (-) in this column. + + + + + DEST PORT(S) + + + The destination port or a port range. To indicate all ports, + place a hyphen (-) in this column. + + + + + TOS + + + The type of service. Must be one of the following: + + + Minimize-Delay (16) + + Maximize-Throughput (8) + + Maximize-Reliability (4) + + Minimize-Cost (2) + + Normal-Service (0) + + + + + + /etc/shorewall/tos file that is included with + Shorewall + + #SOURCE DEST PROTOCOL SOURCE PORTS(S) DEST PORTS(S) TOS +all all tcp - ssh 16 +all all tcp ssh - 16 +all all tcp - ftp 16 +all all tcp ftp - 16 +all all tcp - ftp-data 8 +all all tcp ftp-data - 8 + + + Users have reported that odd routing problems result from adding + the ESP and AH protocols to the /etc/shorewall/tos + file. + +
+ +
+ /etc/shorewall/blacklist + + Each line in /etc/shorewall/blacklist contains + an IP address, a MAC address in Shorewall Format or subnet address. + + + + + 130.252.100.69 +206.124.146.0/24 + + + Packets from hosts listed in the + blacklist file will be disposed of according to the value assigned to the + BLACKLIST_DISPOSITION and BLACKLIST_LOGLEVEL + variables in /etc/shorewall/shorewall.conf. Only packets arriving on + interfaces that have the blacklist + option in /etc/shorewall/interfaces are checked + against the blacklist. The black list is designed to prevent listed + hosts/subnets from accessing services on your + network. + + Beginning with Shorewall 1.3.8, the blacklist file has three + columns: + + + + ADDRESS/SUBNET + + + As described above. + + + + + PROTOCOL + + + Optional. If specified, only packets specifying this protocol + will be blocked. + + + + + PORTS + + + Optional; may only be given if PROTOCOL is tcp, udp or icmp. + Expressed as a comma-separated list of port numbers or service names + (from /etc/services). If present, only packets destined for the + specified protocol and one of the listed ports are blocked. When the + PROTOCOL is icmp, the PORTS column contains a comma-separated list + of ICMP type numbers or names (see iptables -h icmp). + + + + + Shorewall also has a dynamic + blacklist capability. + + + The Shorewall blacklist file is NOT + designed to police your users' web browsing -- to do that, I suggest + that you install and configure Squid + with SquidGuard. + +
+ +
+ /etc/shorewall/rfc1918 — Moved to /usr/share/shorewall in Version + 2.0.0 + + This file lists the subnets affected by the norfc1918 interface option. Columns in the + file are: + + + + SUBNET + + + The subnet using VLSM notation (e.g., 192.168.0.0/16). + + + + + TARGET + + + What to do with packets to/from the SUBNET: + + + + RETURN + + + Process the packet normally thru the rules and policies. + + + + + DROP + + + Silently drop the packet. + + + + + logdrop + + + Log then drop the packet -- see the RFC1918_LOG_LEVEL + parameter above. + + + + + + + + If you want to modify this file, DO NOT MODIFY /usr/share/shorewall/rfc1918. + Rather copy that file to /etc/shorewall/rfc1918 and + modify the copy. +
+ +
+ /usr/share//shorewall/bogons — Added in Version 2.0.1 + + This file lists the subnets affected by the nobogons interface option and nobogons hosts option. Columns in the file are: + + + + SUBNET + + + The subnet using VLSM notation (e.g., 192.168.0.0/16). + + + + + TARGET + + + What to do with packets to/from the SUBNET: + + + + RETURN + + + Process the packet normally thru the rules and policies. + + + + + DROP + + + Silently drop the packet. + + + + + logdrop + + + Log then drop the packet -- see the BOGONS_LOG_LEVEL + parameter above. + + + + + + + + If you want to modify this file, DO NOT MODIFY /usr/share/shorewall/bogons. + Rather copy that file to /etc/shorewall/bogons and + modify the copy. +
+ +
+ /etc/shorewall/netmap (Added in Version 2.0.1) + + Network mapping is defined using the /etc/shorewall/netmap + file. Columns in this file are: + + + + TYPE + + + Must be DNAT or SNAT. + + If DNAT, traffic entering INTERFACE and addressed to NET1 has + it's destination address rewritten to the corresponding address + in NET2. + + If SNAT, traffic leaving INTERFACE with a source address in + NET1 has it's source address rewritten to the corresponding + address in NET2. + + + + + NET1 + + + Must be expressed in CIDR format (e.g., 192.168.1.0/24). + + + + + INTERFACE + + + A firewall interface. This interface must have been defined in + /etc/shorewall/interfaces. + + + + + NET2 + + + A second network expressed in CIDR format. + + + + + For more information, see the Network + Mapping documentation. +
+ +
+ /etc/shorewall/routestopped (Added in Version 1.3.4) + + This file defines the hosts that are accessible from the firewall + when the firewall is stopped. Columns in the file are: + + + + INTERFACE + + + The firewall interface through which the host(s) comminicate + with the firewall. + + + + + HOST(S) - (Optional) + + + A comma-separated list of IP/Subnet addresses. If not supplied + or supplied as - then 0.0.0.0/0 is assumed. + + + + + + When your firewall is stopped, you want firewall accessibility + from local hosts 192.168.1.0/24 and from your DMZ. Your DMZ interfaces + through eth1 and your local hosts through eth2. + + #INTERFACE HOST(S) +eth2 192.168.1.0/24 +eth1 - + +
+ +
+ /etc/shorewall/maclist (Added in Version 1.3.10) + + This file is described in the MAC + Validation Documentation. +
+ +
+ /etc/shorewall/ecn (Added in Version 1.4.0) + + This file is described in the ECN Control + Documentation. +
+ +
+ /etc/shorewall/accounting + + This file is described in the Traffic + Accounting Documentation. +
+ + + Revision History + + 1.172004-04-05TEUpdate + for Shorewall 2.0.21.162004-03-17TEClarified + LOGBURST and LOGLIMIT.1.152004-02-16TEMove + the rfc1918 file to /usr/share/shorewall.1.142004-02-13TEAdd + a note about the order of rules.1.132004-02-03TEUpdate + for Shorewall 2.0.1.122004-01-21TEAdd + masquerade destination list.1.122004-01-18TECorrect + typo.1.112004-01-05TEStandards + Compliance1.102004-01-05TEImproved + formatting of DNAT- and REDIRECT- for clarity1.92003-12-25MNInitial + Docbook Conversion Complete + +
\ No newline at end of file diff --git a/Shorewall-docsN/Documentation_Index.xml b/Shorewall-docsN/Documentation_Index.xml new file mode 100644 index 000000000..3f9b8cc18 --- /dev/null +++ b/Shorewall-docsN/Documentation_Index.xml @@ -0,0 +1,402 @@ + + +
+ + + + Shorewall Documentation + + + + Tom + + Eastep + + + + 2004-07-03 + + + 2001-2004 + + Thomas M. Eastep + + + 2.0.3 + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + Are you running Shorewall on Mandrake Linux + with a two-interface setup? + + If so and if you configured your system while running a Mandrake + release earlier than 10.0 final then this documentation will not apply + directly to your environment. If you want to use the documentation that + you find here, you will want to consider uninstalling what you have and + installing a configuration that matches this documentation. See the Two-interface QuickStart Guide for + details. + + + + + Introduction to Shorewall + + + + QuickStart Guides + (HOWTOS) + + + + The remainder of the Documentation supplements the QuickStart Guides. + Please review the appropriate guide before trying to use this documentation + directly. + + + + 2.6 Kernel + + + + Accounting + + + + Aliased + (virtual) Interfaces (e.g., eth0:0) + + + + Bandwidth Control + + + + Blacklisting + + + + Static Blacklisting using /etc/shorewall/blacklist + + + + Dynamic Blacklisting using /sbin/shorewall + + + + + + Bridge/Firewall + + + + Commands + (Description of all /sbin/shorewall commands) + + + + Common configuration + file features Comments in configuration + filesLine ContinuationINCLUDE DirectivePort Numbers/Service Namesconfiguration_file_basics.htm#PortsPort RangesUsing Shell VariablesUsing DNS NamesComplementing an IP + address or SubnetShorewall Configurations + (making a test configuration)Using MAC Addresses in Shorewall + + + + Configuration File Reference Manual + paramszonesinterfaceshostspolicyrulesmasqproxyarpnattunnelstcrulesshorewall.confmodulestosblacklistrfc1918routestoppedaccountingusersets and usersmaclistactions and action.templatebogonsnetmap + + + + Corporate Network Example + (Contributed by a Graeme Boyle) + + + + DHCP + + + + ECN Disabling by host or subnet + + + + Errata + + + + Extension Scripts + (How to extend Shorewall without modifying Shorewall code through the + use of files in /etc/shorewall -- /etc/shorewall/start, + /etc/shorewall/stopped, etc.) + + + + Fallback/Uninstall + + + + FAQs + + + + Features + + + + Forwarding Traffic on the Same + Interface + + + + FTP and Shorewall + + + + Getting help or answers to questions + + + + Installation/Upgrade + + + + IPSEC + + + + Kazaa Filtering + + + + Kernel Configuration + + + + Logging + + + + MAC Verification + + + + Multiple Zones Through One + Interface + + + + My Shorewall Configuration (How I + personally use Shorewall) + + + + Netfilter Overview + + + + Network Mapping + + + + One-to-one NAT (Formerly referred to + as Static NAT) + + + + OpenVPN + + + + Operating + Shorewall + + + + 'Ping' Management + + + + Port Information + + + + Which applications use which ports + + + + Ports used by Trojans + + + + + + PPTP + + + + Proxy ARP + + + + Release Model + + + + Requirements + + + + Routing on One Interface + + + + Samba + + + + Shorewall Setup GuideIntroductionShorewall ConceptsNetwork InterfacesAddressing, Subnets and + RoutingIP AddressesSubnetsRoutingAddress Resolution Protocol (ARP)RFC 1918Setting up your NetworkRoutedNon-routedSNATDNATProxy ARPOne-to-one NATRulesOdds and EndsDNSStarting and Stopping the + Firewall + + + + Starting/stopping + the FirewallDescription of all + /sbin/shorewall commandsHow to safely + test a Shorewall configuration change + + + + Squid with Shorewall + + + + Traffic Accounting + + + + Traffic Shaping/QOS + + + + Troubleshooting (Things to + try if it doesn't work) + + + + User-defined Actions + + + + UID/GID Based Rules + + + + Upgrade Issues + + + + VPN + + + + IPSEC + + + + GRE and IPIP + + + + OpenVPN + + + + PPTP + + + + 6to4 + + + + IPSEC/PPTP passthrough from a system + behind your firewall to a remote network + + + + Other VPN types + + + + + + White List Creation + + +
\ No newline at end of file diff --git a/Shorewall-docsN/Documentation_Index.xml.shit b/Shorewall-docsN/Documentation_Index.xml.shit new file mode 100644 index 000000000..fc4d3141f --- /dev/null +++ b/Shorewall-docsN/Documentation_Index.xml.shit @@ -0,0 +1,314 @@ + + +
+ + + + Shorewall Documentation + + + + Tom + + Eastep + + + + 2004-03-28 + + + 2001-2004 + + Thomas M. Eastep + + + 2.0.1 + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + Are you running Shorewall on Mandrake Linux + with a two-interface setup? + + If so and if you configured your system while running a Mandrake + release earlier than 10.0 final then this documentation will not apply + directly to your environment. If you want to use the documentation that + you find here, you will want to consider uninstalling what you have and + installing a configuration that matches this documentation. See the Two-interface QuickStart Guide for + details. + + + + + Introduction to Shorewall + + + + QuickStart Guides + (HOWTOS) + + + + The remainder of the Documentation supplements the QuickStart Guides. + Please review the appropriate guide before trying to use this documentation + directly. + + + Documentation (Alphabetical by column) + + + + + Accounting + + My Shorewall Configuration + (How I personally use Shorewall) + + + + Aliased + (virtual) Interfaces (e.g., eth0:0) + + Netfilter Overview + + + + Bandwidth Control + + Network Mapping + + + + BlacklistingStatic + Blacklisting using /etc/shorewall/blacklistDynamic + Blacklisting using /sbin/shorewall + + One-to-one NAT (Formerly + referred to as Static NAT) + + + + Bridge/Firewall + + OpenVPN + + + + Commands + (Description of all /sbin/shorewall commands) + + Operating + Shorewall + + + + Common + configuration file features Comments in + configuration filesLine ContinuationINCLUDE DirectivePort Numbers/Service Namesconfiguration_file_basics.htm#PortsPort RangesUsing Shell VariablesUsing DNS NamesComplementing an IP + address or SubnetShorewall Configurations + (making a test configuration)Using MAC Addresses in + Shorewall + + 'Ping' Management + + + + Configuration File Reference + Manualparamszonesinterfaceshostspolicyrulescommonmasqproxyarpnattunnelstcrulesshorewall.confmodulestosblacklistrfc1918routestoppedaccountingusersets and usersmaclistactions and action.templatebogonsnetmap + + Port InformationWhich + applications use which portsPorts + used by Trojans + + + + Corporate Network Example + (Contributed by a Graeme Boyle) + + PPTP + + + + DHCP + + Proxy ARP + + + + Errata + + Requirements + + + + Extension + Scripts (How to extend Shorewall without modifying Shorewall + code through the use of files in /etc/shorewall -- + /etc/shorewall/start, /etc/shorewall/stopped, etc.) + + Routing on One Interface + + + + Fallback/Uninstall + + Samba + + + + FAQs + + Shorewall Setup GuideIntroductionShorewall ConceptsNetwork InterfacesAddressing, Subnets and + RoutingIP AddressesSubnetsRoutingAddress Resolution Protocol + (ARP)RFC 1918Setting up your NetworkRoutedNon-routedSNATDNATProxy ARPOne-to-one NATRulesOdds and EndsDNSStarting and Stopping the + Firewall + + + + Features + + Starting/stopping + the FirewallDescription of all + /sbin/shorewall commandsHow to + safely test a Shorewall configuration change + + + + Forwarding Traffic on the + Same Interface + + Squid with Shorewall + + + + FTP and Shorewall + + Traffic Accounting + + + + Getting help or answers to questions + + Traffic Shaping/QOS + + + + Installation/Upgrade + + Troubleshooting (Things + to try if it doesn't work) + + + + IPSEC + + User-defined Actions + + + + Kazaa Filtering + + UID/GID Based Rules + + + + Kernel Configuration + + Upgrade Issues + + + + Logging + + VPNIPSECGRE and IPIPOpenVPNPPTP6to4IPSEC/PPTP passthrough from a system behind your + firewall to a remote networkOther VPN types + + + + MAC Verification + + White List + Creation + + + + Multiple Zones Through One + Interface + + + + + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/ECN.xml b/Shorewall-docsN/ECN.xml new file mode 100644 index 000000000..41f930244 --- /dev/null +++ b/Shorewall-docsN/ECN.xml @@ -0,0 +1,92 @@ + + +
+ + + + ECN + + + + Tom + + Eastep + + + + 2003-03-28 + + + 2001 + + 2002 + + 2003 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Explicit Congestion Notification (ECN) + + Explicit Congestion Notification (ECN) is described in RFC 3168 and + is a proposed internet standard. Unfortunately, not all sites support ECN + and when a TCP connection offering ECN is sent to sites that don't + support it, the result is often that the connection request is ignored. + + To allow ECN to be used, Shorewall allows you to enable ECN on your + Linux systems then disable it in your firewall when the destination + matches a list that you create (the /etc/shorewall/ecn file). + + You enable ECN by + + echo 1 > /proc/sys/net/ipv4/tcp_ecn + + You must arrange for that command to be executed at system boot. + Most distributions have a method for doing that -- on RedHat, you make an + entry in /etc/sysctl.conf. + + net.ipv4.tcp_ecn = 1 + + Entries in /etc/shorewall/ecn have two columns as follows: + + + + INTERFACE + + + The name of an interface on your system + + + + + HOST(S) + + + An address (host or subnet) of a system or group of systems + accessed through the interface in the first column. You may include + a comma-separated list of such addresses in this column. + + + + + + Your external interface is eth0 and you want to disable ECN for + tcp connections to 192.0.2.0/24: + + /etc/shorewall/ecnINTERFACEHOST(S)eth0192.0.2.0/24
+
+
+
\ No newline at end of file diff --git a/Shorewall-docsN/FAQ.xml b/Shorewall-docsN/FAQ.xml new file mode 100644 index 000000000..c4076eed2 --- /dev/null +++ b/Shorewall-docsN/FAQ.xml @@ -0,0 +1,1773 @@ + + +
+ + + + Shorewall FAQs + + + Shorewall Community + + + Tom + + Eastep + + + + 2004-06-18 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Installing Shorewall + +
+ Where do I find Step by Step Installation and Configuration + Instructions? + + Answer: Check out the QuickStart Guides. +
+ +
+ (FAQ 37) I just installed Shorewall on Debian and the + /etc/shorewall directory is empty!!! + + If you install using the .deb, you will find that your /etc/shorewall directory is empty. This is + intentional. The released configuration file skeletons may be found on + your system in the directory /usr/share/doc/shorewall/default-config. + Simply copy the files you need from that directory to /etc/shorewall and modify the copies. + + Note that you must copy /usr/share/doc/shorewall/default-config/shorewall.conf + and /usr/share/doc/shorewall/default-config/modules + to /etc/shorewall even if you do + not modify those files. +
+
+ +
+ Port Forwarding + +
+ (FAQ 1) I want to forward UDP port 7777 to my my personal PC with + IP address 192.168.1.5. I've looked everywhere and can't find + how to do it. + + Answer: The first example in the + rules file documentation + shows how to do port forwarding under Shorewall. The format of a + port-forwarding rule to a local system is as follows: + + #ACTION SOURCE DEST PROTO DEST PORT +DNAT net loc:<local IP address>[:<local port>] <protocol> <port #> + + So to forward UDP port 7777 to internal system 192.168.1.5, the + rule is: + + #ACTION SOURCE DEST PROTO DEST PORT +DNAT net loc:192.168.1.5 udp 7777 + + If you want to forward requests directed to a particular address ( + <external IP> ) on your firewall to an + internal system: + + #ACTION SOURCE DEST PROTO DEST PORT SOURCE ORIGINAL +# PORT DEST. +DNAT net loc:<local IP address>[:<local port>] <protocol> <port #> - <external IP> + + Finally, if you need to forward a range of ports, in the PORT + column specify the range as <low-port>:<high-port>. + +
+ (FAQ 1a) Ok -- I followed those instructions but it doesn't + work + + Answer: That is usually the + result of one of four things: + + + + You are trying to test from inside your firewall (no, that + won't work -- see ). + + + + You have a more basic problem with your local system (the + one that you are trying to forward to) such as an incorrect + default gateway (it should be set to the IP address of your + firewall's internal interface). + + + + Your ISP is blocking that particular port inbound. + + + + You are running Mandrake Linux and have configured Internet + Connection Sharing. In that case, the name of your local zone is + 'masq' rather than 'loc' (change all instances of + 'loc' to 'masq' in your rules). You may want to + consider re-installing Shorewall in a configuration which matches + the Shorewall documentation. See the two-interface QuickStart Guide for + details. + + +
+ +
+ (FAQ 1b) I'm still having problems with port forwarding + + Answer: To further diagnose + this problem: + + + + As root, type iptables -t nat -Z. + This clears the NetFilter counters in the nat table. + + + + Try to connect to the redirected port from an external host. + + + + As root type shorewall show nat + + + + Locate the appropriate DNAT rule. It will be in a chain + called <source zone>_dnat (net_dnat + in the above examples). + + + + Is the packet count in the first column non-zero? If so, the + connection request is reaching the firewall and is being + redirected to the server. In this case, the problem is usually a + missing or incorrect default gateway setting on the local system + (the system you are trying to forward to -- its default gateway + should be the IP address of the firewall's interface to that + system). + + + + If the packet count is zero: + + + + the connection request is not reaching your server + (possibly it is being blocked by your ISP); or + + + + you are trying to connect to a secondary IP address on + your firewall and your rule is only redirecting the primary IP + address (You need to specify the secondary IP address in the + ORIG. DEST. column in your DNAT rule); or + + + + your DNAT rule doesn't match the connection request + in some other way. In that case, you may have to use a packet + sniffer such as tcpdump or ethereal to further diagnose the + problem. + + + + +
+ +
+ (FAQ 1c) From the internet, I want to connect to port 1022 on + my firewall and have the firewall forward the connection to port 22 on + local system 192.168.1.3. How do I do that? + + In /etc/shorewall/rules: + + #ACTION SOURCE DEST PROTO DEST PORT +DNAT net loc:192.168.3:22 tcp 1022 +
+
+ +
+ (FAQ 30) I'm confused about when to use DNAT rules and when + to use ACCEPT rules. + + It would be a good idea to review the QuickStart Guide + appropriate for your setup; the guides cover this topic in a tutorial + fashion. DNAT rules should be used for connections that need to go the + opposite direction from SNAT/MASQUERADE. So if you masquerade or use + SNAT from your local network to the internet then you will need to use + DNAT rules to allow connections from the internet to your local network. + In all other cases, you use ACCEPT unless you need to hijack connections + as they go through your firewall and handle them on the firewall box + itself; in that case, you use a REDIRECT rule. +
+
+ +
+ DNS and Port Forwarding/NAT + +
+ (FAQ 2) I port forward www requests to www.mydomain.com (IP + 130.151.100.69) to system 192.168.1.5 in my local network. External + clients can browse http://www.mydomain.com but internal clients + can't. + + Answer: I have two objections to + this setup. + + + + Having an internet-accessible server in your local network is + like raising foxes in the corner of your hen house. If the server is + compromised, there's nothing between that server and your other + internal systems. For the cost of another NIC and a cross-over + cable, you can put your server in a DMZ such that it is isolated + from your local systems - assuming that the Server can be located + near the Firewall, of course :-) + + + + The accessibility problem is best solved using Bind Version 9 views + (or using a separate DNS server for local clients) such that + www.mydomain.com resolves to 130.141.100.69 externally and + 192.168.1.5 internally. That's what I do here at shorewall.net + for my local systems that use one-to-one NAT. + + + + If you insist on an IP solution to the accessibility problem + rather than a DNS solution, then assuming that your external interface + is eth0 and your internal interface is eth1 and that eth1 has IP address + 192.168.1.254 with subnet 192.168.1.0/24. + + If you are running Shorewall 1.4.0 or earlier see the 1.3 FAQ for instructions suitable for + those releases. + + If you are running Shorewall 1.4.1 or Shorewall 1.4.1a, please + upgrade to Shorewall 1.4.2 or later. + + Otherwise:In this configuration, all loc->loc + traffic will look to the server as if it came from the firewall rather + than from the original client! + + + + In /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +loc eth1 detect routeback + + + + In /etc/shorewall/rules (Assuming that + your local network is 192.168.1.0/24): + + #ACTION SOURCE DEST PROTO DEST PORT SOURCE ORIGINAL +# PORT DEST. +DNAT loc:192.168.1.0/24 loc:192.168.1.5 tcp www - 130.151.100.69:192.168.1.254 + + That rule only works of course if you have a static external + IP address. If you have a dynamic IP address and are running + Shorewall 1.3.4 or later then include this in /etc/shorewall/init: + + ETH0_IP=`find_interface_address eth0` + + and make your DNAT rule: + + #ACTION SOURCE DEST PROTO DEST PORT SOURCE ORIGINAL +# PORT DEST. +DNAT loc:192.168.1.0/24 loc:192.168.1.5 tcp www - $ETH0_IP:192.168.1.254 + + Using this technique, you will want to configure your + DHCP/PPPoE client to automatically restart Shorewall each time that + you get a new IP address. + + + +
+ (FAQ 2a) I have a zone <quote>Z</quote> with an RFC1918 subnet + and I use one-to-one NAT to assign non-RFC1918 addresses to hosts in + Z. Hosts in Z cannot communicate with each other using their external + (non-RFC1918 addresses) so they can't access each other using + their DNS names. + + + If the ALL INTERFACES column in /etc/shorewall/nat is empty or + contains Yes, you will also see log messages like the + following when trying to access a host in Z from another host in Z + using the destination hosts's public address: + + Oct 4 10:26:40 netgw kernel: + Shorewall:FORWARD:REJECT:IN=eth1 OUT=eth1 SRC=192.168.118.200 + DST=192.168.118.210 LEN=48 TOS=0x00 PREC=0x00 TTL=127 ID=1342 DF + PROTO=TCP SPT=1494 DPT=1491 WINDOW=17472 RES=0x00 ACK SYN URGP=0 + + + Answer: This is another problem + that is best solved using Bind Version 9 views. It + allows both external and internal clients to access a NATed host using + the host's DNS name. + + Another good way to approach this problem is to switch from + one-to-one NAT to Proxy ARP. That way, the hosts in Z have non-RFC1918 + addresses and can be accessed externally and internally using the same + address. + + If you don't like those solutions and prefer routing all + Z->Z traffic through your firewall then: + + + + Set the Z->Z policy to ACCEPT. + + + + Masquerade Z to itself. + + + + Set the routeback option on the interface to Z. + + + + Set the ALL INTERFACES column in the nat file to + Yes. + + + In this configuration, all Z->Z traffic will look to + the server as if it came from the firewall rather than from the + original client! I DO NOT RECOMMEND THIS SETUP. + + + + + + Example: + + Zone: dmz Interface: eth2 Subnet: 192.168.2.0/24 + + In /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +loc eth2 192.168.2.255 routeback + + In /etc/shorewall/policy: + + #SOURCE DESTINATION POLICY LIMIT:BURST +dmz dmz ACCEPT + + In /etc/shorewall/masq: + + #INTERFACE SUBNET ADDRESS +eth2 192.168.2.0/24 + + In /etc/shorewall/nat, be sure that you + have Yes in the ALL INTERFACES column. + +
+
+
+ +
+ Netmeeting/MSN + +
+ (FAQ 3) I want to use Netmeeting or MSN Instant Messenger with + Shorewall. What do I do? + + Answer: There is an H.323 + connection tracking/NAT module that helps with Netmeeting. Note + however that one of the Netfilter developers recently posted the + following: + +
+ > I know PoM -ng is going to address this issue, but till it is ready, and +> all the extras are ported to it, is there any way to use the h.323 +> contrack module kernel patch with a 2.6 kernel? +> Running 2.6.1 - no 2.4 kernel stuff on the system, so downgrade is not +> an option... The module is not ported yet to 2.6, sorry. +> Do I have any options besides a gatekeeper app (does not work in my +> network) or a proxy (would prefer to avoid them)? + +I suggest everyone to setup a proxy (gatekeeper) instead: the module is +really dumb and does not deserve to exist at all. It was an excellent tool +to debug/develop the newnat interface. +
+ + Look here + for a solution for MSN IM but be aware that there are significant + security risks involved with this solution. Also check the Netfilter + mailing list archives at http://www.netfilter.org. +
+
+ +
+ Open Ports + +
+ (FAQ 4) I just used an online port scanner to check my firewall + and it shows some ports as <quote>closed</quote> rather than + <quote>blocked</quote>. Why? + + Answer: (Shorewall versions prior + to 2.0.0 only). The common.def included with version 1.3.x always + rejects connection requests on TCP port 113 rather than dropping them. + This is necessary to prevent outgoing connection problems to services + that use the Auth mechanism for identifying requesting + users. Shorewall also rejects TCP ports 135, 137, 139 and 445 as well as + UDP ports 137-139. These are ports that are used by Windows (Windows + can be configured to use the DCE cell locator on + port 135). Rejecting these connection requests rather than dropping them + cuts down slightly on the amount of Windows chatter on LAN segments + connected to the Firewall. + + If you are seeing port 80 being closed, that's + probably your ISP preventing you from running a web server in violation + of your Service Agreement. + + + You can change the default behavior of Shorewall through use of + an /etc/shorewall/common file. See the Extension Script Section. + + + + Beginning with Shorewall 1.4.9, Shorewall no longer rejects the + Windows SMB ports (135-139 and 445) by default and silently drops them + instead. + + + Answer: (Shorewall versions 2.0.0 + and later). The default Shorewall setup invokes the Drop action prior to enforcing a DROP policy and + the default policy to all zone from the internet is DROP. The Drop + action is defined in /etc/shorewall/action.Drop + which in turn invokes the RejectAuth + action (defined in /etc/shorewall/action.RejectAuth). + This is necessary to prevent outgoing connection problems to services + that use the Auth mechanism for identifying requesting + users. That is the only service which the default setup rejects. + + If you are seeing closed TCP ports other than 113 (auth) then + either you have added rules to REJECT those ports or a router outside of + your firewall is responding to connection requests on those ports. + +
+ (FAQ 4a) I just ran an nmap UDP scan of my firewall and it + showed 100s of ports as open!!!! + + Answer: Take a deep breath and + read the nmap man page section about UDP scans. If nmap gets nothing back from your firewall then it reports + the port as open. If you want to see which UDP ports are really open, + temporarily change your net->all policy to REJECT, restart + Shorewall and do the nmap UDP scan again. +
+ +
+ (FAQ 4b) I have a port that I can't close no matter how I + change my rules. + + I had a rule that allowed telnet from my local network to my + firewall; I removed that rule and restarted Shorewall but my telnet + session still works!!! + + Answer: Rules only govern the + establishment of new connections. Once a connection is established + through the firewall it will be usable until disconnected (tcp) or + until it times out (other protocols). If you stop telnet and try to + establish a new session your firerwall will block that attempt. +
+ +
+ (FAQ 4c) How to I use Shorewall with PortSentry? + + Here's + a writeup on a nice integration of Shorewall and PortSentry. +
+
+
+ +
+ Connection Problems + +
+ (FAQ 5) I've installed Shorewall and now I can't ping + through the firewall + + Answer: For a complete + description of Shorewall ping management, see this page. +
+ +
+ (FAQ 15) My local systems can't see out to the net + + Answer: Every time I read + systems can't see out to the net, I wonder where the + poster bought computers with eyes and what those computers will + see when things are working properly. That aside, the + most common causes of this problem are: + + + + The default gateway on each local system isn't set to the + IP address of the local firewall interface. + + + + The entry for the local network in the /etc/shorewall/masq + file is wrong or missing. + + + + The DNS settings on the local systems are wrong or the user is + running a DNS server on the firewall and hasn't enabled UDP and + TCP port 53 from the firewall to the internet. + + +
+ +
+ (FAQ 29) FTP Doesn't Work + + See the Shorewall and FTP page. +
+ +
+ (FAQ 33) From clients behind the firewall, connections to some + sites fail. Connections to the same sites from the firewall itself work + fine. What's wrong. + + Answer: Most likely, you need to + set CLAMPMSS=Yes in /etc/shorewall/shorewall.conf. +
+ +
+ (FAQ 35) I have two Ethernet interfaces to my local network which + I have bridged. When Shorewall is started, I'm unable to pass + traffic through the bridge. I have defined the bridge interface (br0) as + the local interface in /etc/shorewall/interfaces; the bridged Ethernet + interfaces are not defined to Shorewall. How do I tell Shorewall to + allow traffic through the bridge? + + Answer: Add the routeback option to + br0 in /etc/shorewall/interfaces. +
+
+ +
+ Logging + +
+ (FAQ 6) Where are the log messages written and how do I change + the destination? + + Answer: NetFilter uses the + kernel's equivalent of syslog (see man syslog) to log + messages. It always uses the LOG_KERN (kern) facility (see + man openlog) and you get to choose the log level (again, + see man syslog) in your policies and rules. The destination for + messaged logged by syslog is controlled by /etc/syslog.conf + (see man syslog.conf). When you have changed + /etc/syslog.conf, be sure to restart syslogd (on a RedHat system, + service syslog restart). + + By default, older versions of Shorewall ratelimited log messages + through settings in + /etc/shorewall/shorewall.conf -- If you want to log + all messages, set: + + LOGLIMIT="" +LOGBURST="" + + Beginning with Shorewall version 1.3.12, you can set up Shorewall to log all of its messages + to a separate file. + +
+ (FAQ 6a) Are there any log parsers that work with Shorewall? + + Answer: Here are several links + that may be helpful: + + http://www.shorewall.net/pub/shorewall/parsefw/ +http://www.fireparse.com +http://cert.uni-stuttgart.de/projects/fwlogwatch +http://www.logwatch.org +http://gege.org/iptables +http://home.regit.org/ulogd-php.html + + I personally use Logwatch. It emails me a report each day from + my various systems with each report summarizing the logged activity on + the corresponding system. +
+ +
+ (FAQ 2b) DROP messages on port 10619 are flooding the logs with + their connect requests. Can i exclude these error messages for this + port temporarily from logging in Shorewall? + + Temporarily add the following rule: + + DROP net fw udp 10619 +
+ +
+ (FAQ 6c) All day long I get a steady flow of these DROP + messages from port 53 to some high numbered port. They get dropped, + but what the heck are they? + + Jan 8 15:50:48 norcomix kernel: + Shorewall:net2all:DROP:IN=eth0 OUT= + MAC=00:40:c7:2e:09:c0:00:01:64:4a:70:00:08:00 SRC=208.138.130.16 + DST=24.237.22.45 LEN=53 TOS=0x00 PREC=0x00 TTL=251 ID=8288 DF + PROTO=UDP SPT=53 DPT=40275 LEN=33 + + Answer: There are two + possibilities: + + + + They are late-arriving replies to DNS queries. + + + + They are corrupted reply packets. + + + + You can distinguish the difference by setting the logunclean option (/etc/shorewall/interfaces) + on your external interface (eth0 in the above example). If they get + logged twice, they are corrupted. I solve this problem by using an + /etc/shorewall/common file like this: + + # +# Include the standard common.def file +# +. /etc/shorewall/common.def +# +# The following rule is non-standard and compensates for tardy +# DNS replies +# +run_iptables -A common -p udp --sport 53 -mstate --state NEW -j DROP + + The above file is also include in all of my sample + configurations available in the Quick Start Guides and in + the common.def file in Shorewall 1.4.0 and later. +
+ +
+ (FAQ 6d) Why is the MAC address in Shorewall log messages so + long? I thought MAC addresses were only 6 bytes in length. + + What is labeled as the MAC address in a Shorewall log message is + actually the Ethernet frame header. It contains: + + + + the destination MAC address (6 bytes) + + + + the source MAC address (6 bytes) + + + + the ethernet frame type (2 bytes) + + + + ExampleMAC=00:04:4c:dc:e2:28:00:b0:8e:cf:3c:4c:08:00Destination + MAC address = 00:04:4c:dc:e2:28Source + MAC address = 00:b0:8e:cf:3c:4cEthernet + Frame Type = 08:00 (IP Version 4) +
+
+ +
+ (FAQ 16) Shorewall is writing log messages all over my console + making it unusable! + + Answer: If you are running + Shorewall version 1.4.4 or 1.4.4a then check the errata. + Otherwise: + + + + Find where klogd is being started (it will be from one of the + files in /etc/init.d -- sysklogd, klogd, ...). Modify that file or + the appropriate configuration file so that klogd is started with + -c <n> where + <n> is a log level of 5 or less; or + + + + See the dmesg man page (man dmesg). + You must add a suitable dmesg command to your startup + scripts or place it in /etc/shorewall/start. + + + + + Under RedHat and Mandrake, the max log level that is sent to the + console is specified in /etc/sysconfig/init in the LOGLEVEL variable. + Set LOGLEVEL=5 to suppress info (log level 6) messages + on the console. + + + + Under Debian, you can set KLOGD=-c 5 in + /etc/init.d/klogd to suppress info (log level 6) + messages on the console. + + + + Under SuSE, add -c 5 to KLOGD_PARAMS in + /etc/sysconfig/syslog to suppress info (log level 6) messages on the + console. + +
+ +
+ (FAQ 17) What does this log message mean? + + Answer: Logging occurs out of a + number of chains (as indicated in the log message) in Shorewall: + + + + man1918 or logdrop + + + The destination address is listed in /usr/share/shorewall/rfc1918 + with a logdrop target -- see + /usr/share/shorewall/rfc1918. + + + + + rfc1918 or logdrop + + + The source or destination address is listed in + /usr/share/shorewall/rfc1918 with a logdrop target -- see /usr/share/shorewall/rfc1918. + + + + + all2<zone>, <zone>2all or all2all + + + You have a policy + that specifies a log level and this packet is being logged under + that policy. If you intend to ACCEPT this traffic then you need a + rule to that effect. + + + + + <zone1>2<zone2> + + + Either you have a policy + for <zone1> to <zone2> that specifies a log level + and this packet is being logged under that policy or this packet + matches a rule that + includes a log level. + + + + + <interface>_mac + + + The packet is being logged under the maclist + interface option. + + + + + logpkt + + + The packet is being logged under the logunclean + interface option. + + + + + badpkt + + + The packet is being logged under the dropunclean + interface option + as specified in the LOGUNCLEAN + setting in /etc/shorewall/shorewall.conf. + + + + + blacklst + + + The packet is being logged because the source IP is + blacklisted in the /etc/shorewall/blacklist + file. + + + + + newnotsyn + + + The packet is being logged because it is a TCP packet that + is not part of any current connection yet it is not a syn packet. + Options affecting the logging of such packets include NEWNOTSYN and LOGNEWNOTSYN + in /etc/shorewall/shorewall.conf. + + + + + INPUT or FORWARD + + + The packet has a source IP address that isn't in any of + your defined zones (shorewall check and look at the + printed zone definitions) or the chain is FORWARD and the + destination IP isn't in any of your defined zones. Also see + for another cause of packets being logged + in the FORWARD chain. + + + + + logflags + + + The packet is being logged because it failed the checks + implemented by the tcpflags + interface option. + + + + + + Here is an example: + + Jun 27 15:37:56 gateway kernel: + Shorewall:all2all:REJECT:IN=eth2 OUT=eth1 SRC=192.168.2.2 + DST=192.168.1.3 LEN=67 TOS=0x00 PREC=0x00 TTL=63 ID=5805 DF PROTO=UDP + SPT=1803 DPT=53 LEN=47 + + Let's look at the important parts of this message: + + + + all2all:REJECT + + + This packet was REJECTed out of the all2all + chain -- the packet was rejected under the all->all + REJECT policy ( above). + + + + + IN=eth2 + + + the packet entered the firewall via eth2. If you see + IN= with no interface name, the packet originated + on the firewall itself. + + + + + OUT=eth1 + + + if accepted, the packet would be sent on eth1. If you see + OUT= with no interface name, the packet would be + processed by the firewall itself. + + + + + SRC=192.168.2.2 + + + the packet was sent by 192.168.2.2 + + + + + DST=192.168.1.3 + + + the packet is destined for 192.168.1.3 + + + + + PROTO=UDP + + + UDP Protocol + + + + + DPT=53 + + + The destination port is 53 (DNS) + + + + + For additional information about the log message, see http://logi.cc/linux/netfilter-log-format.php3. + + In this case, 192.168.2.2 was in the dmz zone and + 192.168.1.3 is in the loc zone. I was missing the rule: + + ACCEPT dmz loc udp 53 + +
+ +
+ (FAQ 21) I see these strange log entries occasionally; what are + they? + + Nov 25 18:58:52 linux kernel: + Shorewall:net2all:DROP:IN=eth1 OUT= + MAC=00:60:1d:f0:a6:f9:00:60:1d:f6:35:50:08:00 SRC=206.124.146.179 + DST=192.0.2.3 LEN=56 TOS=0x00 PREC=0x00 TTL=110 ID=18558 PROTO=ICMP + TYPE=3 CODE=3 [SRC=192.0.2.3 DST=172.16.1.10 LEN=128 TOS=0x00 PREC=0x00 + TTL=47 ID=0 DF PROTO=UDP SPT=53 DPT=2857 LEN=108 ] + + 192.0.2.3 is external on my firewall... 172.16.0.0/24 is my + internal LAN + + Answer: While most people + associate the Internet Control Message Protocol (ICMP) with + ping, ICMP is a key piece of the internet. ICMP is used + to report problems back to the sender of a packet; this is what is + happening here. Unfortunately, where NAT is involved (including SNAT, + DNAT and Masquerade), there are a lot of broken implementations. That is + what you are seeing with these messages. + + Here is my interpretation of what is happening -- to confirm this + analysis, one would have to have packet sniffers placed a both ends of + the connection. + + Host 172.16.1.10 behind NAT gateway 206.124.146.179 sent a UDP DNS + query to 192.0.2.3 and your DNS server tried to send a response (the + response information is in the brackets -- note source port 53 which + marks this as a DNS reply). When the response was returned to to + 206.124.146.179, it rewrote the destination IP TO 172.16.1.10 and + forwarded the packet to 172.16.1.10 who no longer had a connection on + UDP port 2857. This causes a port unreachable (type 3, code 3) to be + generated back to 192.0.2.3. As this packet is sent back through + 206.124.146.179, that box correctly changes the source address in the + packet to 206.124.146.179 but doesn't reset the DST IP in the + original DNS response similarly. When the ICMP reaches your firewall + (192.0.2.3), your firewall has no record of having sent a DNS reply to + 172.16.1.10 so this ICMP doesn't appear to be related to anything + that was sent. The final result is that the packet gets logged and + dropped in the all2all chain. I have also seen cases where the source IP + in the ICMP itself isn't set back to the external IP of the remote + NAT gateway; that causes your firewall to log and drop the packet out of + the rfc1918 chain because the source IP is reserved by RFC 1918. +
+
+ +
+ Routing + +
+ (FAQ 32) My firewall has two connections to the internet from two + different ISPs. How do I set this up in Shorewall? + + Setting this up in Shorewall is easy; setting up the routing is a + bit harder. + + Assuming that eth0 and + eth1 are the interfaces to the + two ISPs then: + + /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +net eth0 detect +net eth1 detect + + /etc/shorewall/policy: + + #SOURCE DESTINATION POLICY LIMIT:BURST +net net DROP + + If you have masqueraded hosts, be sure to update + /etc/shorewall/masq to masquerade to both ISPs. For + example, if you masquerade all hosts connected to eth2 then: + + #INTERFACE SUBNET ADDRESS +eth0 eth2 +eth1 eth2 + + There was an article in SysAdmin covering this topic. + It may be found at http://www.samag.com/documents/s=1824/sam0201h/ + + The following information regarding setting up routing + for this configuration is reproduced from the LARTC HOWTO and has not been verified + by the author. If you have questions or problems with the instructions + given below, please post to the LARTC mailing list. + + + A common configuration is the following, in which there are two + providers that connect a local network (or even a single machine) to + the big Internet. + + ________ + +------------+ / + | | | + +-------------+ Provider 1 +------- + __ | | | / + ___/ \_ +------+-------+ +------------+ | + _/ \__ | if1 | / + / \ | | | +| Local network -----+ Linux router | | Internet + \_ __/ | | | + \__ __/ | if2 | \ + \___/ +------+-------+ +------------+ | + | | | \ + +-------------+ Provider 2 +------- + | | | + +------------+ \________ + + + There are usually two questions given this setup. + + Split access + + The first is how to route answers to packets coming in over a + particular provider, say Provider 1, back out again over that same + provider. + + Let us first set some symbolical names. Let $IF1 be the name of the first interface (if1 in + the picture above) and $IF2 the name + of the second interface. Then let $IP1 + be the IP address associated with $IF1 + and $IP2 the IP address associated + with $IF2. Next, let $P1 be the IP address of the gateway at + Provider 1, and $P2 the IP address of + the gateway at provider 2. Finally, let $P1_NET + be the IP network $P1 is in, and + $P2_NET the IP network $P2 is in. + + One creates two additional routing tables, say T1 and T2. + These are added in /etc/iproute2/rt_tables. Then you set up routing in + these tables as follows: + + ip route add $P1_NET dev $IF1 src $IP1 table T1 +ip route add default via $P1 table T1 +ip route add $P2_NET dev $IF2 src $IP2 table T2 +ip route add default via $P2 table T2 + + Nothing spectacular, just build a route to the gateway and build + a default route via that gateway, as you would do in the case of a + single upstream provider, but put the routes in a separate table per + provider. Note that the network route suffices, as it tells you how to + find any host in that network, which includes the gateway, as + specified above. + + Next you set up the main routing table. It is a good idea to + route things to the direct neighbour through the interface connected + to that neighbour. Note the `src' arguments, they make sure the + right outgoing IP address is chosen. + + ip route add $P1_NET dev $IF1 src $IP1 +ip route add $P2_NET dev $IF2 src $IP2 + + Then, your preference for default route: + + ip route add default via $P1 + + Next, you set up the routing rules. These actually choose what + routing table to route with. You want to make sure that you route out + a given interface if you already have the corresponding source + address: + + ip rule add from $IP1 table T1 +ip rule add from $IP2 table T2 + + This set of commands makes sure all answers to traffic coming in + on a particular interface get answered from that interface. + + + 'If $P0_NET is the local network and $IF0 is its + interface, the following additional entries are desirable: + + ip route add $P0_NET dev $IF0 table T1 +ip route add $P2_NET dev $IF2 table T1 +ip route add 127.0.0.0/8 dev lo table T1 +ip route add $P0_NET dev $IF0 table T2 +ip route add $P1_NET dev $IF1 table T2 +ip route add 127.0.0.0/8 dev lo table T2 + + + Now, this is just the very basic setup. It will work for all + processes running on the router itself, and for the local network, if + it is masqueraded. If it is not, then you either have IP space from + both providers or you are going to want to masquerade to one of the + two providers. In both cases you will want to add rules selecting + which provider to route out from based on the IP address of the + machine in the local network. + + Load balancing + + The second question is how to balance traffic going out over the + two providers. This is actually not hard if you already have set up + split access as above. + + Instead of choosing one of the two providers as your default + route, you now set up the default route to be a multipath route. In + the default kernel this will balance routes over the two providers. It + is done as follows (once more building on the example in the section + on split-access): + + ip route add default scope global nexthop via $P1 dev $IF1 weight 1 \ + nexthop via $P2 dev $IF2 weight 1 + + This will balance the routes over both providers. The weight parameters can be tweaked to favor one + provider over the other. + + + balancing will not be perfect, as it is route based, and + routes are cached. This means that routes to often-used sites will + always be over the same provider. + + + Furthermore, if you really want to do this, you probably also + want to look at Julian Anastasov's patches at http://www.ssi.bg/~ja/#routes + , Julian's route patch page. They will make things nicer to work + with. + + + The following was contributed by Martin Brown and is an excerpt + from http://www.docum.org/stef.coene/qos/faq/cache/44.html. + + + There are two issues requiring different handling when dealing + with multiple Internet providers on a given network. The below assumes + that the host which has multiple Internet connections is a + masquerading (or NATting) host and is at the chokepoint between the + internal and external networks. For the use of multiple inbound + connections to the same internal server (public IP A from ISP A and + public IP B from ISP B both get redirected to the same internal + server), the ideal solution involves using two private IP addresses on + the internal server. This leads to an end-to-end uniqueness of public + IP to private IP and can be easily accomplished by following the + directions here: + + http://linux-ip.net/html/adv-multi-internet.html#adv-multi-internet-inbound + + For the use of multiple outbound links to the Internet, there + are a number of different techniques. The simplest is identified here: + + http://linux-ip.net/html/adv-multi-internet.html#adv-multi-internet-outbound + + Better (and more robust) techniques are available after a kernel + routing patch by Julian Anastasov. See the famous nano-howto. + + http://www.ssi.bg/~ja/ + +
+
+ +
+ Starting and Stopping + +
+ (FAQ 7) When I stop Shorewall using <quote>shorewall stop</quote>, + I can't connect to anything. Why doesn't that command work? + + The stop command is intended to + place your firewall into a safe state whereby only those hosts listed in + /etc/shorewall/routestopped' are activated. If + you want to totally open up your firewall, you must use the + shorewall clear command. +
+ +
+ (FAQ 8) When I try to start Shorewall on RedHat, I get messages + about insmod failing -- what's wrong? + + Answer: The output you will see + looks something like this: + + /lib/modules/2.4.17/kernel/net/ipv4/netfilter/ip_tables.o: init_module: Device or resource busy +Hint: insmod errors can be caused by incorrect module parameters, including invalid IO or IRQ parameters +/lib/modules/2.4.17/kernel/net/ipv4/netfilter/ip_tables.o: insmod +/lib/modules/2.4.17/kernel/net/ipv4/netfilter/ip_tables.o failed +/lib/modules/2.4.17/kernel/net/ipv4/netfilter/ip_tables.o: insmod ip_tables failed +iptables v1.2.3: can't initialize iptables table `nat': iptables who? (do you need to insmod?) +Perhaps iptables or your kernel needs to be upgraded. + + This problem is usually corrected through the following sequence + of commands + + service ipchains stop +chkconfig --delete ipchains +rmmod ipchains + + Also, be sure to check the errata + for problems concerning the version of iptables (v1.2.3) shipped with + RH7.2. + +
+ (FAQ 8a) When I try to start Shorewall on RedHat I get a + message referring me to FAQ #8 + + Answer: This is usually cured + by the sequence of commands shown above in . +
+
+ +
+ (FAQ 9) Why can't Shorewall detect my interfaces properly at + startup? + + I just installed Shorewall and when I issue the start command, I + see the following: + + Processing /etc/shorewall/params ... +Processing /etc/shorewall/shorewall.conf ... +Starting Shorewall... +Loading Modules... +Initializing... +Determining Zones... + Zones: net loc +Validating interfaces file... +Validating hosts file... +Determining Hosts in Zones... + Net Zone: eth0:0.0.0.0/0 + Local Zone: eth1:0.0.0.0/0 +Deleting user chains... +Creating input Chains... +... + + Why can't Shorewall detect my interfaces properly? + + Answer: The above output is + perfectly normal. The Net zone is defined as all hosts that are + connected through eth0 and the local zone is defined as all hosts + connected through eth1. If you + are running Shorewall 1.4.10 or later, you can consider setting the + detectnets + interface option on your local interface (eth1 in the above example). That will + cause Shorewall to restrict the local zone to only those networks routed + through that interface. +
+ +
+ (FAQ 22) I have some iptables commands that I want to run when + Shorewall starts. Which file do I put them in? + + You can place these commands in one of the Shorewall Extension Scripts. + Be sure that you look at the contents of the chain(s) that you will be + modifying with your commands to be sure that the commands will do what + they are intended. Many iptables commands published in HOWTOs and other + instructional material use the -A command which adds the rules to the + end of the chain. Most chains that Shorewall constructs end with an + unconditional DROP, ACCEPT or REJECT rule and any rules that you add + after that will be ignored. Check man iptables and look + at the -I (--insert) command. +
+ +
+ (FAQ 34) How can I speed up start (restart)? + + Using a light-weight shell such as ash can + dramatically decrease the time required to start + or restart Shorewall. See the + SHOREWALL_SHELL variable in shorewall.conf. + + Beginning with Shorewall version 2.0.2 Beta 1, Shorewall supports + a fast start capability. To use this capability: + + + + With Shorewall in the started state, run + shorewall save. This creates the script + /var/lib/shorewall/restore. + + + + Use the -f option to the + start command (e.g., shorewall -f start). This + causes Shorewall to look for the /var/lib/shorewall/restore + script and if that script exists, it is run. Running + /var/lib/shorewall/restore takes much less time + than a full shorewall start. + + + + The /etc/init.d/shorewall script that is + run at boot time uses the -f + option. + + + + The /var/lib/shorewall/restore script can + be run any time to restore the firewall. The script may be run + directly or it may be run indirectly using the shorewall + restore command. + + + + If you change your Shorewall configuration, you must execute a + shorewall start (without -f) or shorewall restart prior + to doing another shorewall save. The + shorewall save command saves the currently running + configuration and not the one reflected in your updated configuration + files. + + Likewise, if you change your Shorewall configuration then once you + are satisfied that it is working properly, you must do another + shorewall save. Otherwise at the next reboot, you + will revert to the old configuration stored in /var/lib/shorewall/restore. + +
+ (FAQ 34a) I get errors about a host or network not found when I + run<filename>/var/lib/shorewall/restore</filename>. The + <command>shorewall restore</command> and <command>shorewall -f start</command> + commands gives the same result. + + Answer: iptables 1.2.9 is broken with respect to iptables-save + and the connection tracking match extension. You must patch your + iptables using the patch available from the Shorewall + errata page. +
+
+
+ +
+ About Shorewall + +
+ (FAQ 10) What Distributions does it work with? + + Shorewall works with any GNU/Linux distribution that includes the + proper prerequisites. +
+ +
+ (FAQ 11) What Features does it have? + + Answer: See the Shorewall Feature List. +
+ +
+ (FAQ 12) Is there a GUI? + + Answer: Yes. Shorewall support is + included in Webmin 1.060 and later versions. See http://www.webmin.com +
+ +
+ (FAQ 13) Why do you call it <quote>Shorewall</quote>? + + Answer: Shorewall is a + concatenation of Shoreline (the city where I live) and + Firewall. The full name of the + product is actually Shoreline Firewall but + Shorewall is must more commonly used. +
+ +
+ (FAQ 23) Why do you use such ugly fonts on your web site? + + The Shorewall web site is almost font neutral (it doesn't + explicitly specify fonts except on a few pages) so the fonts you see are + largely the default fonts configured in your browser. If you don't + like them then reconfigure your browser. +
+ +
+ (FAQ 25) How to I tell which version of Shorewall I am running? + + At the shell prompt, type: + + /sbin/shorewall version +
+ +
+ (FAQ 31) Does Shorewall provide protection against.... + + + + IP Spoofing: Sending packets over the WAN interface using an + internal LAP IP address as the source address? + + + Answer: Yes. + + + + + Tear Drop: Sending packets that contain overlapping fragments? + + + Answer: This is the responsibility of the IP stack, not the + Netfilter-based firewall since fragment reassembly occurs before + the stateful packet filter ever touches each packet. + + + + + Smurf and Fraggle: Sending packets that use the WAN or LAN + broadcast address as the source address? + + + Answer: Shorewall can be configured to do that using the + blacklisting + facility. Shorewall versions 2.0.0 and later filter these packets + under the nosmurfs interface option in + /etc/shorewall/interfaces. + + + + + Land Attack: Sending packets that use the same address as the + source and destination address? + + + Answer: Yes, if the routefilter interface option + is selected. + + + + + DOS: - SYN Dos - ICMP Dos - Per-host Dos protection + + + Answer: Shorewall has facilities for limiting SYN and ICMP + packets. Netfilter as included in standard Linux kernels + doesn't support per-remote-host limiting except by explicit + rule that specifies the host IP address; that form of limiting is + supported by Shorewall. + + + +
+ +
+ Given that the Debian Stable Release includes Shorewall 1.2.12, + how can you not support that version? + + The first release of Shorewall was in March of 2001. Shorewall + 1.2.12 was released in May of 2002. It is now the year 2004 and + Shorewall 2.0 is available. Shorewall 1.2.12 is poorly documented and is + missing many of the features that Shorewall users find essential today + and it is silly to continue to run it simply because it is bundled with + an ancient Debian release. +
+ +
+ (FAQ 36) Does Shorewall Work with the 2.6 Linux Kernel? + + Shorewall works with the 2.6 Kernels with a couple of caveats: + + + + Netfilter/iptables doesn't fully support IPSEC in the 2.6 + Kernels -- there are interim instructions linked from the Shorewall IPSEC page. + + + + The 2.6 Kernels do not provide support for the logunclean and + dropunclean options in /etc/shorewall/interfaces. + Note that support for those options was also removed from Shorewall + in version 2.0.0. + + +
+
+ +
+ RFC 1918 + +
+ (FAQ 14) I'm connected via a cable modem and it has an + internal web server that allows me to configure/monitor it but as + expected if I enable rfc1918 blocking for my eth0 interface (the + internet one), it also blocks the cable modems web server. + + Is there any way it can add a rule before the rfc1918 blocking + that will let all traffic to and from the 192.168.100.1 address of the + modem in/out but still block all other rfc1918 addresses? + + Answer: If you are running a + version of Shorewall earlier than 1.3.1, create /etc/shorewall/start and + in it, place the following: + + run_iptables -I rfc1918 -s 192.168.100.1 -j ACCEPT + + If you are running version 1.3.1 or later, add the following to + /etc/shorewall/rfc1918 + (Note: If you are running Shorewall 2.0.0 or later, you may need to + first copy /usr/share/shorewall/rfc1918 to + /etc/shorewall/rfc1918): + + Be sure that you add the entry ABOVE the entry for 192.168.0.0/16. + + #SUBNET TARGET +192.168.100.1 RETURN + + + If you add a second IP address to your external firewall + interface to correspond to the modem address, you must also make an + entry in /etc/shorewall/rfc1918 for that address. For example, if you + configure the address 192.168.100.2 on your firewall, then you would + add two entries to /etc/shorewall/rfc1918: + + #SUBNET TARGET +192.168.100.1 RETURN +192.168.100.2 RETURN + + +
+ (FAQ 14a) Even though it assigns public IP addresses, my + ISP's DHCP server has an RFC 1918 address. If I enable RFC 1918 + filtering on my external interface, my DHCP client cannot renew its + lease. + + The solution is the same as above. + Simply substitute the IP address of your ISPs DHCP server. +
+
+
+ +
+ Alias IP Addresses/Virtual Interfaces + +
+ (FAQ 18) Is there any way to use aliased ip addresses with + Shorewall, and maintain separate rulesets for different IPs? + + Answer: Yes. See Shorewall and Aliased + Interfaces. +
+
+ +
+ Miscellaneous + +
+ (FAQ 19) I have added entries to /etc/shorewall/tcrules but they + don't seem to do anything. Why? + + You probably haven't set TC_ENABLED=Yes in + /etc/shorewall/shorewall.conf so the contents of the tcrules file are + simply being ignored. +
+ +
+ (FAQ 20) I have just set up a server. Do I have to change + Shorewall to allow access to my server from the internet? + + Yes. Consult the QuickStart + guide that you used during your initial setup for information + about how to set up rules for your server. +
+ +
+ (FAQ 24) How can I allow conections to let's say the ssh port + only from specific IP Addresses on the internet? + + In the SOURCE column of the rule, follow net by a + colon and a list of the host/subnet addresses as a comma-separated list. + + net:<ip1>,<ip2>,... + + + Example: + + ACCEPT net:192.0.2.16/28,192.0.2.44 fw tcp 22 + +
+ +
+ (FAQ 26) When I try to use any of the SYN options in nmap on or + behind the firewall, I get <quote>operation not permitted</quote>. How + can I use nmap with Shorewall?" + + Edit /etc/shorewall/shorewall.conf and change NEWNOTSYN=No + to NEWNOTSYN=Yes then restart Shorewall. + +
+ (FAQ 26a) When I try to use the <quote>-O</quote> option of + nmap from the firewall system, I get <quote>operation not permitted</quote>. + How do I allow this option? + + Add this command to your /etc/shorewall/start file: + + run_iptables -D OUTPUT -p ! icmp -m state --state INVALID -j DROP +
+
+ +
+ (FAQ 27) I'm compiling a new kernel for my firewall. What + should I look out for? + + First take a look at the Shorewall kernel + configuration page. You probably also want to be sure that you + have selected the NAT of local connections + (READ HELP) on the Netfilter Configuration menu. + Otherwise, DNAT rules with your firewall as the source zone won't + work with your new kernel. + +
+ (FAQ 27a) I just built and installed a new kernel and now + Shorewall won't start. I know that my kernel options are correct. + + The last few lines of a startup + trace are these: + + + run_iptables2 -t nat -A eth0_masq -s 192.168.2.0/24 -d 0.0.0.0/0 -j +MASQUERADE ++ '[' 'x-t nat -A eth0_masq -s 192.168.2.0/24 -d 0.0.0.0/0 -j +MASQUERADE' = 'x-t nat -A eth0_masq -s 192.168.2.0/24 -d 0.0.0. +0/0 -j MASQUERADE' ']' ++ run_iptables -t nat -A eth0_masq -s 192.168.2.0/24 -d 0.0.0.0/0 -j +MASQUERADE ++ iptables -t nat -A eth0_masq -s 192.168.2.0/24 -d 0.0.0.0/0 -j +MASQUERADE +iptables: Invalid argument ++ '[' -z '' ']' ++ stop_firewall ++ set +x + + Answer: Your new kernel + contains headers that are incompatible with the ones used to compile + your iptables utility. You need to rebuild + iptables using your new kernel source. +
+
+ +
+ (FAQ 28) How do I use Shorewall as a Bridging Firewall? + + Experimental Shorewall Bridging Firewall support is available — + check here for details. +
+
+ + + Revision History + + 1.272004-06-18TECorrect + formatting in H323 quote.1.262004-05-18TEDelete + obsolete ping information.1.252004-05-18TEEmpty + /etc/shorewall on Debian.1.252004-05-08TEUpdate + for Shorewall 2.0.21.242004-04-25TEAdd + MA Brown's notes on multi-ISP routing.1.232004-04-22TERefined + SNAT rule in FAQ #2.1.222004-04-06TEAdded + FAQ 36.1.212004-03-05TEAdded + Bridging link.1.202004-02-27TEAdded + FAQ 35.1.192004-02-22TEAdded + mention of nosmurfs option under FAQ 31.1.182004-02-15TEAdded + FAQ 34.1.172004-02-11TEAdded + FAQ 33.1.162004-02-03TEUpdated + for Shorewall 2.0.1.152004-01-25TEUpdated + FAQ 32 to mention masquerading. Remove tables.1.142004-01-24TEAdded + FAQ 27a regarding kernel/iptables incompatibility.1.132004-01-24TEAdd + a note about the detectnets interface + option in FAQ 9.1.122004-01-20TEImprove + FAQ 16 answer.1.112004-01-14TECorrected + broken link1.102004-01-09TEAdded + a couple of more legacy FAQ numbers.1.92004-01-08TECorrected + typo in FAQ 26a. Added warning to FAQ 2 regarding source address of + redirected requests.1.82003-12-31TEAdditions + to FAQ 4.1.72003-12-30TERemove + dead link from FAQ 1.1.62003.12-18TEAdd + external link reference to FAQ 17.1.52003-12-16TEAdded + a link to a Sys Admin article about multiple internet interfaces. Added + Legal Notice. Moved "abstract" to the body of the document. Moved + Revision History to this Appendix.1.42003-12-13TECorrected + formatting problems1.32003-12-10TEChanged + the title of FAQ 171.22003-12-09TEAdded + Copyright and legacy FAQ numbers1.12003-12-04MNConverted + to Simplified DocBook XML1.02002-08-13TEInitial + revision + +
\ No newline at end of file diff --git a/Shorewall-docsN/FTP.xml b/Shorewall-docsN/FTP.xml new file mode 100644 index 000000000..0d11ccf5c --- /dev/null +++ b/Shorewall-docsN/FTP.xml @@ -0,0 +1,370 @@ + + +
+ + + + Shorewall and FTP + + + + Tom + + Eastep + + + + 2004-05-19 + + + 2003 + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + If you are running Mandrake 9.1 or 9.2 and are having problems with + FTP, you have three choices: + + + + Edit /usr/share/shorewall/firewall and replace this line: + + for suffix in o gz ko ; do + + with + + for suffix in o gz ko o.gz ; do + + and at a root shell prompt: + + shorewall restart + + + + Install the Mandrake cooker version of Shorewall. + + + + Upgrade to Shorewall 1.4.7 or later. + + + + + + Mandrake have done it again with their 10.0 + release. This time, they have decided that kernel modules should have + "ko.gz" for their suffix. If you are having problems with Mandrake + 10.0 and FTP, change your /etc/shorewall/conf file + definition of MODULE_SUFFIX as follows: + + MODULE_SUFFIX="o gz ko o.gz ko.gz" + + The version of insmod shipped with 10.0 also does + not comprehend these module files so you will also need Shorewall 2.0.2 or + later OR you need to change /usr/share/shorewall/firewall + -- replace the line that reads: + + insmod $modulefile $* + + with: + + modprobe $modulename $* + + +
+ FTP Protocol + + FTP transfers involve two TCP connections. The first control connection goes from the FTP client to port + 21 on the FTP server. This connection is used for logon and to send + commands and responses between the endpoints. Data transfers (including + the output of ls and dir commands) requires + a second data connection. The data + connection is dependent on the mode that + the client is operating in: + + + + Passive Mode + + + (often the default for web browsers) -- The client issues a + PASV command. Upon receipt of this command, the server listens on a + dynamically-allocated port then sends a PASV reply to the client. + The PASV reply gives the IP address and port number that the server + is listening on. The client then opens a second connection to that + IP address and port number. + + + + + Active Mode + + + (often the default for line-mode clients) -- The client + listens on a dynamically-allocated port then sends a PORT command to + the server. The PORT command gives the IP address and port number + that the client is listening on. The server then opens a connection + to that IP address and port number; the source + port for this connection is 20 (ftp-data in + /etc/services). + + + + + You can see these commands in action using your linux ftp + command-line client in debugging mode. Note that my ftp client defaults to + passive mode and that I can toggle between passive and active mode by + issuing a passive command: + + [teastep@wookie Shorewall]$ ftp ftp1.shorewall.net +Connected to lists.shorewall.net. +220-=(<*>)=-.:. (( Welcome to PureFTPd 1.0.12 )) .:.-=(<*>)=- +220-You are user number 1 of 50 allowed. +220-Local time is now 10:21 and the load is 0.14. Server port: 21. +220 You will be disconnected after 15 minutes of inactivity. +500 Security extensions not implemented +500 Security extensions not implemented +KERBEROS_V4 rejected as an authentication type +Name (ftp1.shorewall.net:teastep): ftp +331-Welcome to ftp.shorewall.net +331- +331 Any password will work +Password: +230 Any password will work +Remote system type is UNIX. +Using binary mode to transfer files. +ftp> debug +Debugging on (debug=1). +ftp> ls +---> PASV +227 Entering Passive Mode (192,168,1,193,195,210) +---> LIST +150 Accepted data connection +drwxr-xr-x 5 0 0 4096 Nov 9 2002 archives +drwxr-xr-x 2 0 0 4096 Feb 12 2002 etc +drwxr-sr-x 6 0 50 4096 Feb 19 15:24 pub +226-Options: -l +226 3 matches total +ftp> passive +Passive mode off. +ftp> ls +---> PORT 192,168,1,3,142,58 +200 PORT command successful +---> LIST +150 Connecting to port 36410 +drwxr-xr-x 5 0 0 4096 Nov 9 2002 archives +drwxr-xr-x 2 0 0 4096 Feb 12 2002 etc +drwxr-sr-x 6 0 50 4096 Feb 19 15:24 pub +226-Options: -l +226 3 matches total +ftp> + + Things to notice: + + + + The commands that I issued are strongly + emphasized. + + + + Commands sent by the client to the server are preceded by + ---> + + + + Command responses from the server over the control connection + are numbered. + + + + FTP uses a comma as a separator between the bytes of the IP + address; and + + + + When sending a port number, FTP sends the MSB then the LSB and + separates the two bytes by a comma. As shown in the PORT command, port + 142,58 translates to 142*256+58 = 36410. + + +
+ +
+ Linux FTP connection-tracking + + Given the normal loc->net policy of ACCEPT, passive mode access + from local clients to remote servers will always work but active mode + requires the firewall to dynamically open a hole for the + server's connection back to the client. Similarly, if you are running + an FTP server in your local zone then active mode should always work but + passive mode requires the firewall to dynamically open a hole + for the client's second connection to the server. This is the role of + FTP connection-tracking support in the Linux kernel. + + Where any form of NAT (SNAT, DNAT, Masquerading) on your firewall is + involved, the PORT commands and PASV responses may also need to be + modified by the firewall. This is the job of the FTP nat support kernel + function. + + Including FTP connection-tracking and NAT support normally means + that the modules ip_conntrack_ftp and ip_nat_ftp + need to be loaded. Shorewall automatically loads these helper + modules from /lib/modules/<kernel-version>/kernel/net/ipv4/netfilter/ + and you can determine if they are loaded using the lsmod + command. The <kernel-version> may be obtained + by typing + + uname -r + + + + + [root@lists etc]# lsmod +Module Size Used by Not tainted +autofs 12148 0 (autoclean) (unused) +ipt_TOS 1560 12 (autoclean) +ipt_LOG 4120 5 (autoclean) +ipt_REDIRECT 1304 1 (autoclean) +ipt_REJECT 3736 4 (autoclean) +ipt_state 1048 13 (autoclean) +ip_nat_irc 3152 0 (unused) +ip_nat_ftp 3888 0 (unused) +ip_conntrack_irc 3984 1 +ip_conntrack_ftp 5008 1 +ipt_multiport 1144 2 (autoclean) +ipt_conntrack 1592 0 (autoclean) +iptable_filter 2316 1 (autoclean) +iptable_mangle 2680 1 (autoclean) +iptable_nat 20568 3 (autoclean) [ipt_REDIRECT ip_nat_irc ip_nat_ftp] +ip_conntrack 26088 5 (autoclean) [ipt_REDIRECT ipt_state ip_nat_irc + ip_nat_ftp ip_conntrack_irc ip_conntrack_ftp + ipt_conntrack iptable_nat] +ip_tables 14488 12 [ipt_TOS ipt_LOG ipt_REDIRECT ipt_REJECT ipt_state + ipt_multiport ipt_conntrack iptable_filter + iptable_mangle iptable_nat] +tulip 42464 0 (unused) +e100 50596 1 +keybdev 2752 0 (unused) +mousedev 5236 0 (unused) +hid 20868 0 (unused) +input 5632 0 [keybdev mousedev hid] +usb-uhci 24684 0 (unused) +usbcore 73280 1 [hid usb-uhci] +ext3 64704 2 +jbd 47860 2 [ext3] +[root@lists etc]# + + + If you want Shorewall to load these modules from an alternate + directory, you need to set the MODULESDIR variable in + /etc/shorewall/shorewall.conf to point to that directory. + + If your FTP helper modules are compressed and have the names + ip_nat_ftp.o.gz and ip_conntrack_ftp.o.gz then you + will need Shorewall 1.4.7 or later if you want Shorewall to load them for + you. If your helper modules have names ip_nat_ftp.ko.gz and + ip_conntrack_ftp.ko.gz then you will need Shorewall 2.0.2 or + later if you want Shorewall to load them for you. +
+ +
+ FTP on Non-standard Ports + + The above discussion about commands and responses makes it clear + that the FTP connection-tracking and NAT helpers must scan the traffic on + the control connection looking for PASV and PORT commands as well as PASV + responses. If you run an FTP server on a nonstandard port or you need to + access such a server, you must therefore let the helpers know by + specifying the port in /etc/shorewall/modules entries for the helpers. + You must have modularized FTP connection tracking support + in order to use FTP on a non-standard port. + + + if you run an FTP server that listens on port 49 or you need to + access a server on the internet that listens on that port then you would + have: + + loadmodule ip_conntrack_ftp ports=21,49 +loadmodule ip_nat_ftp ports=21,49 + + you MUST include port 21 in the ports list or you may + have problems accessing regular FTP servers. + + If there is a possibility that these modules might be loaded + before Shorewall starts, then you should include the port list in + /etc/modules.conf: + + options ip_conntrack_ftp ports=21,49 +options ip_nat_ftp ports=21,49 + + Once you have made these changes to + /etc/shorewall/modules and/or /etc/modules.conf, you must either:Unload + the modules and restart shorewall:rmmod ip_nat_ftp; rmmod ip_conntrack_ftp; shorewall restartReboot + +
+ +
+ Rules + + If the policy from the source zone to the destination zone is ACCEPT + and you don't need DNAT (see FAQ 30) + then you need no rule. + + Otherwise, for FTP you need exactly one + rule: + + #ACTION SOURCE DESTINATION PROTO PORT(S) SOURCE ORIGINAL +# PORT(S) DESTINATION +ACCEPT or <source> <destination> tcp 21 <external IP addr> if +DNAT ACTION = DNAT + + You need an entry in the ORIGINAL DESTINATION column only if the + ACTION is DNAT, you have multiple external IP addresses and you want a + specific IP address to be forwarded to your server. + + Note that you do NOT need a rule + with 20 (ftp-data) in the PORT(S) column. If you post your rules on the + mailing list and they show 20 in the PORT(S) column, I will know that you + haven't read this article and I will either ignore your post or tell + you to RTFM.Server running behind a Masquerading GatewaySuppose + that you run an FTP server on 192.168.1.5 in your local zone using the + standard port (21). You need this rule: #ACTION SOURCE DESTINATION PROTO PORT(S) SOURCE ORIGINAL +# PORT(S) DESTINATION +DNAT net loc:192.168.1.5 tcp 21Allow + your DMZ FTP access to the Internet#ACTION SOURCE DESTINATION PROTO PORT(S) SOURCE ORIGINAL +# PORT(S) DESTINATION +ACCEPT dmz net tcp 21 + + Note that the FTP connection tracking in the kernel cannot handle + cases where a PORT command (or PASV reply) is broken across two packets. + When such cases occur, you will see a console message similar to this one: + + Apr 28 23:55:09 gateway kernel: conntrack_ftp: partial PORT 715014972+1 + + I see this problem occasionally with the FTP server in my DMZ. My + solution is to add the following rule: + + #ACTION SOURCE DESTINATION PROTO PORT(S) SOURCE ORIGINAL +# PORT(S) DESTINATION +ACCEPT:info dmz net tcp - 20 + + The above rule accepts and logs all active mode connections from my + DMZ to the net. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/GenericTunnels.xml b/Shorewall-docsN/GenericTunnels.xml new file mode 100644 index 000000000..a89334e79 --- /dev/null +++ b/Shorewall-docsN/GenericTunnels.xml @@ -0,0 +1,292 @@ + + +
+ + + + Generic Tunnels + + + + Tom + + Eastep + + + + 2003-08-09 + + + 2001 + + 2002 + + 2003 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + Shorewall includes built-in support for a wide range of VPN solutions. + If you have need for a tunnel type that does not have explicit support, you + can generally describe the tunneling software using generic tunnels. + +
+ Bridging two Masqueraded Networks + + Suppose that we have the following situation: + + + + We want systems in the 192.168.1.0/24 subnetwork to be able to + communicate with the systems in the 10.0.0.0/8 network. This is + accomplished through use of the /etc/shorewall/tunnels file, the + /etc/shorewall/policy file and the /etc/shorewall/tunnel script that is + included with Shorewall. + + Suppose that you have tunneling software that uses two different + protocols: + + + + TCP port 1071 + + + + GRE (Protocol 47) + + + + The tunnel interface on system A is tun0 and the + tunnel interface on system B is also tun0. + + + + On each firewall, you will need to declare a zone to represent the + remote subnet. We'll assume that this zone is called vpn + and declare it in /etc/shorewall/zones on both systems as follows. + + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + vpn + + VPN + + Remote Subnet + + + + + + On system A, the 10.0.0.0/8 will comprise the vpn + zone. In /etc/shorewall/interfaces: + + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + vpn + + tun0 + + 10.255.255.255 + + + + + + + + In /etc/shorewall/tunnels on system A, we need the following: + + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + generic:tcp:1071 + + net + + 134.28.54.2 + + + + + + generic:47 + + net + + 134.28.54.2 + + + + + + + + These entries in /etc/shorewall/tunnels, opens the firewall so that + TCP port 1071 and the Generalized Routing Encapsulation Protocol (47) will + be accepted to/from the remote gateway. + + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + vpn + + tun0 + + 192.168.1.255 + + + + + + + + In /etc/shorewall/tunnels on system B, we have: + + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + generic:tcp:1071 + + net + + 206.191.148.9 + + + + + + generic:47 + + net + + 134.28.54.2 + + + + + + + + You will need to allow traffic between the vpn zone + and the loc zone on both systems -- if you simply want to + admit all traffic in both directions, you can use the policy file: + + + + + + SOURCE + + DEST + + POLICY + + LOG LEVEL + + + + + + loc + + vpn + + ACCEPT + + + + + + vpn + + loc + + ACCEPT + + + + + + + + On both systems, restart Shorewall and start your VPN software on + each system. The systems in the two masqueraded subnetworks can now talk + to each other +
+
\ No newline at end of file diff --git a/Shorewall-docsN/GnuCopyright.xml b/Shorewall-docsN/GnuCopyright.xml new file mode 100644 index 000000000..ace9b4f87 --- /dev/null +++ b/Shorewall-docsN/GnuCopyright.xml @@ -0,0 +1,434 @@ + + + +GNU Free Documentation License +Version 1.2, November 2002 + + + +
PREAMBLE + +The purpose of this License is to make a manual, textbook, or +other functional and useful document "free" in the sense of freedom: to +assure everyone the effective freedom to copy and redistribute it, with +or without modifying it, either commercially or noncommercially. +Secondarily, this License preserves for the author and publisher a way +to get credit for their work, while not being considered responsible for +modifications made by others. + +This License is a kind of "copyleft", which means that derivative +works of the document must themselves be free in the same sense. It +complements the GNU General Public License, which is a copyleft license +designed for free software. + +We have designed this License in order to use it for manuals for +free software, because free software needs free documentation: a free +program should come with manuals providing the same freedoms that the +software does. But this License is not limited to software manuals; it +can be used for any textual work, regardless of subject matter or +whether it is published as a printed book. We recommend this License +principally for works whose purpose is instruction or reference. +
+ +
APPLICABILITY AND DEFINITIONS + +This License applies to any manual or other work, in +any medium, that contains a notice placed by the copyright holder saying +it can be distributed under the terms of this License. Such a notice +grants a world-wide, royalty-free license, unlimited in duration, to use +that work under the conditions stated herein. The "Document", below, +refers to any such manual or work. Any member of the public is a +licensee, and is addressed as "you". You accept the license if you +copy, modify or distribute the work in a way requiring permission under +copyright law. + +A "Modified Version" of the Document means any +work containing the Document or a portion of it, either copied verbatim, +or with modifications and/or translated into another language. + +A "Secondary Section" is a named appendix or +a front-matter section of the Document that deals exclusively with the +relationship of the publishers or authors of the Document to the +Document's overall subject (or to related matters) and contains nothing +that could fall directly within that overall subject. (Thus, if the +Document is in part a textbook of mathematics, a Secondary Section may +not explain any mathematics.) The relationship could be a matter of +historical connection with the subject or with related matters, or of +legal, commercial, philosophical, ethical or political position +regarding them. + +The "Invariant Sections" are certain Secondary +Sections whose titles are designated, as being those of Invariant +Sections, in the notice that says that the Document is released under +this License. If a section does not fit the above definition of +Secondary then it is not allowed to be designated as Invariant. The +Document may contain zero Invariant Sections. If the Document does not +identify any Invariant Sections then there are none. + +The "Cover Texts" are certain short passages of +text that are listed, as Front-Cover Texts or Back-Cover Texts, in the +notice that says that the Document is released under this License. A +Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at +most 25 words. + +A "Transparent" copy of the Document means a +machine-readable copy, represented in a format whose specification is +available to the general public, that is suitable for revising the +document straightforwardly with generic text editors or (for images +composed of pixels) generic paint programs or (for drawings) some widely +available drawing editor, and that is suitable for input to text +formatters or for automatic translation to a variety of formats suitable +for input to text formatters. A copy made in an otherwise Transparent +file format whose markup, or absence of markup, has been arranged to +thwart or discourage subsequent modification by readers is not +Transparent. An image format is not Transparent if used for any +substantial amount of text. A copy that is not "Transparent" is called +"Opaque". + +Examples of suitable formats for Transparent copies include plain +ASCII without markup, Texinfo input format, LaTeX input format, SGML or +XML using a publicly available DTD, and standard-conforming simple HTML, +PostScript or PDF designed for human modification. Examples of +transparent image formats include PNG, XCF and JPG. Opaque formats +include proprietary formats that can be read and edited only by +proprietary word processors, SGML or XML for which the DTD and/or +processing tools are not generally available, and the machine-generated +HTML, PostScript or PDF produced by some word processors for output +purposes only. + +The "Title Page" means, for a printed book, +the title page itself, plus such following pages as are needed to hold, +legibly, the material this License requires to appear in the title page. +For works in formats which do not have any title page as such, "Title +Page" means the text near the most prominent appearance of the work's +title, preceding the beginning of the body of the text. + +A section "Entitled XYZ" means a named subunit +of the Document whose title either is precisely XYZ or contains XYZ in +parentheses following text that translates XYZ in another language. +(Here XYZ stands for a specific section name mentioned below, such as +"Acknowledgements", "Dedications", "Endorsements", or "History".) To +"Preserve the Title" of such a section when you modify the Document +means that it remains a section "Entitled XYZ" according to this +definition. + +The Document may include Warranty Disclaimers next to the notice +which states that this License applies to the Document. These Warranty +Disclaimers are considered to be included by reference in this License, +but only as regards disclaiming warranties: any other implication that +these Warranty Disclaimers may have is void and has no effect on the +meaning of this License. +
+ +
VERBATIM COPYING + +You may copy and distribute the Document in any medium, either +commercially or noncommercially, provided that this License, the +copyright notices, and the license notice saying this License applies to +the Document are reproduced in all copies, and that you add no other +conditions whatsoever to those of this License. You may not use +technical measures to obstruct or control the reading or further copying +of the copies you make or distribute. However, you may accept +compensation in exchange for copies. If you distribute a large enough +number of copies you must also follow the conditions in section 3. + + +You may also lend copies, under the same conditions stated above, +and you may publicly display copies. +
+ +
COPYING IN QUANTITY + +If you publish printed copies (or copies in media that commonly +have printed covers) of the Document, numbering more than 100, and the +Document's license notice requires Cover Texts, you must enclose the +copies in covers that carry, clearly and legibly, all these Cover Texts: +Front-Cover Texts on the front cover, and Back-Cover Texts on the back +cover. Both covers must also clearly and legibly identify you as the +publisher of these copies. The front cover must present the full title +with all words of the title equally prominent and visible. You may add +other material on the covers in addition. Copying with changes limited +to the covers, as long as they preserve the title of the Document and +satisfy these conditions, can be treated as verbatim copying in other +respects. + +If the required texts for either cover are too voluminous to fit +legibly, you should put the first ones listed (as many as fit +reasonably) on the actual cover, and continue the rest onto adjacent +pages. + +If you publish or distribute Opaque copies of the Document +numbering more than 100, you must either include a machine-readable +Transparent copy along with each Opaque copy, or state in or with each +Opaque copy a computer-network location from which the general +network-using public has access to download using public-standard +network protocols a complete Transparent copy of the Document, free of +added material. If you use the latter option, you must take reasonably +prudent steps, when you begin distribution of Opaque copies in quantity, +to ensure that this Transparent copy will remain thus accessible at the +stated location until at least one year after the last time you +distribute an Opaque copy (directly or through your agents or retailers) +of that edition to the public. + +It is requested, but not required, that you contact the authors of +the Document well before redistributing any large number of copies, to +give them a chance to provide you with an updated version of the +Document. +
+ +
MODIFICATIONS + +You may copy and distribute a Modified Version of the Document +under the conditions of sections 2 and 3 above, provided that you +release the Modified Version under precisely this License, with the +Modified Version filling the role of the Document, thus licensing +distribution and modification of the Modified Version to whoever +possesses a copy of it. In addition, you must do these things in the +Modified Version: + + +Use in the Title Page (and on the covers, if any) a + title distinct from that of the Document, and from those of previous + versions (which should, if there were any, be listed in the History + section of the Document). You may use the same title as a previous + version if the original publisher of that version gives permission. + +List on the Title Page, as authors, one or more + persons or entities responsible for authorship of the modifications in + the Modified Version, together with at least five of the principal + authors of the Document (all of its principal authors, if it has fewer + than five), unless they release you from this requirement. + +State on the Title page the name of the publisher of + the Modified Version, as the publisher. +Preserve all the copyright notices of the Document. + +Add an appropriate copyright notice for your + modifications adjacent to the other copyright notices. + +Include, immediately after the copyright notices, a + license notice giving the public permission to use the Modified + Version under the terms of this License, in the form shown in the + Addendum below. + +Preserve in that license notice the full lists of + Invariant Sections and required Cover Texts given in the Document's + license notice. +Include an unaltered copy of this License. + +Preserve the section Entitled "History", Preserve its + Title, and add to it an item stating at least the title, year, new + authors, and publisher of the Modified Version as given on the Title + Page. If there is no section Entitled "History" in the Document, + create one stating the title, year, authors, and publisher of the + Document as given on its Title Page, then add an item describing the + Modified Version as stated in the previous sentence. + +Preserve the network location, if any, given in the + Document for public access to a Transparent copy of the Document, and + likewise the network locations given in the Document for previous + versions it was based on. These may be placed in the "History" + section. You may omit a network location for a work that was + published at least four years before the Document itself, or if the + original publisher of the version it refers to gives permission. + +For any section Entitled "Acknowledgements" or + "Dedications", Preserve the Title of the section, and preserve in the + section all the substance and tone of each of the contributor + acknowledgements and/or dedications given therein. + +Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers or the + equivalent are not considered part of the section titles. + +Delete any section Entitled "Endorsements". + Such a section may not be included in the Modified Version. + +Do not retitle any existing section to be Entitled + "Endorsements" or to conflict in title with any Invariant Section. + +Preserve any Warranty Disclaimers. + + + +If the Modified Version includes new front-matter sections or +appendices that qualify as Secondary Sections and contain no material +copied from the Document, you may at your option designate some or all +of these sections as invariant. To do this, add their titles to the +list of Invariant Sections in the Modified Version's license notice. +These titles must be distinct from any other section titles. + +You may add a section Entitled "Endorsements", provided it +contains nothing but endorsements of your Modified Version by various +parties--for example, statements of peer review or that the text has +been approved by an organization as the authoritative definition of a +standard. + +You may add a passage of up to five words as a Front-Cover Text, +and a passage of up to 25 words as a Back-Cover Text, to the end of the +list of Cover Texts in the Modified Version. Only one passage of +Front-Cover Text and one of Back-Cover Text may be added by (or through +arrangements made by) any one entity. If the Document already includes +a cover text for the same cover, previously added by you or by +arrangement made by the same entity you are acting on behalf of, you may +not add another; but you may replace the old one, on explicit permission +from the previous publisher that added the old one. + +The author(s) and publisher(s) of the Document do not by this +License give permission to use their names for publicity for or to +assert or imply endorsement of any Modified Version. +
+ +
COMBINING DOCUMENTS + +You may combine the Document with other documents released under +this License, under the terms defined in section +4 above for modified versions, provided that you include in the +combination all of the Invariant Sections of all of the original +documents, unmodified, and list them all as Invariant Sections of your +combined work in its license notice, and that you preserve all their +Warranty Disclaimers. + +The combined work need only contain one copy of this License, and +multiple identical Invariant Sections may be replaced with a single +copy. If there are multiple Invariant Sections with the same name but +different contents, make the title of each such section unique by adding +at the end of it, in parentheses, the name of the original author or +publisher of that section if known, or else a unique number. Make the +same adjustment to the section titles in the list of Invariant Sections +in the license notice of the combined work. + +In the combination, you must combine any sections Entitled +"History" in the various original documents, forming one section +Entitled "History"; likewise combine any sections Entitled +"Acknowledgements", and any sections Entitled "Dedications". You must +delete all sections Entitled "Endorsements". +
+ +
COLLECTIONS OF DOCUMENTS + +You may make a collection consisting of the Document and other +documents released under this License, and replace the individual copies +of this License in the various documents with a single copy that is +included in the collection, provided that you follow the rules of this +License for verbatim copying of each of the documents in all other +respects. + +You may extract a single document from such a collection, and +distribute it individually under this License, provided you insert a +copy of this License into the extracted document, and follow this +License in all other respects regarding verbatim copying of that +document. +
+ +
AGGREGATION WITH INDEPENDENT WORKS + +A compilation of the Document or its derivatives with other +separate and independent documents or works, in or on a volume of a +storage or distribution medium, is called an "aggregate" if the +copyright resulting from the compilation is not used to limit the legal +rights of the compilation's users beyond what the individual works +permit. When the Document is included in an aggregate, this License does +not apply to the other works in the aggregate which are not themselves +derivative works of the Document. + +If the Cover Text requirement of section 3 is applicable to these +copies of the Document, then if the Document is less than one half of +the entire aggregate, the Document's Cover Texts may be placed on covers +that bracket the Document within the aggregate, or the electronic +equivalent of covers if the Document is in electronic form. Otherwise +they must appear on printed covers that bracket the whole +aggregate. +
+ +
TRANSLATION + +Translation is considered a kind of modification, so you may +distribute translations of the Document under the terms of section 4. +Replacing Invariant Sections with translations requires special +permission from their copyright holders, but you may include +translations of some or all Invariant Sections in addition to the +original versions of these Invariant Sections. You may include a +translation of this License, and all the license notices in the +Document, and any Warranty Disclaimers, provided that you also include +the original English version of this License and the original versions +of those notices and disclaimers. In case of a disagreement between the +translation and the original version of this License or a notice or +disclaimer, the original version will prevail. + +If a section in the Document is Entitled "Acknowledgements", +"Dedications", or "History", the requirement (section 4) to Preserve its +Title (section 1) will typically require changing the actual +title. +
+ +
TERMINATION + +You may not copy, modify, sublicense, or distribute the Document +except as expressly provided for under this License. Any other attempt +to copy, modify, sublicense or distribute the Document is void, and will +automatically terminate your rights under this License. However, +parties who have received copies, or rights, from you under this License +will not have their licenses terminated so long as such parties remain +in full compliance. +
+ +
FUTURE REVISIONS OF THIS LICENSE + +The Free Software Foundation may publish new, revised versions of +the GNU Free Documentation License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in +detail to address new problems or concerns. See +http://www.gnu.org/copyleft/. + +Each version of the License is given a distinguishing version +number. If the Document specifies that a particular numbered version of +this License "or any later version" applies to it, you have the option +of following the terms and conditions either of that specified version +or of any later version that has been published (not as a draft) by the +Free Software Foundation. If the Document does not specify a version +number of this License, you may choose any version ever published (not +as a draft) by the Free Software Foundation. +
+ +
ADDENDUM: How to use this License for + your documents + +To use this License in a document you have written, include a copy +of the License in the document and put the following copyright and +license notices just after the title page: + + + +If you have Invariant Sections, Front-Cover Texts and Back-Cover +Texts, replace the "with...Texts." line with this: + +
+ with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. +
+ +If you have Invariant Sections without Cover Texts, or some other +combination of the three, merge those two alternatives to suit the +situation. + +If your document contains nontrivial examples of program code, we +recommend releasing these examples in parallel under your choice of free +software license, such as the GNU General Public License, to permit +their use in free software. +
+
diff --git a/Shorewall-docsN/IPIP.xml b/Shorewall-docsN/IPIP.xml new file mode 100644 index 000000000..eac41f8f0 --- /dev/null +++ b/Shorewall-docsN/IPIP.xml @@ -0,0 +1,332 @@ + + +
+ + + + GRE and IPIP Tunnels + + + + Tom + + Eastep + + + + 2004-05-22 + + + 2001 + + 2002 + + 2003 + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + GRE and IPIP Tunnels are insecure when used over the internet; use + them at your own risk + + + GRE and IPIP tunneling with Shorewall can be used to bridge two + masqueraded networks. + + The simple scripts described in the Linux Advanced Routing and Shaping HOWTO + work fine with Shorewall. Shorewall also includes a tunnel script for + automating tunnel configuration. If you have installed the RPM, the tunnel + script may be found in the Shorewall documentation directory (usually + /usr/share/doc/shorewall-<version>/). + +
+ Bridging two Masqueraded Networks + + Suppose that we have the following situation: + + + + We want systems in the 192.168.1.0/24 subnetwork to be able to + communicate with the systems in the 10.0.0.0/8 network. This is + accomplished through use of the /etc/shorewall/tunnels file, the + /etc/shorewall/policy file and the /etc/shorewall/tunnel script that is + included with Shorewall. + + The tunnel script is not installed in /etc/shorewall + by default -- If you install using the tarball, the script is included in + the tarball; if you install using the RPM, the file is in your Shorewall + documentation directory (normally + /usr/share/doc/shorewall-<version>). + + In the /etc/shorewall/tunnel script, set the tunnel_type + parameter to the type of tunnel that you want to create. + + + /etc/shorewall/tunnel + + tunnel_type=gre + + + + If you use the PPTP connection tracking modules from Netfilter + Patch-O-Matic (ip_conntrack_proto_gre ip_conntrack_pptp, + ip_nat_proto_gre and ip_nat_pptp) then you cannot use GRE tunnels. + + + On each firewall, you will need to declare a zone to represent the + remote subnet. We'll assume that this zone is called vpn + and declare it in /etc/shorewall/zones on both systems as follows. + + + /etc/shorewall/zones system A & B + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + vpn + + VPN + + Remote Subnet + + + +
+ + On system A, the 10.0.0.0/8 will comprise the vpn + zone. In /etc/shorewall/interfaces: + + + /etc/shorewall/interfaces system A + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + vpn + + tosysb + + 10.255.255.255 + + + + + +
+ + In /etc/shorewall/tunnels on system A, we need the following: + + + /etc/shorewall/tunnels system A + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + ipip + + net + + 134.28.54.2 + + + + + +
+ + This entry in /etc/shorewall/tunnels, opens the firewall so that the + IP encapsulation protocol (4) will be accepted to/from the remote gateway. + + In the tunnel script on system A: + + + tunnel script on system A + + tunnel=tosysb +myrealip=206.161.148.9 (for GRE tunnel only) +myip=192.168.1.1 +hisip=10.0.0.1 +gateway=134.28.54.2 +subnet=10.0.0.0/8 + + + + Similarly, On system B the 192.168.1.0/24 subnet will comprise the + vpn zone. In /etc/shorewall/interfaces: + + + /etc/shorewall/interfaces system B + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + vpn + + tosysa + + 192.168.1.255 + + + + + +
+ + In /etc/shorewall/tunnels on system B, we have: + + + /etc/shorewall/tunnels system B + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + ipip + + net + + 206.191.148.9 + + + + + +
+ + And in the tunnel script on system B: + + + tunnel script on system B + + tunnel=tosysa +myrealip=134.28.54.2 (for GRE tunnel only) +myip=10.0.0.1 +hisip=192.168.1.1 +gateway=206.191.148.9 +subnet=192.168.1.0/24 + + + You can rename the modified tunnel scripts if you like; be sure that + they are secured so that root can execute them. + + You will need to allow traffic between the vpn zone + and the loc zone on both systems -- if you simply want to + admit all traffic in both directions, you can use the policy file: + + + /etc/shorewall/policy system A & B + + + + + SOURCE + + DEST + + POLICY + + LOG LEVEL + + + + + + loc + + vpn + + ACCEPT + + + + + + vpn + + loc + + ACCEPT + + + + + +
+ + On both systems, restart Shorewall and run the modified tunnel + script with the start argument on each system. The systems + in the two masqueraded subnetworks can now talk to each other +
+
\ No newline at end of file diff --git a/Shorewall-docsN/IPSEC.xml b/Shorewall-docsN/IPSEC.xml new file mode 100644 index 000000000..0fbd45c75 --- /dev/null +++ b/Shorewall-docsN/IPSEC.xml @@ -0,0 +1,953 @@ + + +
+ + + + IPSEC Tunnels + + + + Tom + + Eastep + + + + 2004-07-01 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + This documentation is incomplete regarding using IPSEC and the 2.6 + Kernel. Netfilter currently lacks full support for the 2.6 kernel's + implementation of IPSEC. Until that implementation is complete, only a + simple network-network tunnel is described for 2.6. + + +
+ Configuring FreeS/Wan + + There is an excellent guide to configuring IPSEC tunnels at http://www.geocities.com/jixen66/. + I highly recommend that you consult that site for information about + configuring FreeS/Wan. + + + IPSEC and Proxy ARP do not work unless you are running Shorewall + 2.0.1 Beta 3 or later or unless you have installed the fix to Shorewall + 2.0.0 available from the Errata Page. + + + + The documentation below assumes that you have disabled + opportunistic encryption feature in FreeS/Wan 2.0 using the following + additional entries in ipsec.conf: + + conn block + auto=ignore + +conn private + auto=ignore + +conn private-or-clear + auto=ignore + +conn clear-or-private + auto=ignore + +conn clear + auto=ignore + +conn packetdefault + auto=ignore + + For further information see http://www.freeswan.org/freeswan_trees/freeswan-2.03/doc/policygroups.html. + +
+ +
+ IPSec Gateway on the Firewall System + + Suppose that we have the following sutuation: + + + + We want systems in the 192.168.1.0/24 sub-network to be able to + communicate with systems in the 10.0.0.0/8 network. We assume that on both + systems A and B, eth0 is the internet interface. + + To make this work, we need to do two things: + + + + Open the firewall so that the IPSEC tunnel can be established + (allow the ESP and AH protocols and UDP Port 500). + + + + Allow traffic through the tunnel. + + + + Opening the firewall for the IPSEC tunnel is accomplished by adding + an entry to the /etc/shorewall/tunnels file. + + In /etc/shorewall/tunnels on system A, we need the following + + + /etc/shorewall/tunnels - System A + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + ipsec + + net + + 134.28.54.2 + + + + + +
+ + In /etc/shorewall/tunnels on system B, we would have: + + + /etc/shorewall/tunnels - System B + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + ipsec + + net + + 206.161.148.9 + + + + + +
+ + + If either of the endpoints is behind a NAT gateway then the + tunnels file entry on the other + endpoint should specify a tunnel type of ipsecnat rather than ipsec and + the GATEWAY address should specify the external address of the NAT + gateway. + + + You need to define a zone for the remote subnet or include it in + your local zone. In this example, we'll assume that you have created a + zone called vpn to represent the remote subnet. Note that + you should define the vpn zone before the net zone. + + /etc/shorewall/zones - Systems A and BZONEDISPLAYCOMMENTSvpnVPNRemote + SubnetnetInternetThe + big bad internet
+ + If you are running kernel 2.4:
At + both systems, ipsec0 would be included in /etc/shorewall/interfaces as a + vpn interface:/etc/shorewall/interfaces + - Systems A and BZONEINTERFACEBROADCASTOPTIONSvpnipsec0
+ + If you are running kernel 2.6: + +
+ It is essential that the + vpn zone be declared before the + net zone in /etc/shorewall/zones. + + Remember the assumption that both systems A and B have eth0 as + their internet interface. + + You must define the vpn zone using the /etc/shorewall/hosts file. + + + /etc/shorewall/hosts - System A + + + + + ZONE + + HOSTS + + OPTIONS + + + + + + vpn + + eth0:10.0.0.0/8 + + + + + +
+ + + /etc/shorewall/hosts - System B + + + + + ZONE + + HOSTS + + OPTIONS + + + + + + vpn + + eth0:192.168.1.0/24 + + + + + +
+ + In addition, if you are using Masquerading + or SNAT on your firewalls, you need to elmiinate the remote + network from Masquerade/SNAT. These entries replace + your current masquerade/SNAT entries for the local networks. + + + /etc/shorewall/masq - System A + + + + + INTERFACE + + SUBNET + + ADDRESS + + + + + + eth0:!10.0.0.0/8 + + 192.168.1.0/24 + + ... + + + +
+ + + /etc/shorewall/masq System B + + + + + INTERFACE + + SUBNET + + ADDRESS + + + + + + eth0:!192.168.1.0/24 + + 10.0.0.0/8 + + ... + + + +
+
+ + You will need to allow traffic between the vpn zone + and the loc zone -- if you simply want to admit all traffic + in both directions, you can use the policy file: + + /etc/shorewall/policy - Systems A and BSOURCEDESTPOLICYLOG LEVELlocvpnACCEPTvpnlocACCEPT
+ + Once you have these entries in place, restart Shorewall (type + shorewall restart); you are now ready to configure the tunnel in FreeS/WAN. +
+ +
+ VPN Hub using Kernel 2.4 + + Shorewall can be used in a VPN Hub environment where multiple remote + networks are connected to a gateway running Shorewall. This environment is + shown in this diatram. + + + + We want systems in the 192.168.1.0/24 sub-network to be able to + communicate with systems in the 10.0.0.0/16 and 10.1.0.0/16 networks and + we want the 10.0.0.0/16 and 10.1.0.0/16 networks to be able to + communicate. + + To make this work, we need to do several things: + + + + Open the firewall so that two IPSEC tunnels can be established + (allow the ESP and AH protocols and UDP Port 500). + + + + Allow traffic through the tunnels two/from the local zone + (192.168.1.0/24). + + + + Deny traffic through the tunnels between the two remote + networks. + + + + Opening the firewall for the IPSEC tunnels is accomplished by adding + two entries to the /etc/shorewall/tunnels file. + + In /etc/shorewall/tunnels on system A, we need the following + + + /etc/shorewall/tunnels system A + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + ipsec + + net + + 134.28.54.2 + + + + + + ipsec + + net + + 130.152.100.14 + + + + + +
+ + In /etc/shorewall/tunnels on systems B and C, we would have: + + + /etc/shorewall/tunnels system B & C + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + ipsec + + net + + 206.161.148.9 + + + + + +
+ + + If either of the endpoints is behind a NAT gateway then the + tunnels file entry on the other + endpoint should specify a tunnel type of ipsecnat + rather than ipsec and the GATEWAY address should specify the external + address of the NAT gateway. + + + On each system, we will create a zone to represent the remote + networks. On System A: + + + /etc/shorewall/zones system A + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + vpn1 + + VPN1 + + Remote Subnet on system B + + + + vpn2 + + VPN2 + + Remote Subnet on system C + + + +
+ + On systems B and C: + + + /etc/shorewall/zones system B & C + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + vpn + + VPN + + Remote Subnet on system A + + + +
+ + At system A, ipsec0 represents two zones so we have the following in + /etc/shorewall/interfaces: + + + /etc/shorewall/interfaces system A + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + - + + ipsec0 + + + + + + + +
+ + The /etc/shorewall/hosts file on system A defines the two VPN zones: + + + /etc/shorewall/hosts system A + + + + + ZONE + + HOSTS + + OPTIONS + + + + + + vpn1 + + ipsec0:10.0.0.0/16 + + + + + + vpn2 + + ipsec0:10.1.0.0/16 + + + + + +
+ + At systems B and C, ipsec0 represents a single zone so we have the + following in /etc/shorewall/interfaces: + + + /etc/shorewall/interfaces system B & C + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + vpn + + ipsec0 + + + + + + + +
+ + On systems A, you will need to allow traffic between the + vpn1 zone and the loc zone as well as + between vpn2 and the loc zone -- if you + simply want to admit all traffic in both directions, you can use the + following policy file entries on all three gateways: + + + /etc/shorewall/policy system A + + + + + SOURCE + + DEST + + POLICY + + LOG LEVEL + + + + + + loc + + vpn1 + + ACCEPT + + + + + + vpn1 + + loc + + ACCEPT + + + + + + loc + + vpn2 + + ACCEPT + + + + + + vpn2 + + loc + + ACCEPT + + + + + +
+ + On systems B and C, you will need to allow traffic between the + vpn zone and the loc zone -- if you simply + want to admit all traffic in both directions, you can use the following + policy file entries on all three gateways: + + + /etc/shorewall/policy system B & C + + + + + SOURCE + + DEST + + POLICY + + LOG LEVEL + + + + + + loc + + vpn + + ACCEPT + + + + + + vpn + + loc + + ACCEPT + + + + + +
+ + Once you have the Shorewall entries added, restart Shorewall on each + gateway (type shorewall restart); you are now ready to configure the + tunnels in FreeS/WAN. + + + to allow traffic between the networks attached to systems B and C, + it is necessary to simply add two additional entries to the + /etc/shorewall/policy file on system A. + + + /etc/shorewall/policy system A + + + + + SOURCE + + DEST + + POLICY + + LOG LEVEL + + + + + + vpn1 + + vpn2 + + ACCEPT + + + + + + vpn2 + + vpn1 + + ACCEPT + + + + + +
+
+ + + If you find traffic being rejected/dropped in the OUTPUT chain, + place the names of the remote VPN zones as a comma-separated list in the + GATEWAY ZONE column of the /etc/shorewall/tunnels file entry. + +
+ +
+ Mobile System (Road Warrior) Using Kernel 2.4 + + Suppose that you have a laptop system (B) that you take with you + when you travel and you want to be able to establish a secure connection + back to your local network. + + + + + Road Warrior VPN + + You need to define a zone for the laptop or include it in your + local zone. In this example, we'll assume that you have created a + zone called vpn to represent the remote host. + + /etc/shorewall/zones localZONEDISPLAYCOMMENTSvpnVPNRemote + Subnet
+ + In this instance, the mobile system (B) has IP address 134.28.54.2 + but that cannot be determined in advance. In the /etc/shorewall/tunnels + file on system A, the following entry should be made: + + /etc/shorewall/tunnels system ATYPEZONEGATEWAYGATEWAY ZONEipsecnet0.0.0.0/0vpn
+ + the GATEWAY ZONE column contains the name of the zone + corresponding to peer subnetworks. This indicates that the gateway + system itself comprises the peer subnetwork; in other words, the remote + gateway is a standalone system. + + You will need to configure /etc/shorewall/interfaces and establish + your through the tunnel policy as shown under the first + example above. +
+
+ +
+ Dynamic RoadWarrior Zones + + Beginning with Shorewall release 1.3.10, you can define multiple VPN + zones and add and delete remote endpoints dynamically using + /sbin/shorewall. With Shorewall 2.0.2 Beta 1 and later versions, this + capability must be enabled by setting DYNAMIC_ZONES=Yes in shorewall.conf. + + In /etc/shorewall/zones: + + + /etc/shorewall/zones + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + vpn1 + + VPN-1 + + First VPN Zone + + + + vpn2 + + VPN-2 + + Second VPN Zone + + + + vpn3 + + VPN-3 + + Third VPN Zone + + + +
+ + In /etc/shorewall/tunnels: + + + /etc/shorewall/tunnels + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + ipsec + + net + + 0.0.0.0/0 + + vpn1,vpn2,vpn3 + + + +
+ + When Shorewall is started, the zones vpn[1-3] will all be empty and + Shorewall will issue warnings to that effect. These warnings may be safely + ignored. FreeS/Wan may now be configured to have three different Road + Warrior connections with the choice of connection being based on X-509 + certificates or some other means. Each of these connectioins will utilize + a different updown script that adds the remote station to the appropriate + zone when the connection comes up and that deletes the remote station when + the connection comes down. For example, when 134.28.54.2 connects for the + vpn2 zone the up part of the script will issue the command: + + /sbin/shorewall add ipsec0:134.28.54.2 vpn2 + + and the down part will: + + /sbin/shorewall delete ipsec0:134.28.54.2 vpn2 + +
+ Limitations of Dynamic Zones + + If you include a dynamic zone in the exclude list of a DNAT rule, + the dynamically-added hosts are not excluded from the rule. + + + dyn=dynamic zone + + ACTIONSOURCEDESTINATIONPROTOCOLPORT(S)CLIENT PORT(S)ORIGINAL DESTINATIONDNATz!dynloc:192.168.1.3tcp80 + + Dynamic changes to the zone dyn + will have no effect on the above rule. + +
+
+
\ No newline at end of file diff --git a/Shorewall-docsN/Install.xml b/Shorewall-docsN/Install.xml new file mode 100644 index 000000000..647d1a857 --- /dev/null +++ b/Shorewall-docsN/Install.xml @@ -0,0 +1,380 @@ + + +
+ + + + Shorewall Installation and Upgrade + + + + Tom + + Eastep + + + + 2004-06-25 + + + 2001 + + 2002 + + 2003 + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + Note to Debian Users + + If you install using the .deb, you will find that your /etc/shorewall directory is empty. This is + intentional. The released configuration file skeletons may be found on + your system in the directory /usr/share/doc/shorewall/default-config. + Simply copy the files you need from that directory to /etc/shorewall and modify the copies. + + Note that you must copy /usr/share/doc/shorewall/default-config/shorewall.conf + and /usr/share/doc/shorewall/default-config/modules to /etc/shorewall even if you do not modify + those files. + + +
+ Install using RPM + + + Before attempting installation, I strongly urge you to read and + print a copy of the Shorewall + QuickStart Guide for the configuration that most closely matches + your own. + + + To install Shorewall using the RPM: + + + + Install the RPM + + rpm -ivh <shorewall rpm> + + + Some SuSE users have encountered a problem whereby rpm reports + a conflict with kernel <= 2.2 even though a 2.4 kernel is + installed. If this happens, simply use the --nodeps option to rpm. + + rpm -ivh --nodeps <shorewall rpm> + + + + Beginning with Shorewall 1.4.0, Shorewall is dependent on the + iproute package. Unfortunately, some distributions call this package + iproute2 which will cause the installation of Shorewall to fail with + the diagnostic: + + error: failed dependencies:iproute is needed by shorewall-1.4.x-1 + + This may be worked around by using the --nodeps option of rpm. + + rpm -ivh --nodeps <shorewall rpm> + + + + + Edit the configuration files + to match your configuration. + + + YOU CAN NOT SIMPLY INSTALL + THE RPM AND ISSUE A shorewall start COMMAND. SOME + CONFIGURATION IS REQUIRED BEFORE THE FIREWALL WILL START. IF YOU + ISSUE A start COMMAND AND THE FIREWALL FAILS TO + START, YOUR SYSTEM WILL NO LONGER ACCEPT ANY NETWORK TRAFFIC. IF + THIS HAPPENS, ISSUE A shorewall clear COMMAND TO + RESTORE NETWORK CONNECTIVITY. + + + + + Start the firewall by typing + + shorewall start + + +
+ +
+ Install using tarball + + + Before attempting installation, I strongly urge you to read and + print a copy of the Shorewall + QuickStart Guide for the configuration that most closely matches + your own. + + + To install Shorewall using the tarball and install script: + + + + unpack the tarball (tar -zxf shorewall-x.y.z.tgz). + + + + cd to the shorewall directory (the version is encoded in the + directory name as in shorewall-1.1.10). + + + + If you are running Slackware, + you need Shorewall 2.0.2 RC1 or later. If you are installing a + Shorewall version earlier than 2.0.3 Beta 1 then you must also edit + the install.sh file and change the lines + + DEST="/etc/init.d" +INIT="shorewall" + + to + + DEST="/etc/rc.d" +INIT="rc.firewall" + + + + If you are running Slackware and are installing Shorewall 2.0.3 + Beta 1 or later, then type: + + DEST=/etc/rc.d INIT=rc.firewall ./install.sh + + Otherwise, type: + + ./install.sh + + + + Edit the configuration files + to match your configuration. + + + + Enable Startup by removing /etc/shorewall/startup_disabled + (Debian users will edit /etc/default/shorewall + and set startup=1). + + + + Start the firewall by typing + + shorewall start + + + + If the install script was unable to configure Shorewall to be + started automatically at boot, see these instructions. + + +
+ +
+ Install the .lrp + + + Before attempting installation, I strongly urge you to read and + print a copy of the Shorewall + QuickStart Guide for the configuration that most closely matches + your own. + + + To install my version of Shorewall on a fresh Bering disk, simply + replace the shorwall.lrp file on the image with the file + that you downloaded. See the two-interface + QuickStart Guide for information about further steps required. +
+ +
+ Upgrade using RPM + + + Before upgrading, be sure to review the Upgrade Issues. + + + If you already have the Shorewall RPM installed and are upgrading to + a new version: + + + If you are upgrading from a 1.2 version of Shorewall to a 1.4 + version or and you have entries in the /etc/shorewall/hosts file then + please check your /etc/shorewall/interfaces file to be sure that it + contains an entry for each interface mentioned in the hosts file. Also, + there are certain 1.2 rule forms that are no longer supported under 1.4 + (you must use the new 1.4 syntax). See the + upgrade issues for details. + + + + + Upgrade the RPM + + rpm -Uvh <shorewall rpm file> + + + Some SuSE users have encountered a problem whereby rpm reports + a conflict with kernel <= 2.2 even though a 2.4 kernel is + installed. If this happens, simply use the --nodeps option to rpm. + + rpm -Uvh --nodeps <shorewall rpm> + + + + Beginning with Shorewall 1.4.0, Shorewall is dependent on the + iproute package. Unfortunately, some distributions call this package + iproute2 which will cause the upgrade of Shorewall to fail with the + diagnostic: + + error: failed dependencies:iproute is needed by shorewall-1.4.0-1 + + This may be worked around by using the --nodeps option of rpm. + + rpm -Uvh --nodeps <shorewall rpm> + + + + + See if there are any incompatibilities between your + configuration and the new Shorewall version and correct as necessary. + + shorewall check + + + + Restart the firewall. + + shorewall restart + + +
+ +
+ Upgrade using tarball + + + Before upgrading, be sure to review the Upgrade Issues. + + + If you already have Shorewall installed and are upgrading to a new + version using the tarball: + + + If you are upgrading from a 1.2 version of Shorewall to a 1.4 + version and you have entries in the /etc/shorewall/hosts file then + please check your /etc/shorewall/interfaces file to be sure that it + contains an entry for each interface mentioned in the hosts file. Also, + there are certain 1.2 rule forms that are no longer supported under 1.4 + (you must use the new 1.4 syntax). See the + upgrade issues for details. + + + + + unpack the tarball. + + tar -zxf shorewall-x.y.z.tgz + + + + cd to the shorewall directory (the version is encoded in the + directory name as in shorewall-3.0.1). + + + + If you are running Slackware, + you should use Shorewall 2.0.2 RC1 or later. If you are installing a + Shorewall version earlier than 2.0.3 Beta 1 then you must also edit + the install.sh file and change the lines + + DEST="/etc/init.d" +INIT="shorewall" + + to + + DEST="/etc/rc.d" +INIT="rc.firewall" + + + + If you are running Slackware and are installing Shorewall 2.0.3 + Beta 1 or later, then type: + + DEST=/etc/rc.d INIT=rc.firewall ./install.sh + + Otherwise, type: + + ./install.sh + + + + See if there are any incompatibilities between your + configuration and the new Shorewall version and correct as necessary. + + shorewall check + + + + Start the firewall by typing + + shorewall start + + + + If the install script was unable to configure Shorewall to be + started automatically at boot, see these instructions. + + +
+ +
+ Upgrade the .lrp + + + Before upgrading, be sure to review the Upgrade Issues. + + + There appears to be no standard method for upgrading LEAF/Bering + packages — Sorry to be so unhelpful. +
+ +
+ Configuring Shorewall + + You will need to edit some or all of the configuration files to + match your setup. In most cases, the Shorewall QuickStart Guides + contain all of the information you need. +
+ +
+ Uninstall/Fallback + + See Fallback and Uninstall. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/Introduction.xml b/Shorewall-docsN/Introduction.xml new file mode 100644 index 000000000..5e41581d5 --- /dev/null +++ b/Shorewall-docsN/Introduction.xml @@ -0,0 +1,203 @@ + + + \ No newline at end of file diff --git a/Shorewall-docsN/Kernel2.6.xml b/Shorewall-docsN/Kernel2.6.xml new file mode 100644 index 000000000..a87891045 --- /dev/null +++ b/Shorewall-docsN/Kernel2.6.xml @@ -0,0 +1,63 @@ + + +
+ + + + Shorewall and the 2.6 Linux Kernel + + + + Tom + + Eastep + + + + 2003-07-02 + + + 2003 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ General + + Shorewall is compatible with the Linux 2.6 kernel series and + contains support for the following features that are added in that series: + + + + NETMAP Target Support. + + + + Bridge/Firewall Support + (physdev match support). + + +
+ +
+ IPSEC + + The 2.6 Linux kernel introduces a new implementation of IPSEC which + eliminates the ipsecN device + names. Netfilter/iptables support for this new implementation is + incomplete and therefore Shorewall support is limited. See the Shorewall IPSEC documentation. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/MAC_Validation.xml b/Shorewall-docsN/MAC_Validation.xml new file mode 100644 index 000000000..1961520c2 --- /dev/null +++ b/Shorewall-docsN/MAC_Validation.xml @@ -0,0 +1,184 @@ + + +
+ + + + MAC Verification + + + + Tom + + Eastep + + + + 2004-04-05 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + All traffic from an interface or from a subnet on an interface can be + verified to originate from a defined set of MAC addresses. Furthermore, each + MAC address may be optionally associated with one or more IP addresses. + + + MAC addresses are only visible within an + ethernet segment so all MAC addresses used in verification must belong to + devices physically connected to one of the LANs to which your firewall is + connected. + + + + Your kernel must include MAC match support + (CONFIG_IP_NF_MATCH_MAC - module name ipt_mac.o). + + +
+ Components + + There are four components to this facility. + + + + The maclist interface option in + /etc/shorewall/interfaces. + When this option is specified, all traffic arriving on the interface + is subjet to MAC verification. + + + + The maclist option in /etc/shorewall/hosts. When this + option is specified for a subnet, all traffic from that subnet is + subject to MAC verification. + + + + The /etc/shorewall/maclist file. This file is used to associate + MAC addresses with interfaces and to optionally associate IP addresses + with MAC addresses. + + + + The MACLIST_DISPOSITION and + MACLIST_LOG_LEVEL variables in /etc/shorewall/shorewall.conf. + The MACLIST_DISPOSITION variable has the value DROP, REJECT or ACCEPT + and determines the disposition of connection requests that fail MAC + verification. The MACLIST_LOG_LEVEL variable gives the syslogd level + at which connection requests that fail verification are to be logged. + If set the the empty value (e.g., MACLIST_LOG_LEVEL="") then + failing connection requests are not logged. + + +
+ +
+ /etc/shorewall/maclist + + The columns in /etc/shorewall/maclist are: + + + + INTERFACE + + + The name of an ethernet interface on the Shorewall system. + + + + + MAC + + + The MAC address of a device on the ethernet segment connected + by INTERFACE. It is not necessary to use the Shorewall MAC format in + this column although you may use that format if you so choose. + + + + + IP Address + + + An optional comma-separated list of IP addresses for the + device whose MAC is listed in the MAC column. + + + +
+ +
+ Examples + + + Here are my files (look <ulink url="myfiles.htm">here</ulink> for + details about my setup) + + /etc/shorewall/shorewall.conf: + + MACLIST_DISPOSITION=REJECT +MACLIST_LOG_LEVEL=info + + /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +net eth0 206.124.146.255 dhcp,norfc1918,routefilter,blacklist,tcpflags +loc eth2 192.168.1.255 dhcp +dmz eth1 192.168.2.255 +WiFi eth3 192.168.3.255 dhcp,maclist +- texas 192.168.9.255 + + /etc/shorewall/maclist: + + #INTERFACE MAC IP ADDRESSES (Optional) +eth3 00:A0:CC:A2:0C:A0 192.168.3.7 #Work Laptop +eth3 00:04:5a:fe:85:b9 192.168.3.250 #WAP11 +eth3 00:06:25:56:33:3c 192.168.3.225,192.168.3.8 #WET11 +eth3 00:0b:cd:C4:cc:97 192.168.3.8 #TIPPER + + As shown above, I use MAC Verification on my wireless zone. + + While marketed as a wireless bridge, the WET11 behaves + like a wireless router with DHCP relay. When forwarding DHCP traffic, it + uses the MAC address of the host (TIPPER) but for other forwarded + traffic it uses it's own MAC address. Consequently, I list the IP + addresses of both devices in /etc/shorewall/maclist. + + + + Router in Wireless Zone + + Suppose now that I add a second wireless segment to my wireless + zone and gateway that segment via a router with MAC address + 00:06:43:45:C6:15 and IP address 192.168.3.253. Hosts in the second + segment have IP addresses in the subnet 192.168.4.0/24. I would add the + following entry to my /etc/shorewall/maclist file: + + eth3 00:06:43:45:C6:15 192.168.3.253,192.168.4.0/24 + + This entry accomodates traffic from the router itself + (192.168.3.253) and from the second wireless segment (192.168.4.0/24). + Remember that all traffic being sent to my firewall from the + 192.168.4.0/24 segment will be forwarded by the router so that + traffic's MAC address will be that of the router (00:06:43:45:C6:15) + and not that of the host sending the traffic. + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/Multiple_Zones.xml b/Shorewall-docsN/Multiple_Zones.xml new file mode 100644 index 000000000..7c7ade943 --- /dev/null +++ b/Shorewall-docsN/Multiple_Zones.xml @@ -0,0 +1,342 @@ + + +
+ + + + Routing on One Interface + + + + Tom + + Eastep + + + + 2004-03-15 + + + 2003 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Introduction + + While most configurations can be handled with each of the + firewall's network interfaces assigned to a single zone, there are + cases where you will want to divide the hosts accessed through an + interface between two or more zones. + + + + The interface has multiple addresses on multiple subnetworks. + This case is covered in the Aliased Interface + documentation. + + + + You are using some form of NAT and want to access a server by + its external IP address from the same LAN segment. This is covered in + FAQs 2 and 2a. + + + + There are routers accessible through the interface and you want + to treat the networks accessed through that router as a separate zone. + + + + Some of the hosts accessed through an interface have + significantly different firewalling requirements from the others so + you want to assign them to a different zone. + + + + The key points to keep in mind when setting up multiple zones per + interface are: + + + + Shorewall generates rules for zones in the order that the zone + declarations appear in /etc/shorewall/zones. + + + + The order of entries in /etc/shorewall/hosts is immaterial as + far as the generated ruleset is concerned. + + + + These examples use the local zone but the same + technique works for any zone. Remember that Shorewall + doesn't have any conceptual knowledge of Internet, + Local, or DMZ so all zones except the + firewall itself ($FW) are the same as far as Shorewall is concerned. Also, + the examples use private (RFC 1918) addresses but public IP addresses can + be used in exactly the same way. +
+ +
+ Router in the Local Zone + + Here is an example of a router in the local zone. + + + the box called Router could + be a VPN server or other such device; from the point of view + of this discussion, it makes no difference. + + + + +
+ Can You Use the Standard Configuration? + + In many cases, the standard + two-interface Shorewall setup will work fine in this + configuration. It will work if: + + + + The firewall requirements to/from the internet are the same + for 192.168.1.0/24 and 192.168.2.0/24. + + + + The hosts in 192.168.1.0/24 know that the route to + 192.168.2.0/24 is through the router. + + + + All you have to do on the firewall is add a route to + 192.168.2.0/24 through the router and + restart Shorewall. +
+ +
+ Will One Zone be Enough? + + If the firewalling requirements for the two local networks is the + same but the hosts in 192.168.1.0/24 don't know how to route to + 192.168.2.0/24 then you need to configure the firewall slightly + differently. This type of configuration is rather stupid from an IP + networking point of view but it is sometimes necessary because you + simply don't want to have to reconfigure all of the hosts in + 192.168.1.0/24 to add a persistent route to 192.168.2.0/24. On the + firewall: + + + + Add a route to 192.168.2.0/24 through the Router. + + + + Set the routeback and newnotsyn + options for eth1 (the local firewall interface) in + /etc/shorewall/interfaces. + + + + Restart Shorewall. + + +
+ +
+ I Need Separate Zones + + If you need to make 192.168.2.0/24 into it's own zone, you can + do it one of two ways; Nested Zones or Parallel Zones. + +
+ Nested Zones + + You can define one zone (called it loc) as being + all hosts connectied to eth1 and a second zone loc1 + (192.168.2.0/24) as a sub-zone. + + + + The advantage of this approach is that the zone loc1 + can use CONTINUE policies such that if a connection request + doesn't match a loc1 rule, it will be matched + against the loc rules. For example, if your + loc1->net policy is CONTINUE then if a connection request from + loc1 to the internet doesn't match any rules for loc1->net + then it will be checked against the loc->net rules. + + /etc/shorewall/zones + + #ZONE DISPLAY COMMENTS +loc1 Local1 Hosts accessed through internal router +loc Local All hosts accessed via eth1 + + + the sub-zone (loc1) is defined first! + + + /etc/shorewall/interfaces + + #ZONE INTERFACE BROADCAST +loc eth1 192.168.1.255 + + /etc/shorewall/hosts + + #ZONE HOSTS +loc1 eth1:192.168.2.0/24 + + If you don't need Shorewall to set up infrastructure to + route traffic between loc and loc1, add + these two policies. + + /etc/shorewall/policy + + #SOURCE DEST POLICY +loc loc1 NONE +loc1 loc NONE +
+ +
+ Parallel Zones + + You define both zones in the /etc/shorewall/hosts file to create + two disjoint zones. + + + + /etc/shorewall/zones + + #ZONE DISPLAY COMMENTS +loc1 Local1 Hosts accessed Directly from Firewall +loc2 Local2 Hosts accessed via the internal Router + + + Here it doesn't matter which zone is defined first. + + + /etc/shorewall/interfaces + + #ZONE INTERFACE BROADCAST +- eth1 192.168.1.255 + + /etc/shorewall/hosts + + #ZONE HOSTS +loc1 eth1:192.168.1.0/24 +loc2 eth1:192.168.2.0/24 + + You don't need Shorewall to set up infrastructure to route + traffic between loc and loc1, so add + these two policies: + + #SOURCE DEST POLICY +loc1 loc2 NONE +loc2 loc1 NONE +
+
+
+ +
+ Some Hosts have Special Firewalling Requirements + + There are cases where a subset of the addresses associated with an + interface need special handling. Here's an example. + + + + In this example, addresses 192.168.1.8 - 192.168.1.15 + (192.168.1.8/29) are to be treated as their own zone (loc1). + + /etc/shorewall/zones + + #ZONE DISPLAY COMMENTS +loc1 Local1 192.168.1.8-192.168.1.15 +loc Local All hosts accessed via eth1 + + + the sub-zone (loc1) is defined first! + + + /etc/shorewall/interfaces + + #ZONE INTERFACE BROADCAST +loc eth1 192.168.1.255 + + /etc/shorewall/hosts#ZONE HOSTS +loc1 eth1:192.168.1.8/29 + + You probably don't want Shorewall to set up infrastructure to + route traffic between loc and loc1 so you + should add these two policies. + + /etc/shorewall/policy + + #SOURCE DEST POLICY +loc loc1 NONE +loc1 loc NONE +
+ +
+ One-armed Router + + Nested zones may also be used to configure a one-armed + router (I don't call it a firewall because it is very + insecure. For example, if you connect to the internet via cable modem, + your next door neighbor has full access to your local systems as does + everyone else connected to the same cable modem head-end controller). Here + eth0 is configured with both a public IP address and an RFC 1918 address + (More on that topic may be found here). Hosts in the + loc zone are configured with their default gateway set to + the Shorewall router's RFC1918 address. + + + + /etc/shorewall/zones + + #ZONE DISPLAY COMMENTS +loc Local Local Zone +net Internet The big bad Internet + + + the sub-zone (loc) is defined first! + + + /etc/shorewall/interfaces + + #ZONE INTERFACE BROADCAST +net eth0 detect + + /etc/shorewall/hosts + + #ZONE HOSTS OPTIONS +loc eth0:192.168.1.0/24 maclist + + /etc/shorewall/masq + + #INTERFACE SUBNET ADDRESS +eth0:!192.168.1.0/24 192.168.1.0/24 + + Note that the maclist option is specified in /etc/shorewall/interfaces. + This is to help protect your router from unauthorized access by your + friends and neighbors. Start without maclist then add it and configure + your /etc/shorewall/maclist + file when everything else is working. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/NAT.xml b/Shorewall-docsN/NAT.xml new file mode 100644 index 000000000..2a35de305 --- /dev/null +++ b/Shorewall-docsN/NAT.xml @@ -0,0 +1,111 @@ + + +
+ + + + One-to-one NAT + + + + Tom + + Eastep + + + + 2004-02-04 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ One-to-one NAT + + + If all you want to do is forward ports to + servers behind your firewall, you do NOT want to use one-to-one NAT. + Port forwarding can be accomplished with simple entries in the rules file. + + + One-to-one NAT is a way to make systems behind a firewall and + configured with private IP addresses (those reserved for private use in + RFC 1918) appear to have public IP addresses. Before you try to use this + technique, I strongly recommend that you read the Shorewall Setup Guide. + + The following figure represents a one-to-one NAT environment. + + + + One-to-one NAT can be used to make the systems with the 10.1.1.* + addresses appear to be on the upper (130.252.100.*) subnet. If we assume + that the interface to the upper subnet is eth0, then the following + /etc/shorewall/NAT file would make the lower left-hand system appear to + have IP address 130.252.100.18 and the right-hand one to have IP address + 130.252.100.19. + + /etc/shorewall/nat#EXTERNAL INTERFACE INTERNAL ALL INTERFACES LOCAL +130.252.100.18 eth0 10.1.1.2 no no +130.252.100.19 eth0 10.1.1.3 no no + + Be sure that the internal system(s) (10.1.1.2 and 10.1.1.3 in the + above example) is (are) not included in any specification in + /etc/shorewall/masq or /etc/shorewall/proxyarp. + + + The ALL INTERFACES column is used to specify + whether access to the external IP from all firewall interfaces should + undergo NAT (Yes or yes) or if only access from the interface in the + INTERFACE column should undergo NAT. If you leave this column empty, + No is assumed (Shorewall 2.0.0 and later -- prior to + this, Yes was assumed). Specifying + Yes in this column will not allow systems on the lower + LAN to access each other using their public IP addresses. For + example, the lower left-hand system (10.1.1.2) cannot connect to + 130.252.100.19 and expect to be connected to the lower right-hand + system. See FAQ 2a. + + + + Shorewall will automatically add the external address to the + specified interface unless you specify ADD_IP_ALIASES=no + (or No) in /etc/shorewall/shorewall.conf; If you do not + set ADD_IP_ALIASES or if you set it to Yes or + yes then you must NOT configure your own alias(es). + + Shorewall versions earlier than 1.4.6 can only + add external addresses to an interface that is configured with a single + subnetwork -- if your external interface has addresses in more than one + subnetwork, Shorewall 1.4.5 and earlier can only add addresses to the + first one. + + + + The contents of the LOCAL column determine whether + packets originating on the firewall itself and destined for the EXTERNAL + address are redirected to the internal ADDRESS. If this column contains + yes or Yes (and the ALL INTERFACES COLUMN + also contains Yes or yes) then such + packets are redirected; otherwise, such packets are not redirected. This + feature requires kernel 2.4.19 or later and iptables 1.2.6a or later and + you must have enabled CONFIG_IP_NF_NAT_LOCAL in your kernel. + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/NetfilterOverview.xml b/Shorewall-docsN/NetfilterOverview.xml new file mode 100644 index 000000000..21a2e0c40 --- /dev/null +++ b/Shorewall-docsN/NetfilterOverview.xml @@ -0,0 +1,228 @@ + + +
+ + + + Netfilter Overview + + + + Tom + + Eastep + + + + 2004-03-12 + + + 2003 + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Netfilter Overview + + Netfilter consists of three tables: Filter, + Nat and Mangle. + Each table has a number of build-in chains: PREROUTING, + INPUT, FORWARD, + OUTPUT and POSTROUTING. + + Rules in the various tables are used as follows: + + + + Filter + + + Packet filtering (rejecting, dropping or accepting packets) + + + + + Nat + + + Network Address Translation including DNAT, SNAT and + Masquerading + + + + + Mangle + + + General packet header modification such as setting the TOS + value or marking packets for policy routing and traffic shaping. + + + + + The following diagram shows how packets traverse the various builtin + chains within Netfilter. Note that not all table/chain combinations are + used. + + + + Local Process means a process running on the + Shorewall system itself. + + A more elaborate version of this flow is available here. + + In the above diagram are boxes similar to this: + + + + The above box gives the name of the built-in chain (INPUT) along with the names of the tables (Mangle and Filter) + that the chain exists in and in the order that the chains are traversed. + The above sample indicates that packets go first through the INPUT chain of the Mangle + table then through the INPUT chain of the + Filter table. When a chain is enclosed in + parentheses, Shorewall does not use the named chain (INPUT) + in that table (Mangle). + + + Keep in mind that chains in the Nat + table are only traversed for new connection + requests (including those related to existing connections) + while the chains in the other tables are traversed on every packet. + + + The above diagram should help you understand the output of + shorewall status. + + Here are some excerpts from shorewall status on a + server with one interface (eth0): + + [root@lists html]# shorewall status + +Shorewall-1.4.7 Status at lists.shorewall.net - Mon Oct 13 12:51:13 PDT 2003 + +Counters reset Sat Oct 11 08:12:57 PDT 2003 + + The first table shown is the Filter + table. + + Chain INPUT (policy DROP 0 packets, 0 bytes) + pkts bytes target prot opt in out source destination + 679K 182M ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 + 785K 93M accounting all -- * * 0.0.0.0/0 0.0.0.0/0 + 0 0 DROP !icmp -- * * 0.0.0.0/0 0.0.0.0/0 state INVALID + + The following rule indicates that all traffic destined for the + firewall that comes into the firewall on eth0 is passed to a chain called + eth0_in. That chain will be shown further down. + + 785K 93M eth0_in all -- eth0 * 0.0.0.0/0 0.0.0.0/0 + 0 0 common all -- * * 0.0.0.0/0 0.0.0.0/0 + 0 0 LOG all -- * * 0.0.0.0/0 0.0.0.0/0 LOG flags 0 level 6 prefix `Shorewall:INPUT:REJECT:' + 0 0 reject all -- * * 0.0.0.0/0 0.0.0.0/0 + +Chain FORWARD (policy DROP 0 packets, 0 bytes) + pkts bytes target prot opt in out source destination + 0 0 accounting all -- * * 0.0.0.0/0 0.0.0.0/0 + 0 0 DROP !icmp -- * * 0.0.0.0/0 0.0.0.0/0 state INVALID + 0 0 eth0_fwd all -- eth0 * 0.0.0.0/0 0.0.0.0/0 + 0 0 common all -- * * 0.0.0.0/0 0.0.0.0/0 + 0 0 LOG all -- * * 0.0.0.0/0 0.0.0.0/0 LOG flags 0 level 6 prefix `Shorewall:FORWARD:REJECT:' + 0 0 reject all -- * * 0.0.0.0/0 0.0.0.0/0 + +Chain OUTPUT (policy DROP 1 packets, 60 bytes) + pkts bytes target prot opt in out source destination + 679K 182M ACCEPT all -- * lo 0.0.0.0/0 0.0.0.0/0 + 922K 618M accounting all -- * * 0.0.0.0/0 0.0.0.0/0 + 0 0 DROP !icmp -- * * 0.0.0.0/0 0.0.0.0/0 state INVALID + 922K 618M fw2net all -- * eth0 0.0.0.0/0 0.0.0.0/0 + 0 0 common all -- * * 0.0.0.0/0 0.0.0.0/0 + 0 0 LOG all -- * * 0.0.0.0/0 0.0.0.0/0 LOG flags 0 level 6 prefix `Shorewall:OUTPUT:REJECT:' + 0 0 reject all -- * * 0.0.0.0/0 0.0.0.0/0 + + Here is the eth0_in chain: + + Chain eth0_in (1 references) + pkts bytes target prot opt in out source destination + 785K 93M dynamic all -- * * 0.0.0.0/0 0.0.0.0/0 + 785K 93M net2fw all -- * * 0.0.0.0/0 0.0.0.0/0 + + The dynamic chain above is where dynamic blacklisting + is done. + + Next comes the Nat table: + + NAT Table + +Chain PREROUTING (policy ACCEPT 182K packets, 12M bytes) + pkts bytes target prot opt in out source destination +20005 1314K net_dnat all -- eth0 * 0.0.0.0/0 0.0.0.0/0 + +Chain POSTROUTING (policy ACCEPT 678K packets, 44M bytes) + pkts bytes target prot opt in out source destination + +Chain OUTPUT (policy ACCEPT 678K packets, 44M bytes) + pkts bytes target prot opt in out source destination + +Chain net_dnat (1 references) + pkts bytes target prot opt in out source destination + 638 32968 REDIRECT tcp -- * * 0.0.0.0/0 !206.124.146.177 tcp dpt:80 redir ports 3128 + + + And finally, the Mangle table: + + Mangle Table + +Chain PREROUTING (policy ACCEPT 14M packets, 2403M bytes) + pkts bytes target prot opt in out source destination +1464K 275M pretos all -- * * 0.0.0.0/0 0.0.0.0/0 + +Chain INPUT (policy ACCEPT 14M packets, 2403M bytes) + pkts bytes target prot opt in out source destination + +Chain FORWARD (policy ACCEPT 0 packets, 0 bytes) + pkts bytes target prot opt in out source destination + +Chain OUTPUT (policy ACCEPT 15M packets, 7188M bytes) + pkts bytes target prot opt in out source destination +1601K 800M outtos all -- * * 0.0.0.0/0 0.0.0.0/0 + +Chain POSTROUTING (policy ACCEPT 15M packets, 7188M bytes) + pkts bytes target prot opt in out source destination + +Chain outtos (1 references) + pkts bytes target prot opt in out source destination + 0 0 TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:22 TOS set 0x10 + 315K 311M TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22 TOS set 0x10 + 0 0 TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:21 TOS set 0x10 + 683 59143 TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:21 TOS set 0x10 + 3667 5357K TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:20 TOS set 0x08 + 0 0 TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:20 TOS set 0x08 + +Chain pretos (1 references) + pkts bytes target prot opt in out source destination + 271K 15M TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:22 TOS set 0x10 + 0 0 TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22 TOS set 0x10 + 730 41538 TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:21 TOS set 0x10 + 0 0 TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:21 TOS set 0x10 + 0 0 TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:20 TOS set 0x08 + 2065 111K TOS tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:20 TOS set 0x08 +
+
\ No newline at end of file diff --git a/Shorewall-docsN/OPENVPN.xml b/Shorewall-docsN/OPENVPN.xml new file mode 100644 index 000000000..a80c7660e --- /dev/null +++ b/Shorewall-docsN/OPENVPN.xml @@ -0,0 +1,340 @@ + + +
+ + + + OpenVPN Tunnels + + + + Tom + + Eastep + + + + Simon + + Mater + + + + 2003-02-04 + + + 2003 + + Thomas M. Eastep + + Simon Mater + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + OpenVPN is a robust and highly configurable VPN (Virtual Private + Network) daemon which can be used to securely link two or more private + networks using an encrypted tunnel over the internet. OpenVPN is an Open + Source project and is licensed under the GPL. + OpenVPN can be downloaded from http://openvpn.sourceforge.net/. + + OpenVPN support was added to Shorewall in version 1.3.14. + +
+ Bridging two Masqueraded Networks + + Suppose that we have the following situation: + + + + We want systems in the 192.168.1.0/24 subnetwork to be able to + communicate with the systems in the 10.0.0.0/8 network. This is + accomplished through use of the /etc/shorewall/tunnels file and the + /etc/shorewall/policy file and OpenVPN. + + While it was possible to use the Shorewall start and stop script to + start and stop OpenVPN, I decided to use the init script of OpenVPN to + start and stop it. + + On each firewall, you will need to declare a zone to represent the + remote subnet. We'll assume that this zone is called vpn + and declare it in /etc/shorewall/zones on both systems as follows. + + + /etc/shorewall/zones system A & B + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + vpn + + VPN + + Remote Subnet + + + +
+ + On system A, the 10.0.0.0/8 will comprise the vpn + zone. In /etc/shorewall/interfaces: + + + etc/shorewall/interfaces system A + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + vpn + + tun0 + + + + + + + +
+ + In /etc/shorewall/tunnels on system A, we need the following: + + + /etc/shorewall/tunnels system A + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + openvpn + + net + + 134.28.54.2 + + + + + +
+ + This entry in /etc/shorewall/tunnels opens the firewall so that + OpenVPN traffic on the default port 5000/udp will be accepted to/from the + remote gateway. If you change the port used by OpenVPN to 7777, you can + define /etc/shorewall/tunnels like this: + + + /etc/shorewall/tunnels port 7777 + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + openvpn:7777 + + net + + 134.28.54.2 + + + + + +
+ + This is the OpenVPN config on system A: + + dev tun +local 206.162.148.9 +remote 134.28.54.2 +ifconfig 192.168.99.1 192.168.99.2 +up ./route-a.up +tls-server +dh dh1024.pem +ca ca.crt +cert my-a.crt +key my-a.key +comp-lzo +verb 5 + + Similarly, On system B the 192.168.1.0/24 subnet will comprise the + vpn zone. In /etc/shorewall/interfaces: + + + /etc/shorewall/interfaces system B + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + vpn + + tun0 + + 192.168.1.255 + + + + + +
+ + In /etc/shorewall/tunnels on system B, we have: + + + /etc/shorewall/tunnels system B + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + openvpn + + net + + 206.191.148.9 + + + + + +
+ + And in the OpenVPN config on system B: + + dev tun +local 134.28.54.2 +remote 206.162.148.9 +ifconfig 192.168.99.2 192.168.99.1 +up ./route-b.up +tls-client +ca ca.crt +cert my-b.crt +key my-b.key +comp-lzo +verb 5 + + You will need to allow traffic between the vpn zone + and the loc zone on both systems -- if you simply want to + admit all traffic in both directions, you can use the policy file: + + + /etc/shorewall/policy system A & B + + + + + SOURCE + + DEST + + POLICY + + LOG LEVEL + + + + + + loc + + vpn + + ACCEPT + + + + + + vpn + + loc + + ACCEPT + + + + + +
+ + On both systems, restart Shorewall and start OpenVPN. The systems in + the two masqueraded subnetworks can now talk to each other. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/PPTP.xml b/Shorewall-docsN/PPTP.xml new file mode 100644 index 000000000..1f5553a4f --- /dev/null +++ b/Shorewall-docsN/PPTP.xml @@ -0,0 +1,1457 @@ + + +
+ + + + PPTP + + + + Tom + + Eastep + + + + 2004-05-22 + + + 2001 + + 2002 + + 2003 + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + 1.3 + + 2004-05-22 + + TE + + Warning about PPTP conntrack patch and GRE tunnels. + + + + 1.2 + + 2004-04-15 + + TE + + Revised instructions regarding PPTP conntrack patch. + + + + 1.1 + + 2003-12-23 + + TE + + Added note about PPTP module support in Bering 1.2 + + + + + Shorewall easily supports PPTP in a number of configurations. + + + +
+ Overview + + + I am no longer attempting to maintain MPPE patches for current + Linux kernel's and pppd. I recommend that you refer to the following + URLs for information about installing MPPE into your kernel and pppd. + + + The Linux PPTP client + project has a nice GUI for configuring and managing VPN + connections where your Linux system is the PPTP client. This is what I + currently use. I am no longer running PoPToP but rather I use the PPTP + Server included with XP Professional (see PPTP Server running behind your Firewall + below). + + + + http://pptpclient.sourceforge.net + + + Everything you need to run a PPTP client. + + + + + http://www.poptop.org + + + The kernelmod package can be used to quickly + install MPPE into your kernel without rebooting. + + + + + I am leaving the instructions for building MPPE-enabled kernels and + pppd in the text below for those who may wish to obtain the relevant + current patches and roll their own. +
+ +
+ PPTP Server Running on your Firewall + + I will try to give you an idea of how to set up a PPTP server on + your firewall system. This isn't a detailed HOWTO but rather an + example of how I have set up a working PPTP server on my own firewall. + + The steps involved are: + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Patching and building pppd + + To run pppd on a 2.4 kernel, you need the pppd 2.4.1 or later. The + primary site for releases of pppd is ftp://ftp.samba.org/pub/ppp. + + You will need the following patches: + + + http://www.shorewall.net/pub/shorewall/pptp/ppp-2.4.1-openssl-0.9.6-mppe-patch.gz + + http://www.shorewall.net/pub/shorewall/pptp/ppp-2.4.1-MSCHAPv2-fix.patch.gz + + + You may also want the following patch if you want to require + remote hosts to use encryption: + + + ftp://ftp.shorewall.net/pub/shorewall/pptp/require-mppe.diff + + + Un-tar the pppd source and uncompress the patches into one + directory (the patches and the ppp-2.4.1 directory are all in a single + parent directory): + + cd ppp-2.4.1 +patch -p1 < ../ppp-2.4.0-openssl-0.9.6-mppe.patch +patch -p1 < ../ppp-2.4.1-MSCHAPv2-fix.patch +(Optional) patch -p1 < ../require-mppe.diff +./configure +make + + You will need to install the resulting binary on your firewall + system. To do that, I NFS mount my source filesystem and use + make install from the ppp-2.4.1 directory. +
+ +
+ Patching and building your Kernel + + You will need one of the following patches depending on your + kernel version: + + + http://www.shorewall.net/pub/shorewall/pptp/linux-2.4.4-openssl-0.9.6a-mppe-patch.gz + + http://www.shorewall/net/pub/shorewall/pptp/linux-2.4.16-openssl-0.9.6b-mppe-patch.gz + + + Uncompress the patch into the same directory where your top-level + kernel source is located and: + + cd <your GNU/Linux source top-level directory> +patch -p1 < ../linux-2.4.16-openssl-0.9.6b-mppe.patch + + Now configure your kernel. Here is my ppp configuration: + + +
+ +
+ Configuring Samba + + You will need a WINS server (Samba configured to run as a WINS + server is fine). Global section from /etc/samba/smb.conf on my WINS + server (192.168.1.3) is: + + [global] + workgroup = TDM-NSTOP + netbios name = WOOKIE + server string = GNU/Linux Box + encrypt passwords = Yes + log file = /var/log/samba/%m.log + max log size = 0 + socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 + os level = 65 + domain master = True + preferred master = True + dns proxy = No + wins support = Yes + printing = lprng + +[homes] + comment = Home Directories + valid users = %S + read only = No + create mask = 0664 + directory mask = 0775 + +[printers] + comment = All Printers + path = /var/spool/samba + printable = Yes +
+ +
+ Configuring pppd + + Here is a copy of my /etc/ppp/options.poptop file: + + ipparam PoPToP +lock +mtu 1490 +mru 1490 +ms-wins 192.168.1.3 +ms-dns 206.124.146.177 +multilink +proxyarp +auth ++chap ++chapms ++chapms-v2 +ipcp-accept-local +ipcp-accept-remote +lcp-echo-failure 30 +lcp-echo-interval 5 +deflate 0 +mppe-128 +mppe-stateless +require-mppe +require-mppe-stateless + + + + + System 192.168.1.3 acts as a WINS server so I have included + that IP as the ms-wins value. + + + + I have pointed the remote clients at my DNS server -- it has + external address 206.124.146.177. + + + + I am requiring 128-bit stateless compression (my kernel is + built with the require-mppe.diff patch mentioned + above. + + + + + Here's my /etc/ppp/chap-secrets: + + Secrets for authentication using CHAP +# client server secret IP addresses +CPQTDM\\TEastep * <shhhhhh> 192.168.1.7 +TEastep * <shhhhhh> 192.168.1.7 + + I am the only user who connects to the server but I may connect + either with or without a domain being specified. The system I connect + from is my laptop so I give it the same IP address when tunneled in at + it has when I use its wireless LAN card around the house. + + You will also want the following in /etc/modules.conf: + + alias ppp-compress-18 ppp_mppe +alias ppp-compress-21 bsd_comp +alias ppp-compress-24 ppp_deflate +alias ppp-compress-26 ppp_deflate +
+ +
+ Configuring pptpd + + PoPTop (pptpd) is available from http://poptop.lineo.com/. + + Here is a copy of my /etc/pptpd.conf file: + + option /etc/ppp/options.poptop +speed 115200 +localip 192.168.1.254 +remoteip 192.168.1.33-38 + + + + + I specify the /etc/ppp/options.poptop file as my ppp options + file (I have several). + + + + The local IP is the same as my internal interface's + (192.168.1.254). + + + + I have assigned a remote IP range that overlaps my local + network. This, together with proxyarp in my + /etc/ppp/options.poptop file make the remote hosts look like they + are part of the local subnetwork. + + + + + I use this file to start/stop pptpd -- I have this in + /etc/init.d/pptpd: + + #!/bin/sh +# +# /etc/rc.d/init.d/pptpd +# +# chkconfig: 5 12 85 +# description: control pptp server +# + +case "$1" in +start) + echo 1 > /proc/sys/net/ipv4/ip_forward + modprobe ppp_async + modprobe ppp_generic + modprobe ppp_mppe + modprobe slhc + if /usr/local/sbin/pptpd; then + touch /var/lock/subsys/pptpd + fi + ;; +stop) + killall pptpd + rm -f /var/lock/subsys/pptpd + ;; +restart) + killall pptpd + if /usr/local/sbin/pptpd; then + touch /var/lock/subsys/pptpd + fi + ;; +status) + ifconfig + ;; +*) + echo "Usage: $0 {start|stop|restart|status}" + ;; +esac +
+ +
+ Configuring Shorewall + +
+ Basic Setup + + Here' a basic setup that treats your remote users as if they + were part of your loc zone. Note that + if your primary internet connection uses ppp0, then be sure that + loc follows net + in /etc/shorewall/zones. + + + /etc/shorewall/tunnels + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + pptpserver + + net + + 0.0.0.0/0 + + + + + +
+ + + /etc/shorewall/interfaces + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + loc + + ppp+ + + - + + + + + +
+
+ +
+ Remote Users in a Separate Zone + + If you want to place your remote users in their own zone so that + you can control connections between these users and the local network, + follow this example. Note that if your primary internet connection + uses ppp0 then be sure that vpn + follows net in /etc/shorewall/zones + as shown below. + + + /etc/shorewall/tunnels + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + pptpserver + + net + + 0.0.0.0/0 + + + + + +
+ + + /etc/shorewall/zones + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + net + + Internet + + The Internet + + + + loc + + Local + + Local Network + + + + vpn + + VPN + + Remote Users + + + +
+ + + /etc/shorewall/interfaces + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + net + + eth0 + + 206.124.146.255 + + norfc1918 + + + + loc + + eth2 + + 192.168.10.255 + + + + + + vpn + + ppp+ + + - + + + + + +
+ + Your policies and rules may now be configured for traffic + to/from the vpn zone. +
+ +
+ Multiple Remote Networks + + Often there will be situations where you want multiple + connections from remote networks with these networks having different + firewalling requirements. + + Here's how you configure this in Shorewall. Note that if + your primary internet connection uses ppp0 then be sure that the + vpn{1-3} zones follows net in /etc/shorewall/zones as shown below. + + + /etc/shorewall/tunnels + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + pptpserver + + net + + 0.0.0.0/0 + + + + + +
+ + + /etc/shorewall/zones + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + net + + Internet + + The Internet + + + + loc + + Local + + Local Network + + + + vpn1 + + Remote1 + + Remote Network 1 + + + + vpn2 + + Remote2 + + Remote Network 2 + + + + vpn3 + + Remote3 + + Remote Network 3 + + + +
+ + + /etc/shorewall/interfaces + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + net + + eth0 + + 206.124.146.255 + + norfc1918 + + + + loc + + eth2 + + 192.168.10.255 + + + + + + - + + ppp+ + + - + + + + + +
+ + + /etc/shorewall/hosts + + + + + ZONE + + HOST(S) + + OPTIONS + + + + + + vpn1 + + ppp+:192.168.1.0/24 + + + + + + vpn2 + + ppp+:192.168.2.0/24 + + + + + + vpn3 + + ppp+:192.168.3.0/24 + + + + + +
+ + Your policies and rules can now be configured using separate + zones (vpn1, vpn2, and vpn3) for the three remote network. +
+
+
+ +
+ PPTP Server Running Behind your Firewall + + If you have a single external IP address, add the following to your + /etc/shorewall/rules file: + + + /etc/shorewall/rules + + + + + ACTION + + SOURCE + + DEST + + PROTO + + DEST PORT(S) + + SOURCE PORT(S) + + ORIGINAL DEST + + + + + + DNAT + + net + + loc:<server address> + + tcp + + 1723 + + + + + + + + DNAT + + net + + loc:<server address> + + 47 + + - + + + + + + + +
+ + If you have multiple external IP address and you want to forward a + single <external address>, add the following + to your /etc/shorewall/rules file: + + + /etc/shorewall/rules + + + + + ACTION + + SOURCE + + DEST + + PROTO + + DEST PORT(S) + + SOURCE PORT(S) + + ORIGINAL DEST + + + + + + DNAT + + net + + loc:<server address> + + tcp + + 1723 + + - + + <external address> + + + + DNAT + + net + + loc:<server address> + + 47 + + - + + - + + <external address> + + + +
+
+ +
+ PPTP Clients Running Behind your Firewall + + You shouldn't have to take any special action for this case + unless you wish to connect multiple clients to the same external server. + In that case, you must install the PPTP connection/tracking and NAT patch + from Netfilter Patch-O-Matic + (some distributions are now shipping with this patch installed). I + recommend that you also add these four lines to your + /etc/shorewall/modules file: + + loadmodule ip_conntrack_proto_gre +loadmodule ip_conntrack_pptp +loadmodule ip_nat_pptp +loadmodule ip_nat_proto_gre + + For LEAF/Bering users, the 2.4.20 kernel as already been patched as + described at the URL above and the three modules are included in the + Bering 1.2 modules tarball. + + + Installing the above modules will prevent any GRE tunnels that you + have from working correctly. + +
+ +
+ PPTP Client Running on your Firewall + + The PPTP GNU/Linux client is available at http://sourceforge.net/projects/pptpclient/. + Rather than use the configuration script that comes with the client, I + built my own. I also build my own kernel as + described above rather than using the mppe package that is + available with the client. My /etc/ppp/options file is mostly unchanged + from what came with the client (see below). + + The key elements of this setup are as follows: + + + + Define a zone for the remote network accessed via PPTP. + + + + Associate that zone with a ppp interface. + + + + Define rules for PPTP traffic to/from the firewall. + + + + Define rules for traffic two and from the remote zone. + + + + Here are examples from my setup: + + + /etc/shorewall/zones + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + cpq + + Compaq + + Compaq Intranet + + + +
+ + + /etc/shorewall/interfaces + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + - + + ppp+ + + + + + + + +
+ + + /etc/shorewall/hosts + + + + + ZONE + + HOST(S) + + OPTIONS + + + + + + - + + ppp+:!192.168.1.0/24 + + + + + +
+ + + /etc/shorewall/rules (For Shorewall versions up to and including + 1.3.9b) + + + + + ACTION + + SOURCE + + DEST + + PROTO + + DEST PORT(S) + + SOURCE PORT(S) + + ORIGINAL DEST + + + + + + ACCEPT + + fw + + net + + tcp + + 1723 + + + + + + + + ACCEPT + + fw + + net + + 47 + + - + + + + + + + +
+ + + /etc/shorewall/tunnels (For Shorewall versions 1.3.10 and later) + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + pptpclient + + net + + 0.0.0.0/0 + + + + + +
+ + I use the combination of interface and hosts file to define the + cpq zone because I also run a PPTP server on my firewall + (see above). Using this technique allows me to distinguish clients of my + own PPTP server from arbitrary hosts at Compaq; I assign addresses in + 192.168.1.0/24 to my PPTP clients and Compaq doesn't use that RFC1918 + Class C subnet. + + I use this script in /etc/init.d to control the client. The reason + that I disable ECN when connecting is that the Compaq tunnel servers + don't do ECN yet and reject the initial TCP connection request if I + enable ECN :-( + + #!/bin/sh +# +# /etc/rc.d/init.d/pptp +# +# chkconfig: 5 60 85 +# description: PPTP Link Control +# +NAME="Tandem" +ADDRESS=tunnel-tandem.compaq.com +USER='Tandem\tommy' +ECN=0 +DEBUG= + +start_pptp() { + echo $ECN > /proc/sys/net/ipv4/tcp_ecn + if /usr/sbin/pptp $ADDRESS user $USER noauth $DEBUG; then + touch /var/lock/subsys/pptp + echo "PPTP Connection to $NAME Started" + fi +} + +stop_pptp() { + if killall /usr/sbin/pptp 2> /dev/null; then + echo "Stopped pptp" + else + rm -f /var/run/pptp/* + fi + + # if killall pppd; then + # echo "Stopped pppd" + # fi + + rm -f /var/lock/subsys/pptp + + echo 1 > /proc/sys/net/ipv4/tcp_ecn +} + + +case "$1" in +start) + echo "Starting PPTP Connection to ${NAME}..." + start_pptp + ;; +stop) + echo "Stopping $NAME PPTP Connection..." + stop_pptp + ;; +restart) + echo "Restarting $NAME PPTP Connection..." + stop_pptp + start_pptp + ;; +status) + ifconfig + ;; +*) + echo "Usage: $0 {start|stop|restart|status}" + ;; +esac + + Here's my /etc/ppp/options file: + + # +# Identify this connection +# +ipparam Compaq +# +# Lock the port +# +lock +# +# We don't need the tunnel server to authenticate itself +# +noauth + ++chap ++chapms ++chapms-v2 + +multilink +mrru 1614 +# +# Turn off transmission protocols we know won't be used +# +nobsdcomp +nodeflate + +# +# We want MPPE +# +mppe-128 +mppe-stateless + +# +# We want a sane mtu/mru +# +mtu 1000 +mru 1000 + +# +# Time this thing out of it goes poof +# +lcp-echo-failure 10 +lcp-echo-interval 10 + + My /etc/ppp/ip-up.local file sets up the routes that I need to route + Compaq traffic through the PPTP tunnel: + + #/bin/sh + +case $6 in +Compaq) + route add -net 16.0.0.0 netmask 255.0.0.0 gw $5 $1 + route add -net 130.252.0.0 netmask 255.255.0.0 gw $5 $1 + route add -net 131.124.0.0 netmask 255.255.0.0 gw $5 $1 + ... + ;; +esac + + Finally, I run the following script every five minutes under crond + to restart the tunnel if it fails: + + #!/bin/sh +restart_pptp() { + /sbin/service pptp stop + sleep 10 + if /sbin/service pptp start; then + /usr/bin/logger "PPTP Restarted" + fi +} + +if [ -n "`ps ax | grep /usr/sbin/pptp | grep -v grep`" ]; then + exit 0 +fi + +echo "Attempting to restart PPTP" + +restart_pptp > /dev/null 2>&1 & + + Here's + a scriptand corresponding ip-up.local from Jerry Vonau + jvonau@home.com that controls two PPTP connections. +
+ +
+ PPTP Client running on your Firewall with PPTP Server in an ADSL + Modem + + Some ADSL systems in Europe (most notably in Austria) feature a PPTP + server built into an ADSL Modem. In this setup, an ethernet + interface is dedicated to supporting the PPTP tunnel between the firewall + and the Modem while the actual internet access is through + PPTP (interface ppp0). If you have this type of setup, you need to modify + the sample configuration that you downloaded as described in this section. + These changes are in addition to those described in + the QuickStart Guides. + + Lets assume the following: + + + + ADSL Modem connected through eth0 + + + + Modem IP address = 192.168.1.1 + + + + eth0 IP address = 192.168.1.2 + + + + The changes you need to make are as follows: + + + + Add this entry to /etc/shorewall/zones: + + + /etc/shorewall/zones + + + + + ZONE + + DISPLAY + + COMMENTS + + + + + + modem + + Modem + + ADSL Modem + + + +
+ + That entry defines a new zone called modem which + will contain only your ADSL modem. +
+ + + Add the following entry to /etc/shorewall/interfaces: + + + /etc/shorewall/interfaces + + + + + ZONE + + INTERFACE + + BROADCAST + + OPTIONS + + + + + + modem + + eth0 + + 192.168.1.255 + + dhcp + + + +
+ + You will of course modify the net entry in + /etc/shorewall/interfaces to specify ppp0 as the + interface as described in the QuickStart Guide corresponding to your + setup. +
+ + + Add the following to /etc/shorewall/tunnels: + + + /etc/shorewall/tunnels + + + + + TYPE + + ZONE + + GATEWAY + + GATEWAY ZONE + + + + + + pptpclient + + modem + + 192.168.1.1 + + + + + +
+ + That entry allows a PPTP tunnel to be established between your + Shorewall system and the PPTP server in the modem. +
+
+
+
\ No newline at end of file diff --git a/Shorewall-docsN/ProxyARP.xml b/Shorewall-docsN/ProxyARP.xml new file mode 100644 index 000000000..875cfe0d0 --- /dev/null +++ b/Shorewall-docsN/ProxyARP.xml @@ -0,0 +1,192 @@ + + +
+ + + + Proxy ARP + + + + Tom + + Eastep + + + + 2004-02-14 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + Proxy ARP allows you to insert a firewall in front of a set of servers + without changing their IP addresses and without having to re-subnet. Before + you try to use this technique, I strongly recommend that you read the Shorewall Setup Guide. + +
+ Example + + The following figure represents a Proxy ARP environment. + + + + Proxy ARP can be used to make the systems with addresses + 130.252.100.18 and 130.252.100.19 appear to be on the upper + (130.252.100.*) subnet. Assuming that the upper firewall interface is eth0 + and the lower interface is eth1, this is accomplished using the following + entries in /etc/shorewall/proxyarp: + + #ADDRESS INTERFACE EXTERNAL HAVEROUTE PERSISTENT +130.252.100.18 eth1 eth0 no yes +130.252.100.19 eth1 eth0 no yes + + Be sure that the internal systems (130.242.100.18 and 130.252.100.19 + in the above example) are not included in any specification in + /etc/shorewall/masq or /etc/shorewall/nat. + + + I've used an RFC1918 IP address for eth1 - that IP address is + largely irrelevant (see below). + + + The lower systems (130.252.100.18 and 130.252.100.19) should have + their subnet mask and default gateway configured exactly the same way that + the Firewall system's eth0 is configured. In other words, they should + be configured just like they would be if they were parallel to the + firewall rather than behind it. + + + Do not add the Proxy ARP'ed address(es) (130.252.100.18 and + 130.252.100.19 in the above example) to the external interface (eth0 in + this example) of the firewall. + + + While the address given to the firewall interface is largely + irrelevant, one approach you can take is to make that address the same as + the address of your external interface! + + + + It the diagram above, eth1 + has been given the address 130.252.100.17, the same as + eth0. Note though that the VLSM is 32 so there is no + network associated with this address. This is the approach that I take with my DMZ. + + + Your distribution's network configuration GUI may not be + capable of configuring a device in this way. It may complain about the + duplicate address or it may configure the address incorrectly. Here is + what the above configuration should look like when viewed using + ip (the part of the output that is in bold text is relevant): + + gateway:~# ip addr ls eth1 +3: eth1: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000 + link/ether 00:a0:cc:d1:db:12 brd ff:ff:ff:ff:ff:ff + inet 130.252.100.17/32 scope global eth1 +gateway:~# + + Note in particular that there is no broadcast address. Here is how I configure a device in this + way under Debian. + +
+ +
+ ARP cache + + A word of warning is in order here. ISPs typically configure their + routers with a long ARP cache timeout. If you move a system from parallel + to your firewall to behind your firewall with Proxy ARP, it will probably + be HOURS before that system can communicate with the internet. There are a + couple of things that you can try: + + + + A reading of TCP/IP Illustrated, Vol 1 by + Stevens revealsCourtesy of Bradey Honsinger + that a gratuitous ARP packet should cause the ISP's + router to refresh their ARP cache (section 4.7). A gratuitous ARP is + simply a host requesting the MAC address for its own IP; in addition + to ensuring that the IP address isn't a duplicate... + +
+ if the host sending the gratuitous ARP has just changed its + hardware address..., this packet causes any other host...that has an + entry in its cache for the old hardware address to update its ARP + cache entry accordingly. +
+ + Which is, of course, exactly what you want to do when you switch + a host from being exposed to the Internet to behind Shorewall using + proxy ARP (or one-to-one NAT for that matter). Happily enough, recent + versions of Redhat's iputils package include arping, + whose -U flag does just that: + + arping -U -I <net if> <newly proxied IP> +arping -U -I eth0 66.58.99.83 # for example + + Stevens goes on to mention that not all systems respond + correctly to gratuitous ARPs, but googling for arping -U + seems to support the idea that it works most of the time. + + To use arping with Proxy ARP in the above example, you would + have to: + + shorewall clear +ip addr add 130.252.100.18 dev eth0 +ip addr add 130.252.100.19 dev eth0 +arping -U -I eth0 130.252.100.18 +arping -U -I eth0 130.252.100.19 +ip addr del 130.252.100.18 dev eth0 +ip addr del 130.252.100.19 dev eth0 +shorewall start +
+ + + You can call your ISP and ask them to purge the stale ARP cache + entry but many either can't or won't purge individual entries. + +
+ + You can determine if your ISP's gateway ARP cache is stale using + ping and tcpdump. Suppose that we suspect that the gateway router has a + stale ARP cache entry for 130.252.100.19. On the firewall, run tcpdump as + follows: + + tcpdump -nei eth0 icmp + + Now from 130.252.100.19, ping the ISP's gateway (which we will + assume is 130.252.100.254): + + ping 130.252.100.254 + + We can now observe the tcpdump output: + + 13:35:12.159321 0:4:e2:20:20:33 0:0:77:95:dd:19 ip 98: 130.252.100.19 > 130.252.100.254: icmp: echo request (DF) +13:35:12.207615 0:0:77:95:dd:19 0:c0:a8:50:b2:57 ip 98: 130.252.100.254 > 130.252.100.177 : icmp: echo reply + + Notice that the source MAC address in the echo request is different + from the destination MAC address in the echo reply!! In this case + 0:4:e2:20:20:33 was the MAC of the firewall's eth0 NIC while + 0:c0:a8:50:b2:57 was the MAC address of the system on the lower left. In + other words, the gateway's ARP cache still associates 130.252.100.19 + with the NIC in that system rather than with the firewall's eth0. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/ReleaseModel.xml b/Shorewall-docsN/ReleaseModel.xml new file mode 100644 index 000000000..3b69d650f --- /dev/null +++ b/Shorewall-docsN/ReleaseModel.xml @@ -0,0 +1,152 @@ + + +
+ + + + Shorewall Release Model + + + + Tom + + Eastep + + + + 2004-07-03 + + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Shorewall Releases + + + + Releases have a three-level identification + x.y.z (e.g., 2.0.3). + + + + The first two levels (x.y) designate the + Major Release Number (e.g., 2.0). + + + + The third level (z) designates the + Minor Release Number. + + + + Even numbered major releases (e.g., 1.4, 2.0, 2.2, ...) are + Stable Releases. No new features are added to + stable releases and new minor releases of a stable release will only + contain bug fixes. Installing a new minor release for the major + release that you are currently running involves no migration issues + (for example, if you are running 1.4.10 and I release 1.4.11, your + current configuration is 100% compatible with the new release). + + + + Support is available through the Mailing List for the two most + recent Stable Releases. + + + + Odd numbered major releases (e.g., 2.1, 2.3, ...) are + Development Releases. Development releases are + where new functionality is introduced. Documentation for new features + will be available but it may not be up to the standards of the stable + release documentation. Sites running Development Releases should be + prepared to play an active role in testing new features. Bug fixes and + problem resolution for the development release take a back seat to + support of the stable releases. Problem reports for the current + development release should be sent to the Shorewall Development + Mailing List. + + + + When the level of functionality of the current development + release is judged adaquate, the Beta period for + a new Stable release will begin. Beta releases have identifications of + the form x.y.0-BetaN where x.y + is the number of the next Stable Release and N=1,2,3... + . Betas are expected to occur rougly once per year. Beta releases may + contain new functionality not present in the previous beta release + (e.g., 2.2.0-Beta4 may contain functionality not present in + 2.2.0-Beta3). When I'm confident that the current Beta release is + stable, I will release the first Release Candidate. + Release candidates have identifications of the form + x.y.0-RCn where x.y is the + number of the next Stable Release and n=1,2,3... + . Release candidates contain no new functionailty -- they only contain + bug fixes. When the stability of the current release candidate is + judged to be sufficient then that release candidate will be released + as the new stable release (e.g., 2.2.0). At that time, the new stable + release and the prior stable release are those that are supported. + + + + What does it mean for a major release to be + supported? It means that I will answer + questions about the release and that if a bug is found, I will fix the + bug and include the fix in the next minor release. + + + + Between minor releases, bug fixes will continue to be made + available through the Errata page for + each major release. + + + + The currently-supported major releases are 1.4 and 2.0. +
+ +
+ Old Release Model + + This release model described above was adopted on 2003-07-03. Prior + to that time, a different release model was followed. Highlights of that + model were: + + + + Releases were numbered in a manner similar to the current + release model. + + + + New functionality was added in minor releases of the current + major release. There was no concept of Stable vs Development major + releases. + + + + Bug fix only releases were always against the last minor release + of a major release and had identifications of the form + x.y.zX (e.g., 2.0.3c) where X=1,b,c,... + . Consequently, if a user required a bug fix but was not running the + last minor release of the associated major release then it was + necessary to accept new functionailty along with the bug fix. + + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/Shorewall_Doesnt.xml b/Shorewall-docsN/Shorewall_Doesnt.xml new file mode 100644 index 000000000..940b11ffe --- /dev/null +++ b/Shorewall-docsN/Shorewall_Doesnt.xml @@ -0,0 +1,98 @@ + + +
+ + + + Some Things that Shorewall Does Not Do + + + Tom + + Eastep + + + 2004-06-08 + + + 2003 + + 2004 + + Thomas M Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Shorewall Does not: + + + + Act as a Personal Firewall that allows internet + access by application. + + + + Work with an Operating System other than Linux (version >= + 2.4.0) + + + + Do content filtering: + + + + HTTP - better to use Squid + for that. + + + + Email -- Install something like Postfix on your firewall and + integrate it with SpamAssassin + and Amavisd-new. + + + + + + Set up Routing (except to support Proxy + ARP) + + + + Do Traffic Shaping/Bandwidth Management (although it provides + hooks to interface to Traffic + Control/Bandwidth Management solutions) + + + + Configure/manage Network Devices (your Distribution includes + tools for that). + + +
+ +
+ In Addition: + + + + Shorewall does not contain any support for Netfilter Patch-O-Matic + features or any other features that require kernel patching -- + Shorewall only supports features from released kernels. + + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/Shorewall_Squid_Usage.xml b/Shorewall-docsN/Shorewall_Squid_Usage.xml new file mode 100644 index 000000000..1443a9b38 --- /dev/null +++ b/Shorewall-docsN/Shorewall_Squid_Usage.xml @@ -0,0 +1,317 @@ + + +
+ + + + Using Shorewall with Squid + + + + Tom + + Eastep + + + + 2004-04-19 + + + 2003-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + + This page covers Shorewall configuration to use with Squid running as a Transparent + Proxy or as a Manual Proxy. + + If you are running Shorewall 1.3, please see this documentation. + +
+ Squid as a Transparent Proxy + + + Please observe the following general requirements: + + + + In all cases, Squid should be configured to run as a transrent + proxy as described at http://tldp.org/HOWTO/mini/TransparentProxy.html. + + + + The following instructions mention the files + /etc/shorewall/start and /etc/shorewall/init -- if you don't + have those files, siimply create them. + + + + When the Squid server is in the DMZ zone or in the local zone, + that zone must be defined ONLY by its interface -- no + /etc/shorewall/hosts file entries. That is because the packets being + routed to the Squid server still have their original destination IP + addresses. + + + + You must have iptables installed on your Squid server. + + + + If you run a Shorewall version earlier than 1.4.6, you must + have NAT and MANGLE enabled in your /etc/shorewall/conf file + + NAT_ENABLED=Yes +MANGLE_ENABLED=Yes + + + +
+ +
+ Configurations + + Three different configurations are covered: + + + Squid (transparent) Running on the Firewall + + Squid (transparent) Running in the local Network + + Squid (transparent) Running in a DMZ + + +
+ Squid (transparent) Running on the Firewall + + You want to redirect all local www connection requests EXCEPT + those to your own http server (206.124.146.177) to a Squid transparent + proxy running on the firewall and listening on port 3128. Squid will of + course require access to remote web servers. + + In /etc/shorewall/rules: + + #ACTION SOURCE DEST PROTO DEST PORT(S) SOURCE ORIGINAL +# PORT(S) DEST +REDIRECT loc 3228 tcp www - !206.124.146.177 +ACCEPT fw net tcp www + + There may be a requirement to exclude additional destination hosts + or networks from being redirected. For example, you might also want + requests destined for 130.252.100.0/24 to not be routed to Squid. + + If you are running Shorewall version 1.4.5 or later, you may just + add the additional hosts/networks to the ORIGINAL DEST column in your + REDIRECT rule. + + /etc/shorewall/rules:#ACTION SOURCE DEST PROTO DEST PORT(S) SOURCE ORIGINAL +# PORT(S) DEST +REDIRECT loc 3228 tcp www - !206.124.146.177,130.252.100.0/24 + + If you are running a Shorewall version earlier than 1.4.5, you + must add a manual rule in /etc/shorewall/start: + + run_iptables -t nat -I loc_dnat -p tcp --dport www -d 130.252.100.0/24 -j RETURN + + To exclude additional hosts or networks, just add additional + similar rules. +
+ +
+ Squid (transparent) Running in the local network + + You want to redirect all local www connection requests to a Squid + transparent proxy running in your local zone at 192.168.1.3 and + listening on port 3128. Your local interface is eth1. There may also be + a web server running on 192.168.1.3. It is assumed that web access is + already enabled from the local zone to the internet.. + + + + * On your firewall system, issue the following command + + echo 202 www.out >> /etc/iproute2/rt_tables + + + + In /etc/shorewall/init, put: + + if [ -z "`ip rule list | grep www.out`" ] ; then + ip rule add fwmark CA table www.out # Note 0xCA = 202 + ip route add default via 192.168.1.3 dev eth1 table www.out + ip route flush cache + echo 0 > /proc/sys/net/ipv4/conf/eth1/send_redirects +fi + + + + + If you are running Shorewall 1.4.1 or Shorewall 1.4.1a, + please upgrade to Shorewall 1.4.2 or later. + + + If you are running Shorewall 1.4.2 or later, then in + /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +loc eth1 detect routeback + + + + In /etc/shorewall/rules: + + #ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT loc loc tcp www + + + + Alternativfely, if you are running Shorewall 1.4.0 you can + have the following policy in place of the above rule. + + /etc/shorewall/policy + + #SOURCE DESTINATION POLICY +loc loc ACCEPT + + + + + + In /etc/shorewall/start add: + + iptables -t mangle -A PREROUTING -i eth1 -s ! 192.168.1.3 -p tcp --dport 80 -j MARK --set-mark 202 + + + + On 192.168.1.3, arrange for the following command to be + executed after networking has come up + + iptables -t nat -A PREROUTING -i eth0 -d ! 192.168.1.3 -p tcp --dport 80 -j REDIRECT --to-ports 3128 + + If you are running RedHat on the server, you can simply + execute the following commands after you have typed the iptables + command above: + + iptables-save > /etc/sysconfig/iptables +chkconfig --level 35 iptables on + + +
+ +
+ Squid (transparent) Running in the DMZ + + You have a single Linux system in your DMZ with IP address + 192.0.2.177. You want to run both a web server and Squid on that system. + Your DMZ interface is eth1 and your local interface is eth2. + + + + On your firewall system, issue the following command + + echo 202 www.out >> /etc/iproute2/rt_tables + + + + In /etc/shorewall/init, put: + + if [ -z "`ip rule list | grep www.out`" ] ; then + ip rule add fwmark CA table www.out # Note 0xCA = 202 + ip route add default via 192.0.2.177 dev eth1 table www.out + ip route flush cache +fi + + + + Do one of the following: + + + + In /etc/shorewall/start add + + iptables -t mangle -A PREROUTING -i eth2 -p tcp --dport 80 -j MARK --set-mark 202 + + + + Set MARK_IN_FORWARD_CHAIN=No in /etc/shorewall/shorewall.conf + and add the following entry in /etc/shorewall/tcrules: + + #MARK SOURCE DESTINATION PROTOCOL PORT +202 eth2 0.0.0.0 tcp 80 + + + + Run Shorewall 1.3.14 or later and add the following entry + in /etc/shorewall/tcrules: + + #MARK SOURCE DESTINATION PROTOCOL PORT +202:P eth2 0.0.0.0 tcp 80 + + + + + + In /etc/shorewall/rules, you will need: + + #ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT loc dmz tcp 80 +ACCEPT dmz net tcp 80 + + + + On 192.0.2.177 (your Web/Squid server), arrange for the + following command to be executed after networking has come up + + iptables -t nat -A PREROUTING -i eth0 -d ! 192.0.2.177 -p tcp --dport 80 -j REDIRECT --to-ports 3128 + + If you are running RedHat on the server, you can simply + execute the following commands after you have typed the iptables + command above: + + iptables-save > /etc/sysconfig/iptables +chkconfig --level 35 iptables on + + +
+
+ +
+ Squid as a Manual Proxy + + Assume that Squid is running in zone SZ and listening on port SP; + all web sites that are to be accessed through Squid are in the + net zone. Then for each zone Z that needs access to the + Squid server. + + /etc/shorewall/rules: + + #ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT Z SZ tcp SP +ACCEPT SZ net tcp 80 + + + Squid on the firewall listening on port 8080 with access from the + <quote>loc</quote> zone: + + /etc/shorewall/rules:#ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT loc fw tcp 8080 +ACCEPT fw net tcp 80 + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/Shorewall_and_Aliased_Interfaces.xml b/Shorewall-docsN/Shorewall_and_Aliased_Interfaces.xml new file mode 100644 index 000000000..f630dedbf --- /dev/null +++ b/Shorewall-docsN/Shorewall_and_Aliased_Interfaces.xml @@ -0,0 +1,292 @@ + + +
+ + + + Shorewall and Aliased Interfaces + + + + Tom + + Eastep + + + + 2004-06-29 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Background + + The traditional net-tools contain a program called + ifconfig which is used to configure network devices. + ifconfig introduced the concept of aliased or + virtual interfaces. These virtual interfaces have + names of the form interface:integer (e.g., eth0:0) and ifconfig treats them more or + less like real interfaces. + + + ifconfig + + [root@gateway root]# ifconfig eth0:0 +eth0:0 Link encap:Ethernet HWaddr 02:00:08:3:FA:55 + inet addr:206.124.146.178 Bcast:206.124.146.255 Mask:255.255.255.0 + UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 + Interrupt:11 Base address:0x2000 +[root@gateway root]# + + + The ifconfig utility is being gradually phased out in favor of the + ip utility which is part of the iproute package. The + ip utility does not use the concept of aliases or virtual interfaces but + rather treats additional addresses on an interface as objects in their own + right. The ip utility does provide for interaction with ifconfig in that + it allows addresses to be labeled where these labels + take the form of ipconfig virtual interfaces. + + + ip + + [root@gateway root]# ip addr show dev eth0 +2: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc htb qlen 100 + link/ether 02:00:08:e3:fa:55 brd ff:ff:ff:ff:ff:ff + inet 206.124.146.176/24 brd 206.124.146.255 scope global eth0 + inet 206.124.146.178/24 brd 206.124.146.255 scope global secondary eth0:0 +[root@gateway root]# + + One cannot type + ip addr show dev eth0:0 because + eth0:0 is a label + for a particular address rather than a device name.[root@gateway root]# ip addr show dev eth0:0 +Device "eth0:0" does not exist. +[root@gateway root]# + + + The iptables program doesn't support virtual interfaces in + either it's -i or -o command options; as + a consequence, Shorewall does not allow them to be used in the + /etc/shorewall/interfaces file or anywhere else except as described in the + discussion below. +
+ +
+ Adding Addresses to Interfaces + + Most distributions have a facility for adding additional addresses + to interfaces. If you have already used your distribution's capability + to add your required addresses, you can skip this section. + + Shorewall provides facilities for automatically adding addresses to + interfaces as described in the following section. It is also easy to add + them yourself using the ip utility. The + above alias was added using: + + ip addr add 206.124.146.178/24 brd 206.124.146.255 dev eth0 label eth0:0 + + You probably want to arrange to add these addresses when the device + is started rather than placing commands like the above in one of the + Shorewall extension scripts. For example, on RedHat systems, you can place + the commands in /sbin/ifup-local: + + #!/bin/sh + +case $1 in + eth0) + /sbin/ip addr add 206.124.146.177 dev eth0 label eth0:0 + ;; +esac + + RedHat systems also allow adding such aliases from the network + administration GUI (which only works well if you have a graphical + environment on your firewall). +
+ +
+ So how do I handle more than one address on an interface? + + The answer depends on what you are trying to do with the interfaces. + In the sub-sections that follow, we'll take a look at common + scenarios. + +
+ Separate Rules + + If you need to make a rule for traffic to/from the firewall itself + that only applies to a particular IP address, simply qualify the $FW + zone with the IP address. + + + allow SSH from net to eth0:0 above + + /etc/shorewall/rules#ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT net $FW:206.124.146.178 tcp 22 + +
+ +
+ DNAT + + Suppose that I had set up eth0:0 as above and I wanted to port + forward from that virtual interface to a web server running in my local + zone at 192.168.1.3. That is accomplised by a single rule in the + /etc/shorewall/rules file: + + #ACTION SOURCE DEST PROTO DEST PORT(S) SOURCE ORIGINAL +# PORT(S) DEST +DNAT net loc:192.168.1.3 tcp 80 - 206.124.146.178 +
+ +
+ SNAT + + If you wanted to use eth0:0 as the IP address for outbound + connections from your local zone (eth1), then in /etc/shorewall/masq: + + #INTERFACE SUBNET ADDRESS +eth0 eth1 206.124.146.178 + + Shorewall can create the alias (additional address) for you if you + set ADD_SNAT_ALIASES=Yes in /etc/shorewall/shorewall.conf. + Beginning with Shorewall 1.3.14, Shorewall can actually create the + label (virtual interface) so that you can see the created + address using ifconfig. In addition to setting ADD_SNAT_ALIASES=Yes, you + specify the virtual interface name in the INTERFACE column as follows. + + /etc/shorewall/masq#INTERFACE SUBNET ADDRESS +eth0:0 eth1 206.124.146.178 + + Shorewall can also set up SNAT to round-robin over a range of IP + addresses. Do do that, you specify a range of IP addresses in the + ADDRESS column. If you specify a label in the INTERFACE column, + Shorewall will use that label for the first address of the range and + will increment the label by one for each subsequent label. + + /etc/shorewall/masq#INTERFACE SUBNET ADDRESS +eth0:0 eth1 206.124.146.178-206.124.146.180 + + The above would create three IP addresses: + + eth0:0 = 206.124.146.178 +eth0:1 = 206.124.146.179 +eth0:2 = 206.124.146.180 +
+ +
+ One-to-one NAT + + If you wanted to use one-to-one NAT to link eth0:0 with local address 192.168.1.3, you + would have the following in /etc/shorewall/nat: + + #EXTERNAL INTERFACE INTERNAL ALL INTERFACES LOCAL +206.124.146.178 eth0 192.168.1.3 no no + + Shorewall can create the alias (additional address) for you if you + set ADD_IP_ALIASES=Yes in /etc/shorewall/shorewall.conf. Beginning with + Shorewall 1.3.14, Shorewall can actually create the label + (virtual interface) so that you can see the created address using + ifconfig. In addition to setting ADD_IP_ALIASES=Yes, you specify the + virtual interface name in the INTERFACE column as follows. + + /etc/shorewall/nat#EXTERNAL INTERFACE INTERNAL ALL INTERFACES LOCAL +206.124.146.178 eth0:0 192.168.1.3 no no + + In either case, to create rules in /etc/shorewall/rules + that pertain only to this NAT pair, you simply qualify the local zone + with the internal IP address. + + + You want to allow SSH from the net to 206.124.146.178 a.k.a. + 192.168.1.3. + + #ACTION SOURCE DEST PROTO DEST PORT(S) +ACCEPT net loc:192.168.1.3 tcp 22 + +
+ +
+ MULTIPLE SUBNETS + + Sometimes multiple IP addresses are used because there are + multiple subnetworks configured on a LAN segment. This technique does + not provide for any security between the subnetworks if the users of the + systems have administrative privileges because in that case, the users + can simply manipulate their system's routing table to bypass your + firewall/router. Nevertheless, there are cases where you simply want to + consider the LAN segment itself as a zone and allow your firewall/router + to route between the two subnetworks. + + + Local interface eth1 interfaces to 192.168.1.0/24 and + 192.168.20.0/24. The primary IP address of eth1 is 192.168.1.254 and + eth1:0 is 192.168.20.254. You simply want your firewall to route + between these two subnetworks. + + This example applies to Shorewall 1.4.2 and later. + + In /etc/shorewall/zones: + + #ZONE DISPLAY DESCRIPTION +loc Local Local Zone + + + In /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +log eth1 192.168.1.255,192.168.20.255 routeback + + In /etc/shorewall/rules, simply specify + ACCEPT rules for the traffic that you want to permit. + + + + Local interface eth1 interfaces to 192.168.1.0/24 and + 192.168.20.0/24. The primary IP address of eth1 is 192.168.1.254 and + eth1:0 is 192.168.20.254. You want to make these subnetworks into + separate zones and control the access between them (the users of the + systems do not have administrative privileges). + + This example applies to Shorewall 1.4.2 and later. + + In /etc/shorewall/zones: + + #ZONE DISPLAY DESCRIPTION +loc Local Local Zone 1 +loc2 Local2 Local Zone 2 + + In /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +- eth1 192.168.1.255,192.168.20.255 + + In /etc/shorewall/hosts: + + #ZONE HOSTS OPTIONS +loc eth1:192.168.1.0/24 +loc2 eth1:192.168.20.0/24 + + In /etc/shorewall/rules, simply specify + ACCEPT rules for the traffic that you want to permit. + +
+
+
\ No newline at end of file diff --git a/Shorewall-docsN/Shorewall_and_Kazaa.xml b/Shorewall-docsN/Shorewall_and_Kazaa.xml new file mode 100644 index 000000000..7af47bdd0 --- /dev/null +++ b/Shorewall-docsN/Shorewall_and_Kazaa.xml @@ -0,0 +1,61 @@ + + +
+ + + + Kazaa Filtering + + + + Tom + + Eastep + + + + 2004-02-04 + + + 2003-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + Beginning with Shorewall version 1.4.8, Shorewall can interface to + ftwall. ftwall is part of the p2pwall project and is a + user-space filter for applications based on the Fast Track + peer to peer protocol. Applications using this protocol include Kazaa, + KazaaLite, iMash and Grokster. + + To filter traffic from your loc zone with ftwall, you + insert the following rules near the top of + your /etc/shorewall/rules file (before any ACCEPT rules whose source is the + loc zone). + + #ACTION SOURCE DEST PROTO + QUEUE loc net tcp + QUEUE loc net udp + QUEUE loc fw udp + + Now simply configure ftwall as described in the ftwall documentation + and restart Shorewall. + + + There are ftwall init scripts for use with SuSE + and Debian Linux at http://shorewall.net/pub/shorewall/contrib/ftwall. + +
\ No newline at end of file diff --git a/Shorewall-docsN/UserSets.xml b/Shorewall-docsN/UserSets.xml new file mode 100644 index 000000000..efbd186cd --- /dev/null +++ b/Shorewall-docsN/UserSets.xml @@ -0,0 +1,209 @@ + + +
+ + + + Controlling Output Traffic by UID/GID + + + + Tom + + Eastep + + + + 2003-09-19 + + + 2003 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Overview + + This capability was added in Shorewall release 1.4.7. + + Netfilter provides the capability to filter packets generated on the + firewall system by User Id and/or Group Id. Shorewall provides two + separate but related ways to use this Netfilter capability: + + + + Shorewall allows you to define collections of users called + User Sets and then to + restrict certain rules in /etc/shorewall/rules to a given User Set. + + + + Shorewall also allows you to restrict a given rule to a particular user and/or group. + + + + Since only packets created by programs running on the Shorewall box + itself, only rules whose SOURCE is the firewall ($FW) may be restricted + using either of the facilities. +
+ +
+ User Sets + + Given the way that this facility is implemented in Shorewall, it is + not possible to control logging of individual rules using a User Set and + logging is rather specified on the User Set itself. + + User Sets are defined in the /etc/shorewall/usersets file. Columns + in that file include: + + + + USERSET + + + The name of a User Set. Must be a legal shell identifier of no + more than six (6) characters in length. + + + + + REJECT + + + Log level for connections rejected for this User Set. + + + + + ACCEPT + + + Log level for connections accepted for this User Set. + + + + + DROP + + + Log level for connections dropped for this User Set. + + + + + In the REJECT and ACCEPT columns, if you don't want to specify a + value in the column but you want to specify a value in a following column, + you may enter -. + + Users and/or groups are added to User Sets using the + /etc/shorewall/users file. Columns in that file are: + + + + USERSET + + + The name of a User Set defined in /etc/shorewall/usersets. + + + + + USER + + + The name of a user defined on the system or a user number. + + + + + GROUP + + + The name of a group defined on the system or a number. + + + + + Only one of the USER and GROUP column needs to be non-empty. If you + wish to specify a GROUP but not a USER, enter - in the user + column. + + If both USER and GROUP are specified then only programs running + under that USER:GROUP pair will match rules specifying the User Set named + in the USERSET column. + + Once a user set has been defined, its name may be placed in the USER + SET column of the /etc/shorewall/rules file. + + + When the name of a user set is given in the USER SET column, you + may not include a log level in the ACTION column; logging of such rules + is governed solely by the user set's definition in the + /etc/shorewall/userset file. + + + + You want members of the <quote>admin</quote> group and + <quote>root</quote> to be able to use ssh on the firewall to connect to + local systems. You want to log all connections accepted for these users + using syslog at the <quote>info</quote> level. + + /etc/shorewall/usersets + + #USERSET REJECT ACCEPT DROP +admins - info + + /etc/shorewall/users + + #USERSET USER GROUP +admins - admin +admins root + + /etc/shorewall/rules + + #ACTION SOURCE DESTINATION PROTO PORT SOURCE ORIGINAL RATE USER +# PORT(S) DESTINATION SET + +ACCEPT $FW loc tcp 22 - - - admins + +
+ +
+ Restricting a rule to a particular user and/or group + + In cases where you may want to restrict a rule to a particular user + and/or group, the USER SET column in the rules file may be specified as: + + [ <user name or number> ] : [ <group name or number> ] + + When a user and/or group name is given in the USER SET column, it is + OK to specify a log level in the ACTION column. + + + You want user <emphasis role="bold">mail</emphasis> to be able to + send email from the firewall to the local net zone + + /etc/shorewall/rules (be sure to note the : in the + USER SET column entry). + + #ACTION SOURCE DESTINATION PROTO PORT SOURCE ORIGINAL RATE USER +# PORT(S) DESTINATION SET + +ACCEPT $FW loc tcp 25 - - - mail: + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/User_defined_Actions.xml b/Shorewall-docsN/User_defined_Actions.xml new file mode 100755 index 000000000..534a9b58a --- /dev/null +++ b/Shorewall-docsN/User_defined_Actions.xml @@ -0,0 +1,303 @@ + + +
+ + + + User-defined Actions + + + + Tom + + Eastep + + + + 2004-03-25 + + + 2003 + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Creating a New Action + + Prior to Shorewall version 1.4.9, rules in /etc/shorewall/rules + were limited to those defined by Netfilter (ACCEPT, DROP, REJECT, etc.). + Beginning with Shorewall version 1.4.9, users may use sequences of these + elementary operations to define more complex actions. + + To define a new action: + + + + Add a line to /etc/shorewall/actions + that names your new action. Action names must be valid shell variable + names as well as valid Netfilter chain names. It is recommended that + the name you select for a new action begins with with a capital + letter; that way, the name won't conflict with a Shorewall-defined + chain name. + + Beginning with Shorewall-2.0.0-Beta1, the name of the action may + be optionally followed by a colon (:) and ACCEPT, DROP + or REJECT. When this is done, the named action will become the + common action for policies of type ACCEPT, DROP + or REJECT respectively. The common action is applied immediately + before the policy is enforced (before any logging is done under that + policy) and is used mainly to suppress logging of uninteresting + traffic which would otherwise clog your logs. The same policy name can + appear in multiple actions; the last such action for each policy name + is the one which Shorewall will use. + + Shorewall includes pre-defined actions for DROP and REJECT -- + see below. + + + + Once you have defined your new action name (ActionName), then + copy /usr/share/shorewall/action.template to /etc/shorewall/action.ActionName + (for example, if your new action name is Foo then copy + /usr/share/shorewall/action.template to + /etc/shorewall/action.Foo). + + + + Now modify the new file to define the new action. + + + + Columns in the action.template file are as follows: + + + + TARGET - Must be ACCEPT, DROP, REJECT, LOG, CONTINUE, QUEUE or + <action> where <action> + is a previously-defined action (that is, it must precede the action + being defined in this file in your /etc/shorewall/actions + file). These actions have the same meaning as they do in the + /etc/shorewall/rules file (CONTINUE terminates + processing of the current action and returns to the point where that + action was invoked). The TARGET may optionally be followed by a colon + (:) and a syslog log level (e.g, REJECT:info or + ACCEPT:debugging). This causes the packet to be logged at the + specified level. You may also specify ULOG (must be in upper case) as + a log level.This will log to the ULOG target for routing to a separate + log through use of ulogd (http://www.gnumonks.org/projects/ulogd). + + + + SOURCE - Source hosts to which the rule applies. A + comma-separated list of subnets and/or hosts. Hosts may be specified + by IP or MAC address; mac addresses must begin with ~ + and must use - as a separator. + + Alternatively, clients may be specified by interface name. For + example, eth1 specifies a client that communicates with the firewall + system through eth1. This may be optionally followed by another colon + (:) and an IP/MAC/subnet address as described above + (e.g., eth1:192.168.1.5). + + + + DEST - Location of Server. Same as above with the exception that + MAC addresses are not allowed. + + Unlike in the SOURCE column, you may specify a range of up to + 256 IP addresses using the syntax <first ip>-<last + ip>. + + + + PROTO - Protocol - Must be tcp, udp, + icmp, a number, or all. + + + + DEST PORT(S) - Destination Ports. A comma-separated list of Port + names (from /etc/services), port numbers or port + ranges; if the protocol is icmp, this column is + interpreted as the destination icmp-type(s). + + A port range is expressed as <low port>:<high + port>. + + This column is ignored if PROTOCOL = all but must be entered if + any of the following ields are supplied. In that case, it is suggested + that this field contain -. + + If your kernel contains multi-port match support, then only a + single Netfilter rule will be generated if in this list and in the + CLIENT PORT(S) list below: + + + + There are 15 or less ports listed. + + + + No port ranges are included. + + + + Otherwise, a separate rule will be generated for each port. + + + + SOURCE PORT(S) - Port(s) used by the client. If omitted, any + source port is acceptable. Specified as a comma-separated list of port + names, port numbers or port ranges. + + If you don't want to restrict client ports but need to + specify an ADDRESS in the next column, then place "-" in this + column. + + If your kernel contains multi-port match support, then only a + single Netfilter rule will be generated if in this list and in the + DEST PORT(S) list above: + + + + There are 15 or less ports listed. + + + + No port ranges are included. + + + + Otherwise, a separate rule will be generated for each port. + + + + RATE LIMIT - You may rate-limit the rule by placing a value in + this column: + + <rate>/<interval>[:<burst>]where + <rate> is the number of connections per + <interval> (sec or + min) and <burst> is the + largest burst permitted. If no <burst> is + given, a value of 5 is assumed. There may be no whitespace embedded in + the specification. + + Example: 10/sec:20 + + + + USER/GROUP - For output rules (those with the firewall as their + source), you may control connections based on the effective UID and/or + GID of the process requesting the connection. This column can contain + any of the following: + + + [!]<user number>[:] + + [!]<user name>[:] + + [!]:<group number> + + [!]:<group name> + + [!]<user number>:<group + number> + + [!]<user name>:<group + number> + + [!]<user inumber>:<group + name> + + [!]<user name>:<group + name> + + + + + Omitted column entries should be entered using a dash ("-:). + + Example: + + /etc/shorewall/actions: + + LogAndAccept/etc/shorewall/action.LogAndAccept LOG:info + ACCEPT + + To use your action, in /etc/shorewall/rules you + might do something like: + + #ACTION SOURCE DEST PROTO DEST PORT(S) +LogAndAccept loc fw tcp 22 +
+ +
+ Standard Actions In Shorewall 2.0 + + Beginning with Shorewall 2.0.0-Beta1, Shorewall includes a number of + defined actions. These defined actions are listed in /usr/share/shorewall/actions.std. + + The /usr/share/shorewall/actions.std file + includes the common actions Drop for DROP policies and + Reject for REJECT policies. + + + Example of Using a Standard Action + + Suppose that you wish to enable ftp from your local network to + your firewall. In /etc/shorewall/rules: + + #ACTION SOURCE DEST PROTO ... +AllowFTP loc fw + + + /usr/share/shorewall/actions.std is processed + before /etc/shorewall/actions and if you have any + actions defined with the same name as one in /usr/share/shorewall/actions.std, + your version in /etc/shorewall will + be the one used. So if you wish to modify a standard action, simply copy + the associated action file from /usr/share/shorewall + to /etc/shorewall and modify + it to suit your needs. The next shorewall restart will + cause your action to be installed in place of the standard one. In + particular, if you want to modify the common actions Drop + or Reject, simply copy action.Drop or + Action.Reject to /etc/shorewall + and modify that copy as desired. +
+ +
+ Creating an Action using an Extension Script + + There may be cases where you wish to create a chain with rules that + can't be constructed using the tools defined in the action.template. + In that case, you can use an extension script.If you actually + need an action to drop broadcast packets, use the dropBcast + standard action rather than create one like this. + + + An action to drop all broadcast packets + + /etc/shorewall/actionsDropBcasts + + /etc/shorewall/action.DropBcasts# This file is empty + + /etc/shorewall/DropBcastsrun_iptables -A DropBcasts -m pkttype --pkttype broadcast -j DROP + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/VPN.xml b/Shorewall-docsN/VPN.xml new file mode 100644 index 000000000..7e79936e0 --- /dev/null +++ b/Shorewall-docsN/VPN.xml @@ -0,0 +1,124 @@ + + +
+ + + + VPN + + + + Tom + + Eastep + + + + 2002-12-21 + + + 2002 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Virtual Private Networking (VPN) + + It is often the case that a system behind the firewall needs to be + able to access a remote network through Virtual Private Networking (VPN). + The two most common means for doing this are IPSEC and PPTP. The basic + setup is shown in the following diagram: + + + + A system with an RFC 1918 address needs to access a remote network + through a remote gateway. For this example, we will assume that the local + system has IP address 192.168.1.12 and that the remote gateway has IP + address 192.0.2.224. + + If PPTP is being used, there are no firewall requirements beyond the + default loc->net ACCEPT policy. There is one restriction however: Only + one local system at a time can be connected to a single remote gateway + unless you patch your kernel from the Patch-o-matic patches + available at http://www.netfilter.org. + + If IPSEC is being used then only one system may connect to the + remote gateway and there are firewall configuration requirements as + follows: + + + /etc/shorewall/rules + + + + + ACTION + + SOURCE + + DESTINATION + + PROTOCOL + + PORT + + CLIENT PORT + + ORIGINAL DEST + + + + + + DNAT + + net:192.0.2.224 + + loc:192.168.1.12 + + 50 + + + + + + + + + + DNAT + + net:192.0.2.224 + + loc:192.168.1.12 + + udp + + 500 + + + + + + + +
+ + If you want to be able to give access to all of your local systems + to the remote network, you should consider running a VPN client on your + firewall. As starting points, see http://www.shorewall.net/Documentation.htm#Tunnels + or http://www.shorewall.net/PPTP.htm. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/blacklisting_support.xml b/Shorewall-docsN/blacklisting_support.xml new file mode 100644 index 000000000..adade65a4 --- /dev/null +++ b/Shorewall-docsN/blacklisting_support.xml @@ -0,0 +1,170 @@ + + +
+ + + + Shorewall Blacklisting Support + + + + Tom + + Eastep + + + + 2004-02-17 + + + 2002-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Introduction + + Shorewall supports two different forms of blacklisting; static and + dynamic. Beginning with Shorewall version 1.4.8, the BLACKLISTNEWONLY + option in /etc/shorewall/shorewall.conf controls the degree of blacklist + filtering: + + + + BLACKLISTNEWONLY=No --  All incoming packets are checked + against the blacklist. New blacklist entries can be used to terminate + existing connections. Versions of Shorewall prior to 1.4.8 behave in + this manner. + + + + BLACKLISTNEWONLY=Yes -- The blacklists are only consulted for + new connection requests. Blacklists may not be used to terminate + existing connections. Only the source address is checked against the + blacklists. + + + + + Only the source address is checked against + the blacklists. Blacklists only stop blacklisted hosts from + connecting to you — they do not stop you or your users from connecting + to blacklisted hosts . + + + + Neither form of Shorewall blacklisting is + appropriate for blacklisting 1,000s of different addresses. + The blacklists will take forever to load and will have a very negative + effect on firewall performance. + +
+ +
+ Static Blacklisting + + Shorewall static blacklisting support has the following + configuration parameters: + + + + You specify whether you want packets from blacklisted hosts + dropped or rejected using the BLACKLIST_DISPOSITION setting in /etc/shorewall/shorewall.conf. + + + + You specify whether you want packets from blacklisted hosts + logged and at what syslog level using the BLACKLIST_LOGLEVEL setting + in /etc/shorewall/shorewall.conf. + + + + You list the IP addresses/subnets that you wish to blacklist in + /etc/shorewall/blacklist. + Beginning with Shorewall version 1.3.8, you may also specify PROTOCOL + and Port numbers/Service names in the blacklist file. + + + + You specify the interfaces whose incoming packets you want + checked against the blacklist using the blacklist + option in /etc/shorewall/interfaces. + + + + The black list is refreshed from /etc/shorewall/blacklist + by the shorewall + refresh command. + + +
+ +
+ Dynamic Blacklisting + + Dynamic blacklisting support was added in version 1.3.2. Dynamic + blacklisting doesn't use any configuration parameters but is rather + controlled using /sbin/shorewall commands: + + + + drop <ip address list> - causes + packets from the listed IP addresses to be silently dropped by the + firewall. + + + + reject <ip address list> - causes + packets from the listed IP addresses to be rejected by the firewall. + + + + allow <ip address list> - + re-enables receipt of packets from hosts previously blacklisted by a + drop or reject command. + + + + save - save the dynamic blacklisting configuration so that it + will be automatically restored the next time that the firewall is + restarted. + + + + show dynamic - displays the dynamic blacklisting configuration. + + + + Dynamic blacklisting is not dependent on the blacklist + option in /etc/shorewall/interfaces. + + + Ignore packets from a pair of systems + + shorewall drop 192.0.2.124 192.0.2.125 + + Drops packets from hosts 192.0.2.124 and 192.0.2.125 + + + + Re-enable packetes from a system + + shorewall allow 192.0.2.125 + + Re-enables traffic from 192.0.2.125. + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/bridge.xml b/Shorewall-docsN/bridge.xml new file mode 100755 index 000000000..5bf74780b --- /dev/null +++ b/Shorewall-docsN/bridge.xml @@ -0,0 +1,399 @@ + + +
+ + + + Shorewall and Bridged Firewalls + + + + Tom + + Eastep + + + + 2004-06-11 + + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Background + + Systems where Shorewall runs normally function as + routers. In the context of the Open System + Interconnect (OSI) reference model, a router operates at layer 3. + Beginning with Shorewall version 2.0.1, Shorewall may also be deployed on + a GNU Linux System that acts as a bridge. Bridges + are layer-2 devices in the OSI model (think of a bridge as an ethernet + switch). + + Some differences between routers and bridges are: + + + + Routers determine packet destination based on the destination IP + address while bridges route traffic based on the destination MAC + address in the ethernet frame. + + + + As a consequence of the first difference, routers can be + connected to more than one IP network while a bridge may be part of + only a single network. + + + + A router cannot forward broadcast packets while a bridge can. + + +
+ +
+ Requirements + + In order to use Shorewall with a bridging firewall: + + + + Your kernel must contain bridge support (CONFIG_BRIDGE=m or + CONFIG_BRIDGE=y). + + + + Your kernel must contain Netfilter physdev match support + (CONFIG_IP_NF_MATCH_PHYSDEV=m or CONFIG_IP_NF_MATCH_PHYSDEV=y). + Physdev match is standard in the 2.6 kernel series but must be patched + into the 2.4 kernels (see http://bridge.sf.net). + + + + Your iptables must contain physdev match support. iptables 1.2.9 + and later contain this support. + + + + You must have the bridge utilities (bridge-utils) package + installed. + + + + You must be running Shorewall 2.0.1 Beta 1 or later. + + +
+ +
+ Application + + The following diagram shows a typical application of a + bridge/firewall. There is already an existing router in place whose + internal interface supports a network and you want to insert a firewall + between the router and the systems in the local network. In the example + shown, the network uses RFC 1918 addresses but that is not a requirement; + the bridge would work exactly the same if public IP addresses were used + (remember that the bridge doesn't deal with IP addresses). + + + + There are a several key differences in this setup and a normal + Shorewall configuration: + + + + The Shorewall system (the Bridge/Firewall) has only a single IP + address even though it has two ethernet interfaces! The IP address is + configured on the bridge itself rather than on either of the network + cards. + + + + The systems connected to the LAN are configured with the + router's IP address (192.168.1.254 in the above diagram) as their + default gateway. + + + + traceroute doesn't detect the + Bridge/Firewall as an intermediate router. + + + + If the router runs a DHCP server, the hosts connected to the LAN + can use that server without having dhcrelay running + on the Bridge/Firewall. + + + + There are other possibilities here -- there could be a hub or switch + between the router and the Bridge/Firewall and there could be other + systems connected to that switch. All of the systems on the local side of + the router would still be configured with + IP addresses in 192.168.1.0/24 as shown below. +
+ +
+ Configuring the Bridge + + Configuring the bridge itself is quite simple and uses the + brctl utility from the bridge-utils package. Bridge + configuration information may be found at http://bridge.sf.net. + + Unfortunately, Linux distributions don't have good bridge + configuration tools and the network configuration GUIs don't detect + the presence of bridge devices. You may refer to my configuration files + for an example of configuring a three-port bridge at system boot under + SuSE. Here is an excerpt from a Debian + /etc/network/interfaces file for a two-port bridge + with a static IP address: + +
+ auto br0 +iface br0 inet static + address 192.168.1.253 + netmask 255.255.255.0 + network 192.168.1.0 + broadcast 192.168.1.255 + pre-up /sbin/ip link set eth0 up + pre-up /sbin/ip link set eth1 up + pre-up /usr/sbin/brctl addbr br0 + pre-up /usr/sbin/brctl addif br0 eth0 + pre-up /usr/sbin/brctl addif br0 eth1 +
+ + While it is not a requirement to give the bridge an IP address, + doing so allows the bridge/firewall to access other systems and allows the + bridge/firewall to be managed remotely. The bridge must also have an IP + address for REJECT rules and policies to work correctly — otherwise REJECT + behaves the same as DROP. + + The bridge may have its IP address assigned via DHCP. Here's an + example of an /etc/sysconfig/network/ifcfg-br0 file from a + SuSE system: + +
+ BOOTPROTO='dhcp' +REMOTE_IPADDR='' +STARTMODE='onboot' +UNIQUE='3hqH.MjuOqWfSZ+C' +WIRELESS='no' +MTU='' +
+ + Here's an /etc/sysconfig/network-scripts/ifcfg-br0 file for a + Mandrake system: + +
+ DEVICE=br0 +BOOTPROTO=dhcp +ONBOOT=yes +
+ + On both the SuSE and Mandrake systems, a separate script is required + to configure the bridge itself (again see my + configuration files for an example - /etc/init.d/bridge). + + Axel Westerhold has contributed this example of configuring a bridge + with a static IP address on a Fedora System (Core 1 and Core 2 Test 1). + Note that these files also configure the bridge itself so there is no need + for a separate bridge config script. + +
+ /etc/sysconfig/network-scripts/ifcfg-br0: + + DEVICE=br0 +TYPE=Bridge +IPADDR=192.168.50.14 +NETMASK=255.255.255.0 +ONBOOT=yes + + /etc/sysconfig/network-scripts/ifcfg-eth0:DEVICE=eth0 +TYPE=ETHER +BRIDGE=br0 +ONBOOT=yes/etc/sysconfig/network-scripts/ifcfg-eth1:DEVICE=eth1 +TYPE=ETHER +BRIDGE=br0 +ONBOOT=yes +
+ + Florin Grad at Mandrake provides this script + for configuring a bridge: + +
+ #!/bin/sh +# chkconfig: 2345 05 89 +# description: Layer 2 Bridge +# + +[ -f /etc/sysconfig/bridge ] && . /etc/sysconfig/bridge + +PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin + +do_stop() { + echo "Stopping Bridge" + for i in $INTERFACES $BRIDGE_INTERFACE ; do + ip link set $i down + done + brctl delbr $BRIDGE_INTERFACE +} + +do_start() { + + echo "Starting Bridge" + for i in $INTERFACES ; do + ip link set $i up + done + brctl addbr br0 + for i in $INTERFACES ; do + ip link set $i up + brctl addif br0 $i + done + ifup $BRIDGE_INTERFACE +} + +case "$1" in + start) + do_start + ;; + stop) + do_stop + ;; + restart) + do_stop + sleep 1 + do_start + ;; + *) + echo "Usage: $0 {start|stop|restart}" + exit 1 +esac +exit 0 + + The /etc/sysconfig/bridge file: + + BRIDGE_INTERFACE=br0 #The name of your Bridge +INTERFACES="eth0 eth1" #The physical interfaces to be bridged +
+ + Users who successfully configure bridges on other distributions, + with static or dynamic IP addresses, are encouraged to send me their configuration so I + can post it here. +
+ +
+ Configuring Shorewall + + Bridging in Shorewall is enabled using the BRIDGING option in + /etc/shorewall/shorewall.conf: + + BRIDGING=Yes + + In the scenario pictured above, there would probably be two zones + defined -- one for the internet and one for the local LAN so in + /etc/shorewall/zones: + + #ZONE DISPLAY COMMENTS +net Net Internet +loc Local Local networks +#LAST LINE - ADD YOUR ENTRIES ABOVE THIS ONE - DO NOT REMOVE + + A conventional two-zone policy file is appropriate here — + /etc/shorewall/policy: + + #SOURCE DEST POLICY LOG LIMIT:BURST +loc net ACCEPT +net all DROP info +all all REJECT info +#LAST LINE - ADD YOUR ENTRIES ABOVE THIS ONE - DO NOT REMOVE + + Only the bridge device itself is configured with an IP address so + only that device is defined to Shorewall in /etc/shorewall/interfaces: + + #ZONE INTERFACE BROADCAST OPTIONS +- br0 192.168.1.255 +#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE + + The zones are defined using the /etc/shorewall/hosts + file. Assuming that the router is connected to eth0 and the switch to eth1: + + #ZONE HOST(S) OPTIONS +net br0:eth0 +loc br0:eth1 +#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS LINE -- DO NOT REMOVE + + When Shorewall is stopped, you want to allow only local traffic + through the bridge — /etc/shorewall/routestopped: + + #INTERFACE HOST(S) OPTIONS +br0 192.168.1.0/24 routeback +#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE + + The /etc/shorewall/rules file from the + two-interface sample is a good place to start for defining a set of + firewall rules. +
+ +
+ Combination Router/Bridge + + A system running Shorewall doesn't have to be exclusively a + bridge or a router -- it can act as both. Here's an example: + + This is basically the same setup as shown in the Shorewall Setup Guide with the + exception that the DMZ is bridged rather than using Proxy ARP. Changes in + the configuration shown in the Setup Guide are as follows: + + + + The /etc/shorewall/proxyarp file is empty + in this confiiguration. + + + + The /etc/shorewall/interfaces file is as + follows:#ZONE INTERFACE BROADCAST OPTIONS +- br0 detect routefilter +loc eth1 detect + + + + The /etc/shorewall/hosts file would have: + + #ZONE HOSTS OPTIONS +net br0:eth0 +dmz br0:eth2 + + +
+ +
+ Limitations + + Bridging doesn' t work with some wireless cards — see http://bridge.sf.net. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/configuration_file_basics.xml b/Shorewall-docsN/configuration_file_basics.xml new file mode 100644 index 000000000..48d2685cb --- /dev/null +++ b/Shorewall-docsN/configuration_file_basics.xml @@ -0,0 +1,472 @@ + + +
+ + + + Configuration Files + + + + Tom + + Eastep + + + + 2004-04-20 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + If you copy or edit your configuration files on a system running + Microsoft Windows, you must run them through dos2unix + before you use them with Shorewall. + + +
+ Files + + /etc/shorewall/shorewall.conf + - used to set several firewall parameters./etc/shorewall/params + - use this file to set shell variables that you will expand in other + files./etc/shorewall/zones + - partition the firewall's view of the world into zones./etc/shorewall/policy + - establishes firewall high-level policy./etc/shorewall/interfaces + - describes the interfaces on the firewall system./etc/shorewall/hosts + - allows defining zones in terms of individual hosts and subnetworks./etc/shorewall/masq + - directs the firewall where to use many-to-one (dynamic) Network Address + Translation (a.k.a. Masquerading) and Source Network Address Translation + (SNAT)./etc/shorewall/modules + - directs the firewall to load kernel modules./etc/shorewall/rules + - defines rules that are exceptions to the overall policies established in + /etc/shorewall/policy./etc/shorewall/nat + - defines one-to-one NAT rules./etc/shorewall/proxyarp + - defines use of Proxy ARP./etc/shorewall/routestopped + (Shorewall 1.3.4 and later) - defines hosts accessible when Shorewall is + stopped./etc/shorewall/tcrules + - defines marking of packets for later use by traffic + control/shaping or policy routing./etc/shorewall/tos + - defines rules for setting the TOS field in packet headers./etc/shorewall/tunnels + - defines IPSEC, GRE and IPIP tunnels with end-points on the firewall + system./etc/shorewall/blacklist + - lists blacklisted IP/subnet/MAC addresses./etc/shorewall/init + - commands that you wish to execute at the beginning of a shorewall + start or shorewall restart./etc/shorewall/start + - commands that you wish to execute at the completion of a shorewall + start or shorewall restart/etc/shorewall/stop + - commands that you wish to execute at the beginning of a + shorewall stop./etc/shorewall/stopped + - commands that you wish to execute at the completion of a shorewall + stop./etc/shorewall/ecn + - disable Explicit Congestion Notification (ECN - RFC 3168) to remote + hosts or networks./etc/shorewall/accounting + - define IP traffic accounting rules/etc/shorewall/actions + and /usr/share/shorewall/action.template - define + your own actions for rules in /etc/shorewall/rules (shorewall 1.4.9 and + later)./usr/share/shorewall/actions.std + - Actions defined by Shorewall./usr/share/shorewall/actions.* + - Details of actions defined by Shorewall./usr/share/rfc1918 + — Defines the behavior of the 'norfc1918' interface option in + /etc/shorewall/interfaces. If + you need to change this file, copy it to /etc/shorewall + and modify the copy./usr/share/bogons + — Defines the behavior of the 'nobogons' interface option in + /etc/shorewall/interfaces. If + you need to change this file, copy it to /etc/shorewall + and modify the copy. +
+ +
+ Special Note about /etc/shorewall/shorewall.conf + + It is a good idea to modify your /etc/shorewall/shorewall.conf file, + even if you just add a comment that says "I modified this file". + That way, your package manager won't overwrite the file with future + updated versions. Such overwrites can cause unwanted changes in the + behavior of Shorewall. +
+ +
+ Comments + + You may place comments in configuration files by making the first + non-whitespace character a pound sign (#). You may also + place comments at the end of any line, again by delimiting the comment + from the rest of the line with a pound sign. + + + Comments in a Configuration File + + # This is a comment +ACCEPT net fw tcp www #This is an end-of-line comment + +
+ +
+ Line Continuation + + You may continue lines in the configuration files using the usual + backslash (\) followed immediately by a new line character. + + + Line Continuation + + ACCEPT net fw tcp \ +smtp,www,pop3,imap #Services running on the firewall + +
+ +
+ INCLUDE Directive + + Beginning with Shorewall version 1.4.2, any file may contain INCLUDE + directives. An INCLUDE directive consists of the word INCLUDE followed by + a path name and causes the contents of the named file to be logically + included into the file containing the INCLUDE. Relative path names given + in an INCLUDE directive are assumed to reside in /etc/shorewall or in an + alternate configuration directory if one has been specified for the + command. + + INCLUDE's may be nested to a level of 3 -- further nested + INCLUDE directives are ignored with a warning message. + + + Use of INCLUDE + + shorewall/params.mgmt: + +   MGMT_SERVERS=1.1.1.1,2.2.2.2,3.3.3.3 +    TIME_SERVERS=4.4.4.4 +    BACKUP_SERVERS=5.5.5.5 + +   ----- end params.mgmt ----- + +   shorewall/params: + +   # Shorewall 1.3 /etc/shorewall/params +    [..] +    ####################################### +   +    INCLUDE params.mgmt    +   +    # params unique to this host here +    #LAST LINE - ADD YOUR ENTRIES ABOVE THIS ONE - DO NOT REMOVE + +   ----- end params ----- + +   shorewall/rules.mgmt: + +   ACCEPT net:$MGMT_SERVERS   $FW    tcp    22 +    ACCEPT $FW          net:$TIME_SERVERS    udp    123 +    ACCEPT $FW          net:$BACKUP_SERVERS  tcp    22 + +   ----- end rules.mgmt ----- + +   shorewall/rules: + +   # Shorewall version 1.3 - Rules File +    [..] +    ####################################### +   +    INCLUDE rules.mgmt     +   +    # rules unique to this host here +    #LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE + +   ----- end rules ----- + +
+ +
+ Using DNS Names + + + I personally recommend strongly against using DNS names in + Shorewall configuration files. If you use DNS names and you are called + out of bed at 2:00AM because Shorewall won't start as a result of + DNS problems then don't say that you were not forewarned. + + + Beginning with Shorewall 1.3.9, Host addresses in Shorewall + configuration files may be specified as either IP addresses or DNS Names. + + DNS names in iptables rules aren't nearly as useful as they + first appear. When a DNS name appears in a rule, the iptables utility + resolves the name to one or more IP addresses and inserts those addresses + into the rule. So changes in the DNS->IP address relationship that + occur after the firewall has started have absolutely no effect on the + firewall's ruleset. + + If your firewall rules include DNS names then: + + + + If your /etc/resolv.conf is wrong then your + firewall won't start. + + + + If your /etc/nsswitch.conf is wrong then + your firewall won't start. + + + + If your Name Server(s) is(are) down then your firewall won't + start. + + + + If your startup scripts try to start your firewall before + starting your DNS server then your firewall won't start. + + + + Factors totally outside your control (your ISP's router is + down for example), can prevent your firewall from starting. + + + + You must bring up your network interfaces prior to starting your + firewall. + + + + Each DNS name much be fully qualified and include a minumum of two + periods (although one may be trailing). This restriction is imposed by + Shorewall to insure backward compatibility with existing configuration + files. + + + Valid DNS Names + + + + mail.shorewall.net + + + + shorewall.net. (note the trailing period). + + + + + + Invalid DNS Names + + + + mail (not fully qualified) + + + + shorewall.net (only one period) + + + + + DNS names may not be used as: + + + + The server address in a DNAT rule (/etc/shorewall/rules file) + + + + In the ADDRESS column of an entry in /etc/shorewall/masq. + + + + In the /etc/shorewall/nat file. + + + + These restrictions are imposed by Netfilter and not by Shorewall. +
+ +
+ Complementing an Address or Subnet + + Where specifying an IP address, a subnet or an interface, you can + precede the item with ! to specify the complement of the + item. For example, !192.168.1.4 means any host but 192.168.1.4. + There must be no white space following the !. +
+ +
+ Comma-separated Lists + + Comma-separated lists are allowed in a number of contexts within the + configuration files. A comma separated list: + + + + Must not have any embedded white space. Valid: routefilter,dhcp,norfc1918 + Invalid: routefilter,     dhcp,     norfc1818 + + + + If you use line continuation to break a comma-separated list, + the continuation line(s) must begin in column 1 (or there would be + embedded white space) + + + + Entries in a comma-separated list may appear in any order. + + +
+ +
+ Port Numbers/Service Names + + Unless otherwise specified, when giving a port number you can use + either an integer or a service name from /etc/services. +
+ +
+ Port Ranges + + If you need to specify a range of ports, the proper syntax is + <low port number>:<high port number>. For example, if you + want to forward the range of tcp ports 4000 through 4100 to local host + 192.168.1.3, the entry in /etc/shorewall/rules is: + + #ACTION SOURCE DESTINATION PROTO DEST PORTS(S) +DNAT net loc:192.168.1.3 tcp 4000:4100 + + If you omit the low port number, a value of zero is assumed; if you + omit the high port number, a value of 65535 is assumed. +
+ +
+ Using Shell Variables + + You may use the /etc/shorewall/params file to set shell variables + that you can then use in some of the other configuration files. + + It is suggested that variable names begin with an upper case letter + to distinguish them from variables used internally within the Shorewall + programs + + + Using Shell Variables + +     /etc/shorewall/params + + NET_IF=eth0 + NET_BCAST=130.252.100.255 + NET_OPTIONS=routefilter,norfc1918 + +    /etc/shorewall/interfaces record: + + net $NET_IF $NET_BCAST $NET_OPTIONS + +    The result will be the same as if the record had been written + + net eth0 130.252.100.255 routefilter,norfc1918 + + + Variables may be used anywhere in the other configuration files. + +
+ +
+ Using MAC Addresses + + Media Access Control (MAC) addresses can be used to specify packet + source in several of the configuration files. In order to control traffic + to/from a host by its MAC address, the host must be on the same network as + the firewall. + + To use this feature, your kernel must have MAC Address Match support + (CONFIG_IP_NF_MATCH_MAC) included. + + MAC addresses are 48 bits wide and each Ethernet Controller has a + unique MAC address. + + In GNU/Linux, MAC addresses are usually written as a series of 6 hex + numbers separated by colons. + + + MAC Address of an Ethernet Controller + +      [root@gateway root]# ifconfig eth0 +      eth0 Link encap:Ethernet HWaddr 02:00:08:E3:FA:55 +      inet addr:206.124.146.176 Bcast:206.124.146.255 Mask:255.255.255.0 +      UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 +      RX packets:2398102 errors:0 dropped:0 overruns:0 frame:0 +      TX packets:3044698 errors:0 dropped:0 overruns:0 carrier:0 +      collisions:30394 txqueuelen:100 +      RX bytes:419871805 (400.4 Mb) TX bytes:1659782221 (1582.8 Mb) +      Interrupt:11 Base address:0x1800 + + + + Because Shorewall uses colons as a separator for address fields, + Shorewall requires MAC addresses to be written in another way. In + Shorewall, MAC addresses begin with a tilde (~) and consist + of 6 hex numbers separated by hyphens. In Shorewall, the MAC address in + the example above would be written ~02-00-08-E3-FA-55. + + + It is not necessary to use the special Shorewall notation in the + /etc/shorewall/maclist + file. + +
+ +
+ Shorewall Configurations + + Shorewall allows you to have configuration directories other than + /etc/shorewall. The shorewall + check, start and restart commands allow you to specify an alternate + configuration directory and Shorewall will use the files in the alternate + directory rather than the corresponding files in /etc/shorewall. The + alternate directory need not contain a complete configuration; those files + not in the alternate directory will be read from /etc/shorewall. + + This facility permits you to easily create a test or temporary + configuration by + + + + copying the files that need modification from /etc/shorewall to + a separate directory; + + + + modify those files in the separate directory; and + + + + specifying the separate directory in a shorewall start or + shorewall restart command (e.g., shorewall -c /etc/testconfig + restart ) + + + + The try command + allows you to attempt to restart using an alternate configuration and if + an error occurs to automatically restart the standard configuration. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/dhcp.xml b/Shorewall-docsN/dhcp.xml new file mode 100755 index 000000000..b67c5a63c --- /dev/null +++ b/Shorewall-docsN/dhcp.xml @@ -0,0 +1,106 @@ + + +
+ + + + DHCP + + + + Tom + + Eastep + + + + 2004-05-24 + + + 2001 + + 2002 + + 2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + For most operations, DHCP software interfaces to the Linux IP stack + at a level below Netfilter. Hence, Netfilter (and therefore Shorewall) + cannot be used effectively to police DHCP. The dhcp + interface option described in this article allows for Netfilter to stay + out of DHCP's way for those operations that can be controlled by + Netfilter and prevents unwanted logging of DHCP-related traffic by + Shorewall-generated Netfilter logging rules. + + +
+ If you want to Run a DHCP Server on your firewall + + + + Specify the dhcp option on each interface to be + served by your server in the /etc/shorewall/interfaces + file. This will generate rules that will allow DHCP to and from your + firewall system. + + + + When starting dhcpd, you need to list those + interfaces on the run line. On a RedHat system, this is done by + modifying /etc/sysconfig/dhcpd. + + + + +
+ +
+ If a Firewall Interface gets its IP Address via DHCP + + + + Specify the dhcp option for this interface in the + /etc/shorewall/interfaces + file. This will generate rules that will allow DHCP to and from + your firewall system. + + + + If you know that the dynamic address is always going to be in + the same subnet, you can specify the subnet address in the + interface's entry in the /etc/shorewall/interfaces + file. + + + + If you don't know the subnet address in advance, you should + specify detect for the interface's subnet address + in the /etc/shorewall/interfaces + file and start Shorewall after the interface has started. + + + + In the event that the subnet address might change while + Shorewall is started, you need to arrange for a shorewall + refresh command to be executed when a new dynamic IP address + gets assigned to the interface. Check your DHCP client's + documentation. + + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/errata.xml b/Shorewall-docsN/errata.xml new file mode 100644 index 000000000..68c5852c0 --- /dev/null +++ b/Shorewall-docsN/errata.xml @@ -0,0 +1,339 @@ + + +
+ + Shorewall Errata + + + + Tom + + Eastep + + + + 2004-07-02 + + + 2001-2004 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + + + + + If you use a Windows system to download a corrected script, be + sure to run the script through dos2unix + after you have moved it to your Linux system. + + + + If you are installing Shorewall for the first time and plan to + use the .tgz and install.sh script, you can untar the archive, replace + the firewall script in the untarred directory with the + one you downloaded below, and then run install.sh. + + + + When the instructions say to install a corrected firewall script + in /usr/share/shorewall/firewall, you may rename the existing file + before copying in the new file. + + + + DO NOT INSTALL CORRECTED COMPONENTS ON A + RELEASE EARLIER THAN THE ONE THAT THEY ARE LISTED UNDER BELOW. + For example, do NOT install the 2.0.2 firewall script if you are + running 2.0.0-RC2 + + + + +
+ RFC1918 File + + Here + is the most up to date version of the rfc1918 file. This file only + applies to Shorewall version 2.0.0 and its bugfix updates. In Shorewall + 2.0.1 and later releases, the bogons file lists IP + ranges that are reserved by the IANA and the rfc1918 + file only lists those three ranges that are reserved by RFC 1918. +
+ +
+ Bogons File + + Here + is the most up to date version of the bogons file. +
+ +
+ Problems in Version 2.0 + +
+ Shorewall 2.0.3a and 2.0.3b + + + + Error messages regarding $RESTOREBASE occur during shorewall stop. + + + + If CLEAR_TC=Yes in shorewall.conf, + shorewall stop fails without + removing the lock file. + + + + These problems are corrected in Shorewall version 2.0.3c. +
+ +
+ Shorewall 2.0.3a + + + + Slackware users find that version 2.0.3a fails to start + because their mktemp utility does not support the + -d option. This may be corrected by installing this + corrected functions file in /var/lib/shorewall/functions. + + + + Shorewall fails to start if there is no mktemp + utility. + + + + These problems are corrected in Shorewall version 2.0.3b. +
+ +
+ Shorewall 2.0.3 + + + + A non-empty entry in the DEST column of /etc/shorewall/tcrules + will result in an error message and Shorewall fails to start. This + problem is fixed in Shorewall version 2.0.3a. + + + + A potentially exploitable vulnerability in the way that + Shorewall handles temporary files and directories has been found by + Javier Fernández-Sanguino Peña. This vulnerability is corrected in + Shorewall 2.0.3a. All Shorewall 2.0.x users are urged to upgrade to + 2.0.3a. + + +
+ +
+ Shorewall 2.0.2 + + + + Temporary restore files with names of the form + restore-nnnnn are left in + /var/lib/shorewall. + + + + "shorewall restore" and "shorewall -f start" + do not load kernel modules. + + The above two problems are corrected in + Shorewall 2.0.2a + + + + Specifying a null common action in /etc/shorewall/actions + (e.g., :REJECT) results in a startup error. + + + + If /var/lib/shorewall does not exist, + shorewall start fails. + + The above four problems are corrected in + Shorewall 2.0.2b + + + + DNAT rules work incorrectly with dynamic zones in that the + source interface is not included in the nat table DNAT rule. + + The above five problems are corrected in + Shorewall 2.0.2c + + + + During start and restart, Shorewall is detecting capabilities + before loading kernel modules. Consequently, if kernel module + autoloading is disabled, capabilities can be mis-detected during + boot. + + + + The newnotsyn option in + /etc/shorewall/hosts has no effect. + + The above seven problems are corrected + in Shorewall 2.0.2d + + + + Use of the LOG target in an action results in two LOG or ULOG + rules. + + The above eight problems are corrected + in Shorewall 2.0.2e + + + + Kernel modules fail to load when MODULE_SUFFIX isn't set + in shorewall.conf + + All of the above problems are corrected + in Shorewall 2.0.2f + + + + These problems are all corrected by the firewall + and functions files in this directory. + Both files must be installed in /usr/share/shorewall/ + as described above. +
+ +
+ Shorewall 2.0.1 + + + + Confusing message mentioning IPV6 occur at startup. + + + + Modules listed in /etc/shorewall/modules don't load or + produce errors on Mandrake 10.0 Final. + + + + The shorewall delete command does not + remove all dynamic rules pertaining to the host(s) being deleted. + + + + These problems are corrected in this + firewall script which may be installed in /usr/share/shorewall/firewall + as described above. + + + + When run on a SuSE system, the install.sh script fails to + configure Shorewall to start at boot time. That problem is corrected + in this + version of the script. + + +
+ +
+ Shorewall 2.0.1/2.0.0 + + + + On Debian systems, an install using the tarball results in an + inability to start Shorewall at system boot. If you already have + this problem, install this + file as /etc/init.d/shorewall (replacing the existing file + with that name). If you are just installing or upgrading to + Shorewall 2.0.0 or 2.0.1, then replace the init.debian.sh + file in the Shorewall distribution directory (shorewall-2.0.x) with + the updated file before running install.sh from + that directory. + + +
+ +
+ Shorewall 2.0.0 + + + + When using an Action in the ACTIONS column of a rule, you may + receive a warning message about the rule being a policy. While this + warning may be safely ignored, it can be eliminated by installing + the script from the link below. + + + + Thanks to Sean Mathews, a long-standing problem with Proxy ARP + and IPSEC has been corrected. + + + + The first problem has been corrected in Shorewall update 2.0.0a. + + All of these problems may be corrected by installing this + firewall script in /usr/share/shorewall as described above. +
+
+ +
+ Upgrade Issues + + The upgrade issues have moved to a + separate page. +
+ +
+ Problem with iptables 1.2.9 + + If you want to use the new features in Shorewall 2.0.2 (Betas, RCs, + Final) or later then you need to patch your iptables 1.2.9 with this + patch or you need to use the CVS version of iptables. +
+ +
+ Problems with RH Kernels after 2.4.20-9 and REJECT (also applies to + 2.4.21-RC1) + + Beginning with errata kernel 2.4.20-13.9, REJECT + --reject-with tcp-reset is broken. The symptom most commonly seen + is that REJECT rules act just like DROP rules when dealing with TCP. A + kernel patch and precompiled modules to fix this problem are available at + ftp://ftp1.shorewall.net/pub/shorewall/errata/kernel + + + RedHat have corrected this problem in their 2.4.20-27.x kernels. + +
+
\ No newline at end of file diff --git a/Shorewall-docsN/fallback.xml b/Shorewall-docsN/fallback.xml new file mode 100644 index 000000000..f206ee36a --- /dev/null +++ b/Shorewall-docsN/fallback.xml @@ -0,0 +1,93 @@ + + +
+ + + + Fallback and Uninstall + + + + Tom + + Eastep + + + + 2001-03-26 + + + 2001 + + Thomas M. Eastep + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, Version + 1.2 or any later version published by the Free Software Foundation; with + no Invariant Sections, with no Front-Cover, and with no Back-Cover + Texts. A copy of the license is included in the section entitled + GNU Free Documentation License. + + + +
+ Falling Back to the Previous Version of Shorewall using the + Fallback Script + + If you install Shorewall and discover that it doesn't work for + you, you can fall back to your previously installed version. To do that: + + + + cd to the distribution directory for the version of Seattle + Firewall that you are currently running (NOT the version that you want + to fall back to). + + + + Type ./fallback.sh + + + + + The fallback script will replace /etc/shorewall/policy, + /etc/shorewall/rules, /etc/shorewall/interfaces, /etc/shorewall/nat, + /etc/shorewall/proxyarp and /etc/shorewall/masq with the version of + these files from before the current version was installed. Any changes + to any of these files will be lost. + +
+ +
+ Falling Back to the Previous Version of Shorewall using rpm + + If your previous version of Shorewall was installed using RPM, you + may fall back to that version by typing rpm -Uvh --force <old + rpm> at a root shell prompt (Example: rpm -Uvh --force + /downloads/shorewall-3.1=0noarch.rpm would fall back to the 3.1-0 + version of Shorewall). +
+ +
+ Uninstalling Shorewall + + If you no longer wish to use Shorewall, you may remove it by: + + + + cd to the distribution directory for the version of Shorewall + that you have installed. + + + + type ./uninstall.sh + + + + If you installed using an rpm, at a root shell prompt type + rpm -e shorewall. +
+
\ No newline at end of file diff --git a/Shorewall-docsN/images/BD21298_.gif b/Shorewall-docsN/images/BD21298_.gif new file mode 100644 index 000000000..335cde588 Binary files /dev/null and b/Shorewall-docsN/images/BD21298_.gif differ diff --git a/Shorewall-docsN/images/BD21298_1.gif b/Shorewall-docsN/images/BD21298_1.gif new file mode 100644 index 000000000..335cde588 Binary files /dev/null and b/Shorewall-docsN/images/BD21298_1.gif differ diff --git a/Shorewall-docsN/images/BD21298_2.gif b/Shorewall-docsN/images/BD21298_2.gif new file mode 100644 index 000000000..335cde588 Binary files /dev/null and b/Shorewall-docsN/images/BD21298_2.gif differ diff --git a/Shorewall-docsN/images/BD21298_3.gif b/Shorewall-docsN/images/BD21298_3.gif new file mode 100644 index 000000000..335cde588 Binary files /dev/null and b/Shorewall-docsN/images/BD21298_3.gif differ diff --git a/Shorewall-docsN/images/CorpNetwork.gif b/Shorewall-docsN/images/CorpNetwork.gif new file mode 100644 index 000000000..e67ac92cd Binary files /dev/null and b/Shorewall-docsN/images/CorpNetwork.gif differ diff --git a/Shorewall-docsN/images/DMZ4.JPG b/Shorewall-docsN/images/DMZ4.JPG new file mode 100644 index 000000000..9fbcfb951 Binary files /dev/null and b/Shorewall-docsN/images/DMZ4.JPG differ diff --git a/Shorewall-docsN/images/DMZ5.JPG b/Shorewall-docsN/images/DMZ5.JPG new file mode 100644 index 000000000..a17315b34 Binary files /dev/null and b/Shorewall-docsN/images/DMZ5.JPG differ diff --git a/Shorewall-docsN/images/DMZ6.JPG b/Shorewall-docsN/images/DMZ6.JPG new file mode 100644 index 000000000..93a95329a Binary files /dev/null and b/Shorewall-docsN/images/DMZ6.JPG differ diff --git a/Shorewall-docsN/images/Hiking1.jpg b/Shorewall-docsN/images/Hiking1.jpg new file mode 100644 index 000000000..0c94246a7 Binary files /dev/null and b/Shorewall-docsN/images/Hiking1.jpg differ diff --git a/Shorewall-docsN/images/Legend.png b/Shorewall-docsN/images/Legend.png new file mode 100755 index 000000000..e97521e00 Binary files /dev/null and b/Shorewall-docsN/images/Legend.png differ diff --git a/Shorewall-docsN/images/Legend.vdx b/Shorewall-docsN/images/Legend.vdx new file mode 100755 index 000000000..4a04f498f --- /dev/null +++ b/Shorewall-docsN/images/Legend.vdx @@ -0,0 +1,2473 @@ + + + + + +Legend +teastep + +Hewlett-Packard Company +671351309 +671351309 + +AQAAAGwAAABkAQAAXwAAAP8BAADPAAAAAAAAAAAAAAClVAAAc20AACBFTUYAAAEAlBUAAFkAAAADA +AAAAAAAAAAAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMARgAAACwAAA +AgAAAARU1GKwFAAQAcAAAAEAAAAAEQwNsBAAAAYAAAAGAAAABGAAAAhAAAAHgAAABFTUYrMEACABA +AAAAEAAAAAACAPx9ABAAMAAAAAAAAAB5AAQAMAAAAAAAAAB1AAAAUAAAACAAAAAIAAACFBAAAHUAA +ABQAAAAIAAAAAgAAAKoEAAAKQACAJAAAABgAAAD/////AQAAAACYskM9CsFCZmYYQ16PIkIhAAAAC +AAAAGIAAAAMAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAACUAAAAMAA +AAAAAAgCUAAAAMAAAACAAAgEwAAABkAAAAZQEAAGEAAAD9AQAAiAAAAFMWAAAJBgAAhwkAAIoCAAA +hAPAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAlAAAADAAAAAcAAIAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAA +AIAAABGAAAApAAAAJgAAABFTUYrCEAAAjwAAAAwAAAAARDA2wAAAABOAAAAAAAAALdlrT4CAAAAAg +AAAAIAAAACAAAAARDA2wAAAAAAAAD/CEABA0gAAAA8AAAAARDA2wUAAAAAAAAAAJiyQ/YoCUMzy/5 +D9igJQzPL/kM9CsFCAJiyQz0KwUIAmLJD9igJQwABAQGBAAAAFUABABAAAAAEAAAAAAAAACQAAAAk +AAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAAF8AAAA4AAAAAQAAADgAAAAAAAAAOAAAAAAAA +AAAAAEABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAwAAAABAAAAJQAAAAwAAAAFAACAVgAAAD +AAAABkAQAAXwAAAP8BAACLAAAABQAAAFMWkwjaH5MI2h8JBlMWCQZTFpMIJQAAAAwAAAAHAACAJQA +AAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAIBBAAAAAAAAAAACAAAAKAAAAAwAAAABAAAA +RgAAAMwAAADAAAAARU1GKypAAAAkAAAAGAAAADMzy0IAAAAAAAAAACW/2EIAmLJDPQrBQghAAgYwA +AAAJAAAAAEQwNurqio+AAAAAAAAAAAAAAAABQAAAEEAUgBJAEEATAAAADZAAoBoAAAAXAAAAAAAAP +8BAAAAAQAAAAUAAABJAE4AUABVAFQAAAAAPzMzcz6r2gs/MzNzPquqKj8zM3M+ACBHPzMzcz4A8GU +/MzNzPgAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAEgAAAAwAAAABAAAAGAAAAAwAAAAAAAAAFgAA +AAwAAAAYAAAAUgAAAHABAAABAAAA7v///wAAAAAAAAAAAAAAAJABAAAAAAAABwAEAEEAcgBpAGEAb +AAAAAAATQBvAG4AbwB0AHkAcABlADoAQQByAGkAYQBsACAAUgBlAGcAdQBsAGEAcgA6AFYAZQAAAG +0yAAAAAGjbEgDcf9JwAQABALAEGgB4ARQAAAAAALAEGgAAAAAAAAAAAAAANDQVfOBwCggAAFBAAAB +qCQAAUEAAAM5xx3dQQAAAjwghALgEAQEAABQA/NoSAEzcEgAE5hIABZD3d8jV9nf/////ahb1d4Bx +x3cAABQA3XHHdwAAx3epCBZGjNwSAAAAAAAARRoAqQgWRkhAAABIQAAAkNwSADZyx3ePCCEwTNwSA +LgEGgBDmNNwhHWzAAMAAAAAAAAAOZjTcI8IITAw3BIAQ5jTcIR1swAAAAAABQAAAJCbbjKQm24yAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAABZHYACAAAAAAlAAAADAAAAAEAAABUAAAAbAAAAJgBAABpAAA +AygEAAH0AAAABAAAAAADIQQCAu0GYAQAAegAAAAUAAABMAAAAAAAAAAAAAAAAAAAA//////////9Y +AAAASQBOAFAAVQBUAAD/BQAAAAwAAAALAAAADAAAAAAAAAAlAAAADAAAAA0AAIBGAAAAQAAAADQAA +ABFTUYrK0AAAAwAAAAAAAAACkAAgCQAAAAYAAAA/////wEAAAAAmLJD9igJQ2ZmGEN2d4dCJAAAAC +QAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAJQAAAAwAAAAAAACAJQAAAAwAAAAIAACATAA +AAGQAAABlAQAAiQAAAP0BAADMAAAAUxYAAJMIAACHCQAAPAQAACEA8AAAAAAAAAAAAAAAgD8AAAAA +AAAAAAAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAABwAAgCUAAAAMA +AAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAAEYAAACkAAAAmAAAAEVNRi +sIQAACPAAAADAAAAABEMDbAAAAAE4AAAAAAAAAt2WtPgIAAAACAAAAAgAAAAIAAAABEMDbAAAAAAA +AAP8IQAEDSAAAADwAAAABEMDbBQAAAAAAAAAAmLJDseRMQzPL/kOx5ExDM8v+Q/YoCUMAmLJD9igJ +QwCYskOx5ExDAAEBAYEAAAAVQAEAEAAAAAQAAAAAAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9A +AAAAAAAAAACAAAAXwAAADgAAAACAAAAOAAAAAAAAAA4AAAAAAAAAAAAAQAFAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAlAAAADAAAAAIAAAAlAAAADAAAAAUAAIBWAAAAMAAAAGQBAACIAAAA/wEAAM8AAAA +FAAAAUxbPDNofzwzaH5MIUxaTCFMWzwwlAAAADAAAAAcAAIAlAAAADAAAAAAAAIAkAAAAJAAAAAAA +gEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAAAoAAAADAAAAAIAAABGAAAArAAAAKAAAABFTUYrKkAAA +CQAAAAYAAAAMzPLQgAAAAAAAAAAJb/YQgCYskP2KAlDCEACBjgAAAAsAAAAARDA2zmO4z0AAAAAAA +AAAAAAAAAJAAAAVwBJAE4ARwBEAEkATgBHAFMAAAA2QAKAQAAAADQAAAAAAAD/AQAAAAEAAAABAAA +An/A5juM87+6OPgAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAEgAAAAwAAAABAAAAGAAAAAwAAAAA +AAAAFgAAAAwAAAAYAAAAKAAAAAwAAAABAAAAUgAAAHABAAABAAAA9P///wAAAAAAAAAAAAAAAJABA +AAAAAACBwAEAFcAaQBuAGcAZABpAG4AZwBzAAAA//9XAGkAbgBnAGQAaQBuAGcAcwAgAFIAZQBnAH +UAbABhAHIAOgAgAE0AUwAAAG4yBgAAAA0AAADcAgAAAAAAAFT////oAQAAbgEAANwCAABcAwAAAAA +AAACsAACft+BwPgAAAPABAAA+AAAA8AEAAM5xx3cAAAAAjwghAEjNAQAAABQABAAAACAAAAAE5hIA +BZD3d8jV9nf//wEAAAAUABjbEgAAABQADNwSAAAA93fI1fZ3/////2oW9XfLYOd3AAAUAAAAAADeY +Od3qQgKR5AjiDMgwMp3TNwSAEjNJzNDmNNwFL9uMujbEgAAAAAABOYSAAlI6XeIMuh3/////95g53 +cdrcd3kCOIM8gfJTOQI4gzCAAAAFTcEgDedMh3IMDKd48IITABAAAAZHYACAAAAAAlAAAADAAAAAE +AAABUAAAAVAAAAGgBAACcAAAAawEAAKkAAAABAAAAAADIQQCAu0FoAQAApwAAAAEAAABMAAAAAAAA +AAAAAAAAAAAA//////////9QAAAAn/ACAAAAAAAlAAAADAAAAA0AAIBGAAAA9AAAAOgAAABFTUYrK +0AAAAwAAAAAAAAA +KkAAACQAAAAYAAAAMzPLQgAAAAAAAAAAJb/YQgCYskP2KAlDCEACBjAAAAAkAAAAARDA2zmO4z0AA +AAAAAAAAAAAAAAFAAAAQQBSAEkAQQBMAAAANkACgIQAAAB4AAAAAAAA/wEAAAABAAAACAAAACgATQ +BhAG4AZwBsAGUAKQDkOI4+7+6OPqsqoT7v7o4+OY7QPu/ujj7HMfA+7+6OPqvqBz/v7o4+crwXP+/ +ujj45Dh4/7+6OPgDgLT/v7o4+AACAPwAAAAAAAAAAAACAPwAAAAAAAAAAEgAAAAwAAAABAAAAGAAA +AAwAAAAAAAAAFgAAAAwAAAAYAAAAKAAAAAwAAAABAAAAUgAAAHABAAABAAAA9P///wAAAAAAAAAAA +AAAAJABAAAAAAAABwAEAEEAcgBpAGEAbAAAAAAATQBvAG4AbwB0AHkAcABlADoAQQByAGkAYQBsAC +AAUgBlAGcAdQBsAGEAcgA6AFYAZQAAAG0yDAAAAAEAAADIAQAAaOYAAAAAAACYAwAABgMAAMgBAAB +OAAAAAgAAADAz/v+ft+BwAKkAAAEAAAABAAAA/////wDRFABAAAAA/////w4DAAA8AAAABAAAACAA +AADk2xIAIK9tMl+I03AAAAEAAAAUABjbEgAAnm0yDNwSAAAA93fI1fZ3/////2oW9XfLYOd3AAAUA +AAAAADeYOd3qQgKSJAjiDMgwMp3iF5zMrCybTItAAAAAQAAAOjbEgAAAAAABOYSAAlI6XeIMuh3// +///95g53cdrcd3kCOIM8gfJTOQI4gzCAAAAFTcEgDedMh3IMDKd48IITABAAAAZHYACAAAAAAlAAA +ADAAAAAEAAABUAAAAfAAAAIEBAACbAAAAqwEAAKkAAAABAAAAAADIQQCAu0GBAQAApwAAAAgAAABM +AAAAAAAAAAAAAAAAAAAA//////////9cAAAAKABNAGEAbgBnAGwAZQApAAQAAAAJAAAABgAAAAYAA +AAGAAAAAwAAAAYAAAAAAAAAJQAAAAwAAAANAACARgAAALgAAACsAAAARU1GKytAAAAMAAAAAAAAAC +pAAAAkAAAAGAAAADMzy0IAAAAAAAAAACW/2EIAmLJD9igJQwhAAgY4AAAALAAAAAEQwNs5juM9AAA +AAAAAAAAAAAAACQAAAFcASQBOAEcARABJAE4ARwBTAAAANkACgEAAAAA0AAAAAAAA/wEAAAABAAAA +AQAAAJ/wOY7jPDMz0z4AAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAABIAAAAMAAAAAQAAABgAAAAMA +AAAAAAAABYAAAAMAAAAGAAAACgAAAAMAAAAAQAAAFIAAABwAQAAAQAAAPT///8AAAAAAAAAAAAAAA +CQAQAAAAAAAgcABABXAGkAbgBnAGQAaQBuAGcAcwAAAP//VwBpAG4AZwBkAGkAbgBnAHMAIABSAGU +AZwB1AGwAYQByADoAIABNAFMAAABuMgYAAAAMAAAAnAIAAAAAAABU////6AEAAG4BAACcAgAAHAMA +AAAAAAAArAAAn7fgcAAAEAAAAAAAAQAAAP////8k1m4ybNVuMlzWbjIE2G4yDQAAAAQAAAAgAAAAa +NhuMujbEgCbiNNwDQABAAAAFAAY2xIA6MNuMgzcEgAAAPd3yNX2d/////9qFvV3y2DndwAAFAAAAA +AA3mDnd6kICkmQI4gzIMDKd3ijbjIM124yDgAAAAEAAADo2xIAAAAAAATmEgAJSOl3iDLod////// +eYOd3Ha3Hd5AjiDPIHyUzkCOIMwgAAABU3BIA3nTIdyDAynePCCEwAQAAAGR2AAgAAAAAJQAAAAwA +AAABAAAAVAAAAFQAAABoAQAAqwAAAGsBAAC4AAAAAQAAAAAAyEEAgLtBaAEAALYAAAABAAAATAAAA +AAAAAAAAAAAAAAAAP//////////UAAAAJ/wDAAAAAAAJQAAAAwAAAANAACARgAAAOAAAADUAAAARU +1GKytAAAAMAAAAAAAAACpAAAAkAAAAGAAAADMzy0IAAAAAAAAAACW/2EIAmLJD9igJQwhAAgYwAAA +AJAAAAAEQwNs5juM9AAAAAAAAAAAAAAAABQAAAEEAUgBJAEEATAAAADZAAoBwAAAAZAAAAAAAAP8B +AAAAAQAAAAYAAABGAGkAbAB0AGUAcgDkOI4+MzPTPuT4sD4zM9M+cpy9PjMz0z4AQMo+MzPTPjkO2 +j4zM9M+x7H5PjMz0z4AAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAASAAAADAAAAAEAAAAYAAAADAAAAA +AAAAAWAAAADAAAABgAAAAoAAAADAAAAAEAAABSAAAAcAEAAAEAAAD0////AAAAAAAAAAAAAAAAkAE +AAAAAAAAHAAQAQQByAGkAYQBsAAAAAABNAG8AbgBvAHQAeQBwAGUAOgBBAHIAaQBhAGwAIABSAGUA +ZwB1AGwAYQByADoAVgBlAAAAbTIKAAAADQAAAOwDAAAAAAAA1P///3gCAAB4AgAA7AMAAEQDAAACA +AAAwDkAAJ+34HAAkAAAAQAAAOzbEgDtedNwYK9tMgIAAAAEAAAAAQAAAAAAAAAEAAAAIAAAAAoAAA +Bgr20yX4jTcAIAAQAAABQAGNsSAACebTIM3BIAAAD3d8jV9nf/////ahb1d8tg53cAABQAAAAAAN5 +g53epCApKkCOIMyDAynfshrMAsLFtMhkAAAABAAAA6NsSAAAAAAAE5hIACUjpd4gy6Hf/////3mDn +dx2tx3eQI4gzyB8lM5AjiDMIAAAAVNwSAN50yHcgwMp3jwghMAEAAABkdgAIAAAAACUAAAAMAAAAA +QAAAFQAAABwAAAAgQEAAKoAAACaAQAAuAAAAAEAAAAAAMhBAIC7QYEBAAC2AAAABgAAAEwAAAAAAA +AAAAAAAAAAAAD//////////1gAAABGAGkAbAB0AGUAcgAHAAAAAwAAAAMAAAADAAAABgAAAAAAAAA +lAAAADAAAAA0AAIBGAAAAHAAAABAAAABFTUYrK0AAAAwAAAAAAAAATAAAAGQAAABkAQAAYAAAAP4B +AADOAAAAZAEAAGAAAACbAAAAbwAAACkAqgAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAMAAAA/////0YAAAAcAAAAEAAAAEVNRisCQAAADA +AAAAAAAAAOAAAAFAAAAAAAAAAQAAAAFAAAAA== +2003-05-23T09:40:31 +2003-12-23T08:56:01 +2003-10-13T11:28:20 +2003-05-23T09:40:31 + + +9 +295 +34 +1 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +0 +1 +0 +0 + + +0 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.083333333333333 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +0 +0 +1 +0 + + +0 +0 + +0 +0 +1 +0 +0.083333333333333 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +4 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + + +2 +0 +1 +0 + + + + + + + + + +8.5 +11 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +5 +1 +0 +1 +0 +0 +0 +0.125 +0.125 +1 +1 +0.5 +0.5 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Flowchart +255 +0 +1 +1 +0 +0 +1 +1 +Flowchart +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +4.25 +9.625 +1.5 +1 +0.75 +0.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 + + + +0 +0.625 +0 +0.625 +1 +4 +1 +Move Line + + +0.75 +0 +0 +0 +0 +0 + + + +0 +0.5 +0 +0 +0 +0 + + + +1.5 +0.5 +0 +0 +0 +0 + + + +0.75 +1 +0 +0 +0 +0 + + + + + +0.75 +1 +1.5 +0.375 +0.75 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.5 +0 + + +1.5 +0.375 + + +0 +0.375 + + +0 +0 + + +INPUT + + + +0.75 +0 +1.5 +0.625 +0.75 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1.5 +0 + + +1.5 +0.625 + + +0 +0.625 + + +0 +0 + + +(Mangle) +Filter + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +1 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + + + + + + + + \ No newline at end of file diff --git a/Shorewall-docsN/images/Legend.vsd b/Shorewall-docsN/images/Legend.vsd new file mode 100755 index 000000000..a56e6ad10 Binary files /dev/null and b/Shorewall-docsN/images/Legend.vsd differ diff --git a/Shorewall-docsN/images/Logo.png b/Shorewall-docsN/images/Logo.png new file mode 100755 index 000000000..e8c518ca9 Binary files /dev/null and b/Shorewall-docsN/images/Logo.png differ diff --git a/Shorewall-docsN/images/Logo1.gif b/Shorewall-docsN/images/Logo1.gif new file mode 100644 index 000000000..5f44fb3f8 Binary files /dev/null and b/Shorewall-docsN/images/Logo1.gif differ diff --git a/Shorewall-docsN/images/Logo1.png b/Shorewall-docsN/images/Logo1.png new file mode 100755 index 000000000..60f545b6d Binary files /dev/null and b/Shorewall-docsN/images/Logo1.png differ diff --git a/Shorewall-docsN/images/Logo2.gif b/Shorewall-docsN/images/Logo2.gif new file mode 100644 index 000000000..801560300 Binary files /dev/null and b/Shorewall-docsN/images/Logo2.gif differ diff --git a/Shorewall-docsN/images/Logo3.png b/Shorewall-docsN/images/Logo3.png new file mode 100755 index 000000000..ef7860115 Binary files /dev/null and b/Shorewall-docsN/images/Logo3.png differ diff --git a/Shorewall-docsN/images/MDKlinux.jpg b/Shorewall-docsN/images/MDKlinux.jpg new file mode 100644 index 000000000..e8201c731 Binary files /dev/null and b/Shorewall-docsN/images/MDKlinux.jpg differ diff --git a/Shorewall-docsN/images/Mobile.png b/Shorewall-docsN/images/Mobile.png new file mode 100644 index 000000000..5456c7bcf Binary files /dev/null and b/Shorewall-docsN/images/Mobile.png differ diff --git a/Shorewall-docsN/images/Mobile.vdx b/Shorewall-docsN/images/Mobile.vdx new file mode 100755 index 000000000..e7941654a --- /dev/null +++ b/Shorewall-docsN/images/Mobile.vdx @@ -0,0 +1,6399 @@ + + + + + +TwoNets1 +teastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAAHwAAAChAAAAAAAAAAAAAAAcDAAAvQ4AACBFTUYAAAEAHO8AAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAAfO4AAAAAAAAAAAAAfAAAAKEAAAAAAAAAAAAAAH0 +AAACiAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADw7QAAKAAAAH0AAACiAAAAAQAYAAAAAADw7QAAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////wD///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////8A////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////AP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////wD//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////8A////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////AP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////wD//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8A//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////AP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////wD////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8A//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////AP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////wD////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////8A/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////AP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////wD//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////8A////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wD//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////8A///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////AP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wD/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////8A///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////AP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/wD////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8A/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///AP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////wD///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////8A/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////AP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////wD///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +//////////////////////////////8A///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////AP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wD/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////8A//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////AP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////wD// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////8A//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////AP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////wD////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////8A////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////AP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////wD//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////8A////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////AP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wD//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////8A///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////AP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////wD////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////8A//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////AP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wD////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8A/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////AP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wD///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////8A/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////AP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////wD//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////8A///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////AP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////wD/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////8A///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////AP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////wD/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////8A/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////A +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////wD///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +8A/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////AP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//wD///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////8A////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////AP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////wD/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////8AAAAAAAAAAAAAAAD///////8AAAAAAAAAAAAAA +AD/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////8A//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////AAA +A////////////////AAAAAAAA////////////////AAAA//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////AP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wAAAP//////////////////////////////////////// +///////wAAAP///////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////wAAAP////////// +/////////////////////////////////////////////////////////////////////wD////// +/////////////////////////////////////////////////////////////////////8AAAD/// ++fn5///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////8AAAD/ +//////////////////////////////////////////////8AAAD////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////8AAAD///9/f3///////////////////////////////////////////// +///////////////////////////////8A//////////////////////////////////////////// +////////////////////////////39/f////AAAA///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////AAAAAAAA/////////////////////////////////////////// +/////////////AAAAAAAA//////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////QEBA///////// +///////////////////////////////////////////////////////////////////////AP//// +///////////////////////////////////////////////////////////////////////0BAQP/ +//7e3t/////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////wAAAP/////////// +////////////////////////////////////////////////////////////wAAAP//////////// +///////////////////////////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////8f +Hx/////////////////////////////////////////////////////////////////////////// +/////////////////////////////////wD////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8AAAD///////////////////////////////////////////////////// +//////////////////////////8AAAD///////////////////////////////////////8AAAD// +/8AAAD///8AAAD///8AAAD///8AAAD///8AAAD/////////////////////////////////////// +////////////////////////////////////////////////////////////////////////8A/// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////h4eH////QEBA////QEBA////QEBA////QEBA////QEBA////Q +EBA////QEBA////////////////////////////////////v7+/l5eXf39/AAAA////////////// +//////////////////////////////////////////////////////////////////AAAAl5eX5+f +n////////////////////////////d3d3////f39/////f39/////f39/////f39/////f39///// +j4+P///////////////////////////////////////////////////////////////////////// +/////////////// +////////////////////AP/////////////////////////////////////////////////////// +////////////////////////////////////////////////////////wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///yAgIP///////8/Pz6enp39/fzhISBYgIAAAAA0QEEh +QUI+PjwAAAP///////////////////5+fn////wAAAP///wAAAP///wAAAP///yAgIP////////// +/////////////wAAAFJYWAAAACUwMIeHh9fX1////////////////0ZQUBQgIIOHh+fn5//////// +////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAP///////////////////////////////////////////////////////wD//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////v7++/v79/f39KW +FghMDAAAAAAAAAAAAAJEBBBUFCPj4/Pz8////////////8AAAD///////////////////////9AQE +D///9AQED///9AQED///9AQED///////////////////////////8AAAD////v7++Xl5cbKCgAAAA +UICBeaGi3t7f///97f38DYGADKCgAAABKWFinp6f///////////////////////////////////8A +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////////////////////////////////// +/////////////////////8A////////////////////////////////////////////////////// +//////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////////// +/////////////////////////n5+fAAAAAHh4AAAADhgYSlhYl5eXz8/P//////////////////// +////////////AAAA///////////////////////////////////////////////////////////// +///////////AAAA////////////////////x8fHXmhoCBAQAAAACRAQKDAwEEBAEEBAICgoAAAAAA +AADhgYcHh439/f////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +A////////////////////////////////////////////////////////////AP////////////// +/////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAL+/vwAAAP///////////////////////////////////////////////////5WfnxJgYA +WvrzlQUPf39////////////////////////////////////////////wAAAAAAAP///////////// +//////////////////////////////////////////wAAAAAAAP////////////////////////// +//////f395+fnzBAQAAAAAIwMAB4eGlwcPf396enp1RgYAkQEAAAADhISKenp/f39////wAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////////////////////////////// +///////////////////////wD//////////////////////////////////////////////////// +///////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/v78AAAD///////////////////// +///////////////////v7++vr69pcHAhMDAAAAAAWFgJMDBNWFj////////////////////////// +/////////////////////////8AAAD/////////////////////////////////////////////// +8AAAD////////////////////////////////////////////////////f399weHgOGBgsODj//// +///////////+/v79eaGgZICANEBBhaGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////// +//////////////////////////////////////////////////////////////8A///////////// +///////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAA////////////////////7+/vr6+vaXBwITAwAAAAAAAAAAAADhgYMEB +Af39/p6en39/f////////////////////////////////////////////////////AAAA//////// +////////////////////////////////////////AAAA///////////////////////////////// +///////////////////////////////39/f////////////////////////////z8/Pe39/l5eXAA +AAAAAA8vLy8vLy8vLy8vLyAAAAAAAA/////////////////////////////////////////////// +/////////////////////////AP////////////////////////////////////////////////// +/////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////8fHx2lwc +CowMAAAAAAAACg4OFRgYIeHh7+/v+/v7///////////////////////////////////////////// +///////////////////////////////wAAAP///////////////wAAAAAAAP///////////////wA +AAP////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////wAAAAAAAPLy8vLy8vLy8vLy8gAAAAAAAP/////// +////////////////////////////////////////////////////////////////wD/////////// +////////////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAA//8A//8 +A//8A//8A//8AAAAAAAAAAAAAAAAAAAB7f39/f3+vr6/X19f///////////////////////////// +//////////////////////////////////////////////////////////////////////////8AA +AAAAAAAAAAAAAD///////8AAAAAAAAAAAAAAAD/////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////8 +AAAAAAADy8vLy8vLy8vLy8vIAAAAAAAD///////////////////////////////////////////// +//////////////////////////8A///////////////////////////////////////////////// +/////////////// +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//AAAAAAAA///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///////////////////// +///////////////////////////////////////////////////AP//////////////////////// +///////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////wAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAP////////////////////////////////////////////////////////// +/////////////wD////////////////////////////////////////////////////////////// +/////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////8A/////////////////////// +/////////////////////////////////////////////////////////AAAAn5+fAAAA////AAAA +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////AP//////////////////////////////////////////////////////////// +///////////////////2BgYJ+fn////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////wD///////////////////// +//////////////////////////////////////////////////////////9gYGCfn5/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////8A/////////////////////////////////////////////////////////// +/////////////////////YGBgn5+f//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////AP/////////////////// +////////////////////////////////////////////////////////////2BgYJ+fn///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////wD///////////////////////////////////////////////////////// +//////////////////////9gYGCfn5////////8AAAD///8AAAD///8AAAD///8AAAD///8AAAD// +/8AAAD////f39// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////8A///////////////////////////////// +///////////////////////////////////////////////YGBgn5+f////WFhY////QEBA////QE +BA////QEBA////QEBA////QEBA////QEBA/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////AP////////////////////////////////////////////////////////////////////// +/////////2BgYJ+fn//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////wD/////////////////////////////// +////////////////////////////////////////////////9gYGCfn5///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////8A///////////////////////////////////////////////////////////////////// +///////////YGBgn5+f////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////AP///////////////////////////// +//////////////////////////////////////////////////2BgYJ+fn/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////wD/////////////////////////////////////////////////////////////////// +////////////9gYGCfn5///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8A//////////////////////////// +////////////////////////////////////////////////////YGBgn5+f///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////AP///////////////////////////////////////////////////////////////// +//////////////2BgYJ+fn/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////wD///////////////////////////////////////// +//////////////////////////////////////9gYGCfn5/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////8A// +///////////////////////////////////////////////////////////////////////////// +/YGBgn5+f//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////AP/////////////////////////////////////// +////////////////////////////////////////2BgYJ+fn///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////wD +///////////////////////////////////////////////////////////////////////////// +//9gYGCfn5/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8A////////////////////////////////////// +//////////////////////////////////////////YGBgn5+f/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +AP/////////////////////////////////////////////////////////////////////////// +////2BgYJ+fn///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wD//////////////////////////////////// +///////////////////////////////////////////9gYGCfn5////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8A////////////////////////////////////////////////////////////////////////// +//////YGBgn5+f/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////AP///////////////////////////////////////////////// +//////////////////////////////2BgYJ+fn/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wD////////// +/////////////////////////////////////////////////////////////////////9gYGCfn5 +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////8A//////////////////////////////////////////////// +////////////////////////////////YGBgn5+f///////////////////////////////////// +///////////////////n5+fn5+f////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////AP//////// +///////////////////////////////////////////////////////////////////////2BgYJ+ +fn////////////////////////////////////////////////////////39/f39/f/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////wD////////////////////////////////////////////// +/////////////////////////////////9gYGCfn5//////////////////////////////////// +////////////////////9/f39/f3///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////8A/////// +/////////////////////////////////////////////////////////////////////////YGBg +n5+f////////////////////////////////////////////////////////f39/f39////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////AP//////////////////////////////////////////// +///////////////////////////////////2BgYJ+fn////////////////////////////////// +//////////////////////39/f39/f/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wD///// +///////////////////////////Hx8d/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f38wM +DBQUFB/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39AQEBAQEB/f39/f3 +9/f39/f39/f39/f39/f39/f39/f39/f39/f39/f3+Xl5f//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////8A////////////////////////////z8/PBAQEAAAAPT09QUFBQUFBQUFBQU +FBQUFBQUFBQUFBQUFBQUFBGBgYKSkpQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUF +BQUFBQUFBISEhISEhQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBLS0teHh4//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////AP////////////////// +/////////3h4eDAwMGhoaEZGRnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2diwsLEpKSnZ2dnZ2d +nZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2djs7Ozs7O3Z2dnZ2dnZ2dnZ2dnZ2dn +Z2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dmdnZyAgIP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////wD///////////////////////////9ISEhgYGCPj48vLy9qampqampqamp +PT08bGxsbGxsbGxsbGxsbGxsKCgoREREbGxsbGxsbGxsWFhYbGxsHBwcbGxsHBwcbGxsHBwcbGxsR +EREbGxsbGxsNDQ0NDQ0bGxsbGxsbGxsbGxsbGxsbGxs7OztqampqampqampqampqampqamoQEBDv7 ++//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////8A///////////////// +///////////YGBgUFBQeHh4MjIyXl5eXl5eXl5eLy8vIyMjRkZGRkZGRkZGRkZGRkZGRkZGRkZGRk +ZGRkZGRkZGEhISRkZGEhISCQkJEBAQRkZGEhISRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZ +GNTU1GBgYXl5eXl5eXl5eXl5eXl5eW1tbCAgI//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////AP///////////////////////////5eXlxAQEDAwMD8/P1FRUVFRUVFR +USgoKCgoKFFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUQoKCkdHR1FRUVFRU +VFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUT09PRQUFFFRUVFRUVFRUVFRUVFRUTo6OkBAQP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////wD/////////////// +////////////////9QUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoKCjf39/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////8A///////////////////////////////////////////////////// +///f39/f39/////////////////////////////////////////////////////ICAg39/f////// +//////////////////////////////////////////v7+/QEBA/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////AP///////////// +//////////////////////////////////////////39/f39/f/////////////////////////// +/////////////////////////yAgIN/f3//////////////////////////////////////////// +////7+/v0BAQP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////wD///////////////////////////////////////////////////////9/f39/f3/// +/////////////////////////////////////////////////8gICDf39//////////////////// +////////////////////////////+/v79AQED//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////8A/////////////////////////// +/////////////////////////////f39/f39///////////////////////////////////////// +////////////ICAg39/f////////////////////////////////////////////////v7+/QEBA/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////AP///////////////////////////////////////////////////////39/f39/f/ +///////////////////////////////////////////////////yAgIN/f3////////////////// +//////////////////////////////7+/v0BAQP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////wD///////////////////////// +///////////////////////////////f39/f39/////////////////////////////////////// +/////////////+/v7/////////////////////////////////////////////////////39/fHx8 +f//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////8A/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////AP/////////////////////// +////////////////////////////////////////////////////////////////0BAQP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///39/f////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////wD///////////////////////////////////////////////////////////// +//////////////////////////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED// +/9AQED///9AQED/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////8A////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////AP/////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////wD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//8A///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////AP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////wD/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////8A//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////AP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////wD////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////8A//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////AP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////wD//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////8A////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////AP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////wD//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////8A/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////AP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////w +D//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////8A//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////AP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////wD////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////8A/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////AP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////wD///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8A/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////AA4AAAAUA +AAAAAAAABAAAAAUAAAA +2002-08-11T10:30:58 +2003-12-23T08:46:06 +2002-08-11T11:01:21 +2002-08-11T10:30:58 + + +11 +39 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +0 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +1 +0 +0 + + +0 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +0 +1 +0 +0 + + +14 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + + +2 +0 +0 +2 + + +Visio Network Solutions +
http://officupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + + +85 +110 +0.125 +-0.125 +1 +10 +0 +3 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +16 +16 +0 +0 +8 +4 +0 +0 +0 +0 + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + + + + +20 +85 +30 +3.75 +15 +1.875 +0 +0 +0 +0 + + +5 +85 +35 +85 + + +0 +0 +0 +0 +0 + + +0 + + +15 +1.875 +30 +3.75 +15 +1.875 +0 + + +5.001 +7.5 +5.001 +1.875 +0 +0 +1 +Position Connector + + +9 +-21.125 +9 +1.875 +0 +0 +1 +Position Connector + + +20.001 +-3.75 +20.001 +1.875 +0 +0 +1 +Position Connector + + +15 +7.5 +15 +1.875 +0 +0 +1 +Position Connector + + +24.9999 +7.5 +24.9999 +1.875 +0 +0 +1 +Position Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +12.5 +1.875 +12.5 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +0 +0 +0 +0 + + + +12.5 +1.875 +0 +0 +0 +0 + + + +15 +1.875 +0 +0 +0 +0 + + + +0.9375 +1.875 +0 +0 +0 +0 + + + +30 +1.875 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.9375 +0.234375 + + +0.9375 +3.515625 +0.234375 +1.875 +-1.5707963267949 +2.3 + + +0.9375 +0.234375 +1.640625 +1.875 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.9375 +3.75 + + +29.0625 +3.75 + + +29.0625 +0 +30 +1.875 +-1.5707963267949 +2 + + +0.9375 +0 + + +0.9375 +3.75 +0 +1.875 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +5.001 +7.5 + + +5.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +9 +-21.125 + + +9 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +20.001 +-3.75 + + +20.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +7.5 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +24.9999 +7.5 + + +24.9999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +12.5 +1.875 + + +12.5 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + + + +44 +55 +15 +11.25405906912 +7.5 +5.6270295345601 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +15.555555555556 +5.6270295345601 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +5.6270295345601 +0 +0 +0 +1 + + + +15 +5.6270295345601 +0 +0 +0 +1 + + + +7.5 +-2.4444444444444 +7.5 +5.6270295345601 +7 +2 +1 +Reposition Equipment Label + + +15.555555555556 +5.6270295345601 +7.5 +5.6270295345601 +9 +2 +1 +Reposition Text + + + + + +7.5 +5.6270295345601 +15 +11.25405906912 +7.5 +5.6270295345601 +0 +0 +0 +0 + + +0 +0 +15 +11.25405906912 + + +0 + + +0 +0 +0 +0 +0 + + +7.5 +-2.4444444444444 +4.0142144107222 +2.4444444444444 +2.0071072053611 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +0 + + +15 +0 + + +15 +11.25405906912 + + +0 +11.25405906912 + + +0 +0 + + + + + + + +15 +60 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.753993055556 +3.68125 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +11.1984375 +3.68125 +0 +0 +0 +1 + + + + + +5.59921875 +3.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 +0 +11.1984375 +7.3625 + + +0 + + +0 +0 +0 +0 +0 + + +5.59921875 +-2.4444444444444 +10.064019098222 +2.4444444444444 +5.0320095491111 +1.2222222222222 +0 + + + + + + +28.549609375 +57.5 +16.668378576225 +2.5 +8.3341892881124 +1.25 +-0.30466035525803 +0 +0 +0 + + +20.59921875 +60 +36.5 +55 + + +0 +0 +0 +0 +0 + + +0 + + +8.3341892881124 +-1.2222222222222 +16.668378576225 +2.4444444444444 +8.3341892881124 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +9.5841892881124 +2.5 + + +8.6466892881124 +0.75 + + +16.668378576225 +1.25 + + +7.0841892881124 +0 + + +8.0216892881124 +1.75 + + +0 +1.25 + + + + + +59.200390625 +56.840625 +15.834634971254 +2.5 +7.9173174856269 +1.25 +0.23462768534988 +0 +0 +0 + + +51.5 +55 +66.90078125 +58.68125 + + +0 +0 +0 +0 +0 + + +0 + + +7.9173174856269 +-1.2222222222222 +15.834634971254 +2.4444444444444 +7.9173174856269 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +9.1673174856269 +2.5 + + +8.2298174856269 +0.75 + + +15.834634971254 +1.25 + + +6.6673174856269 +0 + + +7.6048174856269 +1.75 + + +0 +1.25 + + + + + +20 +66.5 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +192.168.1.1 + + + +23.75 +55 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +206.162.148.9 + + + +44 +55.5 +10 +3 +5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +10 +0 + + +10 +3 + + +0 +3 + + +0 +0 + + +Internet + + + +62.25 +54 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +134.28.54.2 + + + +20.5 +92.5 +15 +3 +7.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +15 +0 + + +15 +3 + + +0 +3 + + +0 +0 + + +192.168.1.0/24 + + + +71.255475601753 +58.276455141227 +8.5109512035055 +6.5529102824536 +4.2554756017527 +3.2764551412268 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +9.066506759061 +3.2764551412268 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +4.2554756017527 +-2.4444444444444 +4.2554756017527 +3.2764551412268 +7 +2 +1 +Reposition Equipment Label + + +9.066506759061 +3.2764551412268 +4.2554756017527 +3.2764551412268 +9 +2 +1 +Reposition Text + + + + +4.2554756017527 +3.2764551412268 +8.4532216303498 +6.504175459779 +4.2266108151749 +3.2520877298895 +0 +0 +0 +0 + + +0 +0 +8.4532216303498 +6.504175459779 + + +0 + + +0 +0 +0 +0 +0 + + +4.2266108151749 +-2.4688118557817 +8.7087673621111 +2.4444444444444 +4.3543836810556 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +0 + + +8.4532216303498 +0 + + +8.4532216303498 +6.504175459779 + + +0 +6.504175459779 + + +0 +0 + + + + + + + +13.5 +52.5 +5 +3.5 +2.5 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +5 +0 + + +5 +3.5 + + +0 +3.5 + + +0 +0 + + +A + + + +71 +51.75 +5 +3.5 +2.5 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +5 +0 + + +5 +3.5 + + +0 +3.5 + + +0 +0 + + +B + + + + + + + + + + + +1 +1 +0 +1 +1 +11 +39 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + +10 +5 + + +10 +6 + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/Mobile.vsd b/Shorewall-docsN/images/Mobile.vsd new file mode 100644 index 000000000..f7f9087f2 Binary files /dev/null and b/Shorewall-docsN/images/Mobile.vsd differ diff --git a/Shorewall-docsN/images/MultiPPTP.png b/Shorewall-docsN/images/MultiPPTP.png new file mode 100755 index 000000000..899790d9d Binary files /dev/null and b/Shorewall-docsN/images/MultiPPTP.png differ diff --git a/Shorewall-docsN/images/MultiPPTP.vdx b/Shorewall-docsN/images/MultiPPTP.vdx new file mode 100755 index 000000000..e18e7e0e7 --- /dev/null +++ b/Shorewall-docsN/images/MultiPPTP.vdx @@ -0,0 +1,7737 @@ + + + + + +MultiPPTP +Tom Eastep + +Shoreline Firewall +671353298 +671351309 + +AQAAAGwAAAA9AAAAiAAAAL4DAADrAgAAAAAAAAAAAABzbQAApVQAACBFTUYAAAEAWEwAAFcBAAAEA +AAAAAAAAAAAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMARgAAACwAAA +AgAAAARU1GKwFAAQAcAAAAEAAAAAEQwNsBAAAAYAAAAGAAAABGAAAApAAAAJgAAABFTUYrMEACABA +AAAAEAAAAAACAPx9ABAAMAAAAAAAAAB5AAQAMAAAAAAAAAB1AAAAUAAAACAAAAAIAAAB+AwAAHUAA +ABQAAAAIAAAAAgAAAJsDAAAIQAADNAAAACgAAAABEMDbAwAAAAAAAAC4Ti5DVBzQQ7hOLkNbVslDu +E4uQ1Qc0EMAAYEAFEAAgBAAAAAEAAAAAAAA/0YAAAAgAQAAFAEAAEVNRisIQAECPAAAADAAAAABEM +DbAAAAAE4AAAAAAAAAt2WtPgIAAAACAAAAAgAAAAIAAAABEMDbAAAAAAAAAP8IQAADxAAAALgAAAA +BEMDbEwAAAAAAAAA9apFCW1bJQyn0iUNbVslDCjfEQmnKu0MKN8RCW1bJQ7hOLkNbVslDHzUIQ07i +1kMfNQhDW1bJQ7hOLkNbVslDUmhUQ07i1kNSaFRDW1bJQ7hOLkNbVslDuE4uQ2nKu0O4Ti5DW1bJQ ++uBekNpyrtD64F6Q1tWyUO4Ti5DW1bJQ7hOLkNUHNBDuE4uQ1tWyUO4Ti5DVBzQQwABAAEBAAEBAA +EBAAEAAQEAAQEAFUAAABAAAAAEAAAAAQAAACEAAAAIAAAAYgAAAAwAAAABAAAAJAAAACQAAAAAAIA +9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXwAAADgAAAABAAAAOAAAAAAAAAA4AAAAAAAAAAAAAQAF +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAEAAAAlAAAADAAAAAUAAIBaAAAAiAAAAEcAA +AB2AQAAFgEAAK8BAAAHAAAAEwAAAAIAAAADAAAAAwAAAAMAAAACAAAAAwAAAAMAAACMBCsZPxErGS +IGehciBisZ5QorGYQI3RqECCsZ5QorGUcN3RpHDSsZ5QorGeUKehflCisZqQ96F6kPKxnlCisZ5Qo +EGuUKKxnlCgQaJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAIBB +AAAAAAAAAAACAAAAKAAAAAwAAAABAAAARgAAAFQAAABIAAAARU1GKwhAAAM0AAAAKAAAAAEQwNsDA +AAAAAAAAK53OENPFClErnc4Q1KxJUSudzhDTxQpRAABgQAUQACAEAAAAAQAAAAAAAD/RgAAACABAA +AUAQAARU1GKwhAAQI8AAAAMAAAAAEQwNsAAAAATgAAAAAAAAC3Za0+AgAAAAIAAAACAAAAAgAAAAE +QwNsAAAAAAAAA/whAAAPEAAAAuAAAAAEQwNsTAAAAAAAAACm8pUJSsSVEpAiPQ1KxJUT2iNhCWese +RPaI2EJSsSVErnc4Q1KxJUQUXhJDTHcsRBReEkNSsSVErnc4Q1KxJURHkV5DTHcsREeRXkNSsSVEr +nc4Q1KxJUSudzhDWeseRK53OENSsSVEcVWCQ1nrHkRxVYJDUrElRK53OENSsSVErnc4Q08UKUSudz +hDUrElRK53OENPFClEAAEAAQEAAQEAAQEAAQABAQABAQAVQAAAEAAAAAQAAAABAAAAJAAAACQAAAA +AAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXwAAADgAAAABAAAAOAAAAAAAAAA4AAAAAAAAAAAA +AQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAEAAAAlAAAADAAAAAUAAIBaAAAAiAAAA +FEAAAB6AgAAIAEAALMCAAAHAAAAEwAAAAIAAAADAAAAAwAAAAMAAAACAAAAAwAAAAMAAAAuBW0p4h +FtKcUGuyfFBm0piAttKSYJHismCW0piAttKeoNHivqDW0piAttKYgLuyeIC20pSxC7J0sQbSmIC20 +piAtGKogLbSmIC0YqJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAA +AIBBAAAAAAAAAAACAAAAKAAAAAwAAAABAAAARgAAAPQBAADoAQAARU1GKwhAAAPUAQAAyAEAAAEQw +NsxAAAAAAAAAH9LskOJSuBDy6+4QyE090PBO8dDRoD/QzLJ0kPz0vJDavjTQzaG8UPWGNVDAAfwQ1 +on1kNxWe5Dz3XgQyO3/kMwge9Db2n7Q6XB90N/+OZDOpr4Q/rf5ENyW/lD8qPiQzYD+kOPSuBDwjM +ARH2Q40NAdgNE6vDbQ39JBESWQ89DwWkERP5TzUMUegRENFbLQxR6BERcVslDFHoERJk+vEMWzQFE +c6GxQzYA/UNzobFDI/77Q3KhsUMa/fpDM+KxQzkD+kMoYrJD6p7zQ5N4m0P0EuVDbyyTQ4SF2UPE2 +Z9DS1bYQ4AmoUPgNddDt6WiQ1wn1kNGU6RD59jLQ5P1k0OGzbxDR0OXQxGNtEM4tKtDfLSzQ73MrU +NE87JDxQiwQ4BLskMnYrJDMuerQzgcr0M3YqVDy7u2Q7m7o0MgacNDNHujQ7hYxUOPWqNDglbHQ49 +ao0NaVslDjlqjQx1u1kOLtKhDQgvhQ4FOr0NDC+FDlFCwQ0ML4UOdUbFDg8rgQ35LskONSuBDAAMD +AwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDgwAAABRAAIAQAAAAB +AAAAP////8kAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAAAlAAAADAAAAAAAAIATAA +AADAAAAAEAAAA7AAAACAAAAFUAAADgAAAAAAAAAAAAAAD//////////zEAAABKFgocFhfnHugY8R9 +aGlsegBoxHqQaAR7FGswdDxzXH/Edbh/5HuAcFB+cHCwfVRxBHwocDSBzHN4gfxsTIekZGyGrGR8h +axkfISsZHyGIF3QgNRagHzUWgB81FmAfPRZBH00WdB5wE6McZhIxG/wTCxslFOcaVRTFGosUfBl/E +poX6RKSFncVdxa6FV8WAhZKFk0WfRXkFa0U2BZ4FG4YcBSsGGwU6xhsFCsZbBTOGhcVIhzqFSIcCx +YiHCsWGhxKFgocPAAAAAgAAAA+AAAAGAAAAEYBAAAmAQAAEgIAAAACAAATAAAADAAAAAEAAAAlAAA +ADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAABGAAAAXAAAAFAAAABF +TUYrCEABAjwAAAAwAAAAARDA2wAAAABOAAAAAAAAAEoMgj8CAAAAAgAAAAIAAAACAAAAARDA2wAAA +AAAAAD/FUAAABAAAAAEAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAAF +8AAAA4AAAAAQAAADgAAAAAAAAAOAAAAAAAAAAAAAEAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQA +AAAwAAAABAAAAJQAAAAwAAAAFAACAVQAAAOAAAABFAQAAJAEAABQCAAABAgAAMQAAAEoWChwWF+ce +6BjxH1oaWx6AGjEepBoBHsUazB0PHNcf8R1uH/ke4BwUH5wcLB9VHEEfChwNIHMc3iB/GxMh6RkbI +asZHyFrGR8hKxkfIYgXdCA1FqAfNRaAHzUWYB89FkEfTRZ0HnAToxxmEjEb/BMLGyUU5xpVFMUaix +R8GX8SmhfpEpIWdxV3FroVXxYCFkoWTRZ9FeQVrRTYFngUbhhwFKwYbBTrGGwUKxlsFM4aFxUiHOo +VIhwLFiIcKxYaHEoWChwlAAAADAAAAAcAAIAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAA +AAAAgEEAAAAAAAAAAAIAAAAoAAAADAAAAAEAAABGAAAA6AAAANwAAABFTUYrKkAAACQAAAAYAAAAM +zPLQgAAAAAAAAAA +Jb/YQo9ao0OL7JlDCEACBjAAAAAkAAAAARDA26uqKj4AAAAAAAAAAAAAAAAFAAAAQQBSAEkAQQBMA +AAANkACgIQAAAB4AAAAAAAA/wEAAAABAAAACAAAAEkAbgB0AGUAcgBuAGUAdAAAqDc/zcxsP6uCQz +/NzGw/VT1bP83MbD8AGGc/zcxsP6vSfj/NzGw/AISGP83MbD9VYZI/zcxsP6s+nj/NzGw/AACAPwA +AAAAAAAAAAACAPwAAAAAAAAAAEgAAAAwAAAABAAAAGAAAAAwAAAAAAAAAFgAAAAwAAAAYAAAAUgAA +AHABAAABAAAA7v///wAAAAAAAAAAAAAAAJABAAAAAAAABwAEAEEAcgBpAGEAbAAAAAAATQBvAG4Ab +wB0AHkAcABlADoAQQByAGkAYQBsACAAUgBlAGcAdQBsAGEAcgA6AFYAZQAAAG0yDwAAAAgAAAAcAg +AAYPb//ywAAACgAwAA+AMAABwCAAAcAgAAAgAAAMDs//+ft+BwAMQAAAEAAAAAAAAAAQAAAADkAQB +AAAAA/////xwAAAAYAAAABwAAAAgAAADk2xIAkK9tMl+I03AKAAAAEgAAAIQ6bzIAnm0ynNwSAAAA +AACQFvV3SDlvMk4W9Xc4DrMAahb1dzhmbzI4X28yxNwSAIWH03CMOm8ywDlvMoKzbTIzAAAAAQAAA +AIAAAAAAAAAIJptMgCebTJIm20yCgAAAACebTJIm20yAAAAABAAAADgjHMyzAAAAAAAAADQAAAACA +AAANgAAACIOm8yZHYACAAAAAAlAAAADAAAAAEAAABUAAAAfAAAAJABAACHAQAAxwEAAJsBAAABAAA +AAADIQQCAu0GQAQAAmAEAAAgAAABMAAAAAAAAAAAAAAAAAAAA//////////9cAAAASQBuAHQAZQBy +AG4AZQB0AAUAAAAJAAAABQAAAAkAAAAGAAAACQAAAAkAAAAAAAAAJQAAAAwAAAANAACARgAAAHQAA +ABoAAAARU1GKytAAAAMAAAAAAAAAAhAAANIAAAAPAAAAAEQwNsFAAAAAAAAAK6rHkQSA99DrpsmRC +MUzkOumyZEva20Q66rHkSsnMVDrqseRBID30MAAQEBgQAAABRAAIAQAAAABAAAAE9i0P8kAAAAJAA +AAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAAAnAAAAGAAAAAIAAAAAAAAA0GJPAAAAAAAlAAAA +DAAAAAIAAAATAAAADAAAAAEAAAAlAAAADAAAAAgAAIBWAAAAMAAAAHoCAABpAQAAmwIAAL8BAAAFA +AAAqyfhG6cpwxmnKZYWqye0GKsn4RslAAAADAAAAAcAAIATAAAADAAAAAEAAAAlAAAADAAAAAAAAI +AkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAABGAAAAXAAAAFAAAABFTUYrCEABAjw +AAAAwAAAAARDA2wAAAABOAAAAAAAAAEoMgj8CAAAAAgAAAAIAAAACAAAAARDA2wAAAADNzc3/FUAA +ABAAAAAEAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAAF8AAAA4AAAAA +wAAADgAAAAAAAAAOAAAAAAAAAAAAAEAEAAAAAAAAADNzc0AAAAAAAAAAAAAAAAAJQAAAAwAAAADAA +AAJQAAAAwAAAAFAACAVgAAADAAAAB5AgAAZwEAAJwCAADAAQAABQAAAKsn4RunKcMZpymWFqsntBi +rJ+EbJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAIBBAAAAAAAA +AAACAAAAKAAAAAwAAAADAAAARgAAAOgEAADcBAAARU1GKwhAAQI4AAAALAAAAAEQwNsAAAAAFgAAA +AAAAABKDII/AQAAAAEAAAAAAABAARDA2wAAAADNzc3/CEAAA5AEAACEBAAAARDA238AAAAAAAAASB +UdRGjYyUOuqx5EaNjJQ66pH0SKusdDrqkfRIq6x0OupyBErJzFQ66nIESsnMVDrqUhRM5+w0OupSF +Ezn7DQ66jIkTwYMFDrqMiRPBgwUOuoSNEEkO/Q66hI0QSQ79Drp8kRDQlvUOunyRENCW9Q66dJURX +B7tDSBUdRCMUzkOuqx5EIxTOQ66pH0RF9stDrqkfREX2y0OupyBEaNjJQ66nIERo2MlDrqUhRIq6x +0OupSFEirrHQ66jIkSsnMVDrqMiRKycxUOuoSNEzn7DQ66hI0TOfsNDrp8kRPBgwUOunyRE8GDBQ6 +6dJUQSQ79Drp0lRBJDv0OumyZENCW9Q0gVHUTfT9JDrqseRN9P0kOuqR9EATLQQ66pH0QBMtBDrqc +gRCMUzkOupyBEIxTOQ66lIURF9stDrqUhREX2y0OuoyJEaNjJQ66jIkRo2MlDrqEjRIq6x0OuoSNE +irrHQ66fJESsnMVDrp8kRKycxUOunSVEzn7DQ66dJUTOfsNDrpsmRPBgwUNIFR1Em4vWQ66rHkSbi +9ZDrqkfRL1t1EOuqR9EvW3UQ66nIETfT9JDrqcgRN9P0kOupSFEATLQQ66lIUQBMtBDrqMiRCMUzk +OuoyJEIxTOQ66hI0RF9stDrqEjREX2y0OunyREaNjJQ66fJERo2MlDrp0lRIq6x0OunSVEirrHQ66 +bJkSsnMVDSBUdRFbH2kOuqx5EVsfaQ66pH0R5qdhDrqkfRHmp2EOupyBEm4vWQ66nIESbi9ZDrqUh +RL1t1EOupSFEvW3UQ66jIkTfT9JDrqMiRN9P0kOuoSNEATLQQ66hI0QBMtBDrp8kRCMUzkOunyREI +xTOQ66dJURF9stDrp0lREX2y0OumyZEaNjJQ66pH0SKusdDrqkfRM5+w0OuqR9EATLQQ66pH0RF9s +tDrqkfRHmp2EOuqR9EvW3UQ66nIERWx9pDrqcgRJuL1kOupyBEaNjJQ66nIESsnMVDrqcgRN9P0kO +upyBEIxTOQ66lIUTOfsNDrqUhRBJDv0OupSFERfbLQ66lIUSKusdDrqUhRL1t1EOupSFEATLQQ66j +IkSbi9ZDrqMiRN9P0kOuoyJErJzFQ66jIkTwYMFDrqMiRCMUzkOuoyJEaNjJQ66hI0QSQ79DrqEjR +FcHu0OuoSNEirrHQ66hI0TOfsNDrqEjRAEy0EOuoSNERfbLQ66fJETfT9JDrp8kRCMUzkOunyRE8G +DBQ66fJEQ0Jb1Drp8kRGjYyUOunyRErJzFQ66dJUTOfsNDrp0lRBJDv0OunSVERfbLQ66dJUSKusd +Drp0lRFcHu0OunSVEm8u2Q66dJURXB7tDrpsmRHnpuEMAAQEAAQABAAEAAQABAAEAAQEAAQABAAEA +AQABAAEAAQABAQABAAEAAQABAAEAAQABAAEBAAEAAQABAAEAAQABAAEAAQEAAQABAAEAAQABAAEAA +QABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABVAAAAQAAAABAAAAA +EAAAA6AAAADAAAAAIAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAA +AAAMAAAA4AAAAAAAAADgAAAAAAAAAACEBABAAAAAAAAAAzc3NAAAAAAAAAAAAAAAAACUAAAAMAAAA +AwAAACUAAAAMAAAABQAAgFoAAAAQAwAAbwIAAGkBAACfAgAAuwEAAD0AAAB/AAAAAwAAAAIAAAACA +AAAAgAAAAIAAAACAAAAAgAAAAMAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAwAAAAIAAA +ACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAADAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAM +AAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAA +AAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAA +gAAAEYnPBmrJzwZ +6yf4GOsn+BgqKLQYKii0GGoocBhqKHAYqSgtGKkoLRjpKOkX6SjpFygppRcoKaUXaClhF0YnwxmrJ +8MZ6yd/GesnfxkqKDwZKig8GWoo+BhqKPgYqSi0GKkotBjpKHAY6ShwGCgpLRgoKS0YaCnpF2gp6R +enKaUXRidKGqsnShrrJwca6ycHGioowxkqKMMZaih/GWoofxmpKDwZqSg8Geko+BjpKPgYKCm0GCg +ptBhoKXAYaClwGKcpLRhGJ9IaqyfSGusnjhrrJ44aKihKGiooShpqKAcaaigHGqkowxmpKMMZ6Sh/ +GekofxkoKTwZKCk8GWgp+BhoKfgYpym0GEYnWRurJ1kb6ycWG+snFhsqKNIaKijSGmoojhpqKI4aq +ShKGqkoShrpKAca6SgHGigpwxkoKcMZaCl/GWgpfxmnKTwZ6yf4GOsncBjrJwca6yd/GesnFhvrJ4 +4aKihZGyoo0hoqKDwZKii0GCooShoqKMMZaihwGGoo6RdqKH8Zaij4GGoojhpqKAcaqSjSGqkoShq +pKLQYqSgtGKkowxmpKDwZ6SjpF+koYRfpKPgY6ShwGOkoBxrpKH8ZKClKGigpwxkoKS0YKCmlFygp +PBkoKbQYaClwGGgp6RdoKX8ZaCn4GGgpYRdoKdoWaClhF6cpHhclAAAADAAAAAcAAIAlAAAADAAAA +AAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAAAoAAAADAAAAAMAAAA6AAAADA +AAAAoAAABGAAAANAAAACgAAABFTUYrCkAAgCQAAAAYAAAAX37c/wEAAABIFR1ErJzFQwAzy0AwM0t +CKAAAAAwAAAACAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAJwAAABgAAAAC +AAAAAAAAANx+XwAAAAAAJQAAAAwAAAACAAAAJQAAAAwAAAAIAACATAAAAGQAAAB0AgAAiwEAAHoCA +AC9AQAARicAALQYAABlAAAALQMAACEA8AAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAABwAAgCUAAAAMAAAAAAAAgCQAAAAkAAAAAAC +AQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAAEYAAACoAAAAnAAAAEVNRisIQAECQAAAADQAAAABEMDb +AAAAAF4AAAAAAAAASgyCPwIAAAACAAAAAgAAAAAAAEACAAAAARDA2wAAAADm5ub/CEAAA0gAAAA8A +AAAARDA2wUAAAAAAAAASBUdRBID30NIFR1ErJzFQ66rHkSsnMVDrqseRBID30NIFR1EEgPfQwABAQ +GBAAAAFUAAABAAAAAEAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAAF8 +AAAA4AAAAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEAEAAAAAAAAADm5uYAAAAAAAAAAAAAAAAAJQAA +AAwAAAADAAAAJQAAAAwAAAAFAACAVgAAADAAAAByAgAAiQEAAH0CAADAAQAABQAAAEYn4RtGJ7QYq +ye0GKsn4RtGJ+EbJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAI +BBAAAAAAAAAAACAAAAKAAAAAwAAAADAAAARgAAAGgAAABcAAAARU1GKwhAAANIAAAAPAAAAAEQwNs +FAAAAAAAAAOF2H0SsnMVD4WYnRL2ttEPhZidEP/yyQ+F2H0Qu68ND4XYfRKycxUMAAQEBgQAAABRA +AIAQAAAABAAAAJqamv8oAAAADAAAAAIAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAA +AIAAAAnAAAAGAAAAAIAAAAAAAAAmpqaAAAAAAAlAAAADAAAAAIAAAATAAAADAAAAAEAAAAlAAAADA +AAAAgAAIBWAAAAMAAAAH0CAABmAQAAngIAAIwBAAAFAAAA3ie0GNoplhbaKWAW3id+GN4ntBglAAA +ADAAAAAcAAIATAAAADAAAAAEAAAAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEA +AAAAAAAAAAIAAABGAAAAYAAAAFQAAABFTUYrCEABAkAAAAA0AAAAARDA2wAAAABeAAAAAAAAALdlr +T4CAAAAAgAAAAIAAAAAAABAAgAAAAEQwNsAAAAAAAAA/xVAAAAQAAAABAAAAAEAAAAkAAAAJAAAAA +AAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAAAAAMAAAA4AAAAAAAAADgAAAAAAAAAAAA +BAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAAAwAAACUAAAAMAAAABQAAgFYAAAAwAAAA +fAIAAGQBAACfAgAAjQEAAAUAAADeJ7QY2imWFtopYBbeJ34Y3ie0GCUAAAAMAAAABwAAgCUAAAAMA +AAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAAAAMAAAAAwAAAEYAAA +A0AAAAKAAAAEVNRisKQACAJAAAABgAAADAwMD/AQAAABRKHEQu68NDQDNLQQC/WEAoAAAADAAAAAI +AAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAAAnAAAAGAAAAAIAAAAAAAAAwMDA +AAAAAAAlAAAADAAAAAIAAAAlAAAADAAAAAgAAIBMAAAAZAAAAHECAACIAQAAfQIAAIoBAAATJwAAf +hgAAMsAAAA2AAAAIQDwAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAA +AAIBBAAAAAAAAAAACAAAARgAAAKgAAACcAAAARU1GKwhAAQJAAAAANAAAAAEQwNsAAAAAXgAAAAAA +AAC3Za0+AgAAAAIAAAACAAAAAAAAQAIAAAABEMDbAAAAAAAAAP8IQAADSAAAADwAAAABEMDbBQAAA +AAAAAAUShxELuvDQxRKHESsnMVD4XYfRKycxUPhdh9ELuvDQxRKHEQu68NDAAEBAYEAAAAVQAAAEA +AAAAQAAAABAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXwAAADgAAAADAAA +AOAAAAAAAAAA4AAAAAAAAAAAAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAMAAAAl +AAAADAAAAAUAAIBWAAAAMAAAAHACAACGAQAAfwIAAI0BAAAFAAAAEyd+GBMntBjeJ7QY3id+GBMnf +hglAAAADAAAAAcAAIAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAA +IAAAAoAAAADAAAAAMAAABGAAAAaAAAAFwAAABFTUYrCEAAA0gAAAA8AAAAARDA2wUAAAAAAAAAFEo +cRC7rw0MUOiREP/yyQ+FmJ0Q//LJD4XYfRC7rw0MUShxELuvDQwABAQGBAAAAFEAAgBAAAAAEAAAA +5ubm/ygAAAAMAAAAAgAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAACcAAAAYA +AAAAgAAAAAAAADm5uYAAAAAACUAAAAMAAAAAgAAABMAAAAMAAAAAQAAACUAAAAMAAAACAAAgFYAAA +AwAAAAcQIAAGYBAACeAgAAiAEAAAUAAAATJ34YDylgFtopYBbeJ34YEyd+GCUAAAAMAAAABwAAgBM +AAAAMAAAAAQAAACUAAAAMAAAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAA +AEYAAABgAAAAVAAAAEVNRisIQAECQAAAADQAAAABEMDbAAAAAF4AAAAAAAAAt2WtPgIAAAACAAAAA +gAAAAAAAEACAAAA +ARDA2wAAAAAAAAD/FUAAABAAAAAEAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAA +AAAAgAAAF8AAAA4AAAAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEABQAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAJQAAAAwAAAADAAAAJQAAAAwAAAAFAACAVgAAADAAAABwAgAAZAEAAJ8CAACJAQAABQAAABM +nfhgPKWAW2ilgFt4nfhgTJ34YJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAA +AAAAAAAAAIBBAAAAAAAAAAACAAAAKAAAAAwAAAADAAAARgAAAMwAAADAAAAARU1GKwhAAQI4AAAAL +AAAAAEQwNsAAAAAFgAAAAAAAABKDII/AQAAAAEAAAAAAABAARDA2wAAAADm5ub/CEAAA3QAAABoAA +AAARDA2woAAAAAAAAArqseRGjYyUNIFR1EaNjJQ66rHkQjFM5DSBUdRCMUzkOuqx5E30/SQ0gVHUT +fT9JDrqseRJuL1kNIFR1Em4vWQ66rHkRWx9pDSBUdRFbH2kMAAQABAAEAAQABAAAVQAAAEAAAAAQA +AAABAAAAOgAAAAwAAAACAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXwAAA +DgAAAADAAAAOAAAAAAAAAA4AAAAAAAAAAAhAQAQAAAAAAAAAObm5gAAAAAAAAAAAAAAAAAlAAAADA +AAAAMAAAAlAAAADAAAAAUAAIBaAAAAXAAAAG8CAACPAQAAgAIAALsBAAAFAAAACgAAAAIAAAACAAA +AAgAAAAIAAAACAAAAqyc8GUYnPBmrJ8MZRifDGasnShpGJ0oaqyfSGkYn0hqrJ1kbRidZGyUAAAAM +AAAABwAAgCUAAAAMAAAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAA +AAMAAAAAwAAADoAAAAMAAAACgAAAEYAAADcAAAA0AAAAEVNRisIQAECQAAAADQAAAABEMDbAAAAAF +4AAAAAAAAAJb/YPwIAAAACAAAAAgAAAAAAAEACAAAAARDA2wAAAAAAAAD/CEAAA3wAAABwAAAAARD +A2wsAAAAAAAAASBUdRBID30NIFR1ErJzFQxRKHESsnMVDFEocRC7rw0MUOiREP/yyQ+FmJ0Q//LJD +4WYnRL2ttEOumyZEO1+2Q66bJkQjFM5DrqseRBID30NIFR1EEgPfQwABAQEBAQEBAQEBABVAAAAQA +AAABAAAAAEAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAAAAAMAAA +A4AAAAAAAAADgAAAAAAAAAAAABABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAAAwAAACU +AAAAMAAAABQAAgFcAAABIAAAAbwIAAGQBAACgAgAAwAEAAAsAAABGJ+EbRie0GBMntBgTJ34YDylg +FtopYBbaKZYWpynMFqcpwxmrJ+EbRifhGyUAAAAMAAAABwAAgCUAAAAMAAAAAAAAgCQAAAAkAAAAA +ACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAAAAMAAAAAwAAAEYAAADoAAAA3AAAAEVNRisqQA +AAJAAAABgAAAAzM8tCAAAAAAAAAAAlv9hCOeEVRBID30MIQAIGMAAAACQAAAABEMDbq6oqPgAAAAA +AAAAAAAAAAAUAAABBAFIASQBBAEwAAAA2QAKAhAAAAHgAAAAAAAD/AQAAAAEAAAAIAAAARgBpAHIA +ZQB3AGEAbABsADmO4zxhCzY+x7EEPmELNj5ynCo+YQs2PsdxYz5hCzY+OS6hPmELNj45zt4+YQs2P +schBz9hCzY+cpwQP2ELNj4AAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAASAAAADAAAAAEAAAAYAAAADA +AAAAAAAAAWAAAADAAAABgAAAAlAAAADAAAAAEAAABUAAAAfAAAAFoCAADAAQAAkgIAANQBAAABAAA +AAADIQQCAu0FaAgAA0QEAAAgAAABMAAAAAAAAAAAAAAAAAAAA//////////9cAAAARgBpAHIAZQB3 +AGEAbABsAAoAAAAEAAAABgAAAAkAAAAMAAAACQAAAAQAAAAAAAAAJQAAAAwAAAANAACARgAAAGAAA +ABUAAAARU1GKytAAAAMAAAAAAAAAAhAAAM0AAAAKAAAAAEQwNsDAAAAAAAAAMLBVURUHNBDwsFVRF +tWyUPCwVVEVBzQQwABgQAUQACAEAAAAAQAAAAAAAD/RgAAACQBAAAYAQAARU1GKwhAAQJAAAAANAA +AAAEQwNsAAAAAXgAAAAAAAAC3Za0+AgAAAAIAAAACAAAAAAAAQAIAAAABEMDbAAAAAAAAAP8IQAAD +xAAAALgAAAABEMDbEwAAAAAAAABcWzxEW1bJQykob0RbVslD9rRCRGnKu0P2tEJEW1bJQ8LBVURbV +slDXDtMRE7i1kNcO0xEW1bJQ8LBVURbVslDKUhfRE7i1kMpSF9EW1bJQ8LBVURbVslDwsFVRGnKu0 +PCwVVEW1bJQ4/OaERpyrtDj85oRFtWyUPCwVVEW1bJQ8LBVURUHNBDwsFVRFtWyUPCwVVEVBzQQwA +BAAEBAAEBAAEBAAEAAQEAAQEAFUAAABAAAAAEAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACA +PQAAAAAAAAAAAgAAAF8AAAA4AAAAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEABQAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAJQAAAAwAAAADAAAAJQAAAAwAAAAFAACAWgAAAIgAAADwAgAAdgEAAL4DAACvAQ +AABwAAABMAAAACAAAAAwAAAAMAAAADAAAAAgAAAAMAAAADAAAAFy8rGcs7KxmuMHoXrjArGXE1Kxk +PM90aDzMrGXE1KxnTN90a0zcrGXE1KxlxNXoXcTUrGTQ6ehc0OisZcTUrGXE1BBpxNSsZcTUEGiUA +AAAMAAAABwAAgCUAAAAMAAAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAA +CgAAAAMAAAAAwAAAEYAAABUAAAASAAAAEVNRisIQAADNAAAACgAAAABEMDbAwAAAAAAAADCJSRDzc +wxQ8IlJEPaQCRDwiUkQ83MMUMAAYEAFEAAgBAAAAAEAAAAAAAA/0YAAAAkAQAAGAEAAEVNRisIQAE +CQAAAADQAAAABEMDbAAAAAF4AAAAAAAAAt2WtPgIAAAACAAAAAgAAAAAAAEACAAAAARDA2wAAAAAA +AAD/CEAAA8QAAAC4AAAAARDA2xMAAAAAAAAApDB6QtpAJEOu34RD2kAkQx/lr0L2KAlDH+WvQtpAJ +EPCJSRD2kAkQ1IY/EK/WD9DUhj8QtpAJEPCJSRD2kAkQ1w/SkO/WD9DXD9KQ9pAJEPCJSRD2kAkQ8 +IlJEP2KAlDwiUkQ9pAJEP2WHBD9igJQ/ZYcEPaQCRDwiUkQ9pAJEPCJSRDzcwxQ8IlJEPaQCRDwiU +kQ83MMUMAAQABAQABAQABAQABAAEBAAEBABVAAAAQAAAABAAAAAEAAAAkAAAAJAAAAAAAgD0AAAAA +AAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAAAAAMAAAA4AAAAAAAAADgAAAAAAAAAAAABAAUAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAAAwAAACUAAAAMAAAABQAAgFoAAACIAAAAPQAAAIgAAA +ALAQAAwQAAAAcAAAATAAAAAgAAAAMAAAADAAAAAwAAAAIAAAADAAAAAwAAAOkDRQqcEEUKgAWTCIA +FRQpDCkUK4Qf2C+EHRQpDCkUKpAz2C6QMRQpDCkUKQwqTCEMKRQoGD5MIBg9FCkMKRQpDCh0LQwpF +CkMKHQslAAAADAAAAAcAAIAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAA +AAAAAIAAAAoAAAA +DAAAAAMAAABGAAAAjAAAAIAAAABFTUYrCEABAkAAAAA0AAAAARDA2wAAAABeAAAAAAAAALdlrT4CA +AAAAgAAAAIAAAAAAABAAgAAAAEQwNsAAAAAAAAA/whAAAMsAAAAIAAAAAEQwNsCAAAAAAAAAK7fhE +PaQCRDajbHQ4vsmUMAAQAAFUAAABAAAAAEAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQA +AAAAAAAAAAgAAAF8AAAA4AAAAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEABQAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAJQAAAAwAAAADAAAAJQAAAAwAAAAFAACAVwAAACQAAAAIAQAAowAAAJABAAA1AQAAA +gAAAJwQRQrnGD4TJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAI +BBAAAAAAAAAAACAAAAKAAAAAwAAAADAAAARgAAAIwAAACAAAAARU1GKwhAAQJAAAAANAAAAAEQwNs +AAAAAXgAAAAAAAAC3Za0+AgAAAAIAAAACAAAAAAAAQAIAAAABEMDbAAAAAAAAAP8IQAADLAAAACAA +AAABEMDbAgAAAAAAAABqNsdDK8D4Q6QIj0NSsSVEAAEAABVAAAAQAAAABAAAAAEAAAAkAAAAJAAAA +AAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAAAAAMAAAA4AAAAAAAAADgAAAAAAAAAAA +ABAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAAAwAAACUAAAAMAAAABQAAgFcAAAAkAAA +AHQEAAPABAACQAQAAmAIAAAIAAADnGBgf4hFtKSUAAAAMAAAABwAAgCUAAAAMAAAAAAAAgCQAAAAk +AAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAAAAMAAAAAwAAAEYAAACMAAAAgAAAAEVNR +isIQAECQAAAADQAAAABEMDbAAAAAF4AAAAAAAAAt2WtPgIAAAACAAAAAgAAAAAAAEACAAAAARDA2w +AAAAAAAAD/CEAAAywAAAAgAAAAARDA2wIAAAAAAAAAKfSJQ1tWyUOPWqNDW1bJQwABAAAVQAAAEAA +AAAQAAAABAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXwAAADgAAAADAAAA +OAAAAAAAAAA4AAAAAAAAAAAAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAMAAAAlA +AAADAAAAAUAAIBXAAAAJAAAABIBAACRAQAASAEAAJQBAAACAAAAPxErGWwUKxklAAAADAAAAAcAAI +AlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAAAoAAAADAAAAAM +AAABGAAAAjAAAAIAAAABFTUYrCEABAkAAAAA0AAAAARDA2wAAAABeAAAAAAAAALdlrT4CAAAAAgAA +AAIAAAAAAABAAgAAAAEQwNsAAAAAAAAA/whAAAMsAAAAIAAAAAEQwNsCAAAAAAAAABR6BERbVslDS +BUdRCexykMAAQAAFUAAABAAAAAEAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAA +AAAgAAAF8AAAA4AAAAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEABQAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAJQAAAAwAAAADAAAAJQAAAAwAAAAFAACAVwAAACQAAAAQAgAAkQEAAHYCAACXAQAAAgAAAB8h +KxlGJ1cZJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAIBBAAAAA +AAAAAACAAAAKAAAAAwAAAADAAAARgAAAIwAAACAAAAARU1GKwhAAQJAAAAANAAAAAEQwNsAAAAAXg +AAAAAAAAC3Za0+AgAAAAIAAAACAAAAAAAAQAIAAAABEMDbAAAAAAAAAP8IQAADLAAAACAAAAABEMD +bAgAAAAAAAACuoyJEJ7HKQ1xbPERbVslDAAEAABVAAAAQAAAABAAAAAEAAAAkAAAAJAAAAAAAgD0A +AAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAAAAAMAAAA4AAAAAAAAADgAAAAAAAAAAAABAAUAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAAAwAAACUAAAAMAAAABQAAgFcAAAAkAAAAiQIAAJ +EBAADzAgAAlwEAAAIAAACpKFcZFy8rGSUAAAAMAAAABwAAgCUAAAAMAAAAAAAAgCQAAAAkAAAAAAC +AQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAAAAMAAAAAwAAAEYAAAA4AQAALAEAAEVNRisqQAAA +JAAAABgAAAAzM8tCAAAAAAAAAAAlv9hCKbylQkiaT0MIQAIGMAAAACQAAAABEMDbq6oqPgAAAAAAA +AAAAAAAAAUAAABBAFIASQBBAEwAAAA2QAKA1AAAAMgAAAAAAAD/AQAAAAEAAAAQAAAAUgBlAG0Abw +B0AGUAIABOAGUAdAB3AG8AcgBrACAAMQCa+VY+mpkZPs0cqT6amRk+IpLYPpqZGT680w8/mpkZPma +OJz+amRk+EWkzP5qZGT68I0s/mpkZPmb+Vj+amRk+Zs51P5qZGT6JxIY/mpkZPt6xjD+amRk+3hmc +P5qZGT4z96c/mpkZPt4Rrz+amRk+iby5P5qZGT7eqb8/mpkZPgAAgD8AAAAAAAAAAAAAgD8AAAAAA +AAAABIAAAAMAAAAAQAAABgAAAAMAAAAAAAAABYAAAAMAAAAGAAAACUAAAAMAAAAAQAAAFQAAACsAA +AAaAAAAM8AAADvAAAA4wAAAAEAAAAAAMhBAIC7QWgAAADgAAAAEAAAAEwAAAAAAAAAAAAAAAAAAAD +//////////2wAAABSAGUAbQBvAHQAZQAgAE4AZQB0AHcAbwByAGsAIAAxAAwAAAAJAAAADgAAAAkA +AAAFAAAACQAAAAUAAAAMAAAACQAAAAUAAAAMAAAACQAAAAYAAAAIAAAABQAAAAAAAAAlAAAADAAAA +A0AAIBGAAAAAAEAAPQAAABFTUYrK0AAAAwAAAAAAAAAKkAAACQAAAAYAAAAMzPLQgAAAAAAAAAAJb +/YQim8pUJImk9DNkACgMAAAAC0AAAAAAAA/wEAAAABAAAADgAAADEAOQAyAC4AMQA2ADgALgAxAC4 +AMAAvADIANAB3F7A+MzOzPs2M3z4zM7M+EYEHPzMzsz68Ox8/MzOzPmYWKz8zM7M+EdFCPzMzsz68 +i1o/MzOzPmZGcj8zM7M+ESF+PzMzsz7e7Yo/MzOzPjPbkD8zM7M+ibicPzMzsz7epaI/MzOzPjODr +j8zM7M+AACAPwAAAAAAAAAAAACAPwAAAAAAAAAAEgAAAAwAAAABAAAAGAAAAAwAAAAAAAAAFgAAAA +wAAAAYAAAAJQAAAAwAAAABAAAAVAAAAKAAAAB2AAAA5QAAAOMAAAD5AAAAAQAAAAAAyEEAgLtBdgA +AAPYAAAAOAAAATAAAAAAAAAAAAAAAAAAAAP//////////aAAAADEAOQAyAC4AMQA2ADgALgAxAC4A +MAAvADIANAAJAAAACQAAAAkAAAAFAAAACQAAAAkAAAAJAAAABQAAAAkAAAAFAAAACQAAAAUAAAAJA +AAAAAAAACUAAAAMAAAADQAAgEYAAABEAQAAOAEAAEVNRisrQAAADAAAAAAAAAAqQAAAJAAAABgAAA +AzM8tCAAAAAAAAAAAlv9hCKbylQhID30MIQAIGMAAAACQAAAABEMDbq6oqPgAAAAAAAAAAAAAAAAU +AAABBAFIASQBBAEwAAAA2QAKA1AAAAMgAAAAAAAD/AQAAAAEAAAAQAAAAUgBlAG0AbwB0AGUAIABO +AGUAdAB3AG8AcgBrACAAMgCa+VY+mpkZPs0cqT6amRk+IpLYPpqZGT680w8/mpkZPmaOJz+amRk+E +WkzP5qZGT68I0s/ +mpkZPmb+Vj+amRk+Zs51P5qZGT6JxIY/mpkZPt6xjD+amRk+3hmcP5qZGT4z96c/mpkZPt4Rrz+am +Rk+iby5P5qZGT7eqb8/mpkZPgAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAABIAAAAMAAAAAQAAABgAAA +AMAAAAAAAAABYAAAAMAAAAGAAAACUAAAAMAAAAAQAAAFQAAACsAAAAaAAAAL0BAADxAAAA0QEAAAE +AAAAAAMhBAIC7QWgAAADOAQAAEAAAAEwAAAAAAAAAAAAAAAAAAAD//////////2wAAABSAGUAbQBv +AHQAZQAgAE4AZQB0AHcAbwByAGsAIAAyAAwAAAAJAAAADgAAAAkAAAAFAAAACQAAAAUAAAAMAAAAC +QAAAAUAAAAMAAAACQAAAAYAAAAIAAAABQAAAAAAAAAlAAAADAAAAA0AAIBGAAAAAAEAAPQAAABFTU +YrK0AAAAwAAAAAAAAAKkAAACQAAAAYAAAAMzPLQgAAAAAAAAAAJb/YQim8pUISA99DNkACgMAAAAC +0AAAAAAAA/wEAAAABAAAADgAAADEAOQAyAC4AMQA2ADgALgAyAC4AMAAvADIANAB3F7A+MzOzPs2M +3z4zM7M+EYEHPzMzsz68Ox8/MzOzPmYWKz8zM7M+EdFCPzMzsz68i1o/MzOzPmZGcj8zM7M+ESF+P +zMzsz7e7Yo/MzOzPjPbkD8zM7M+ibicPzMzsz7epaI/MzOzPjODrj8zM7M+AACAPwAAAAAAAAAAAA +CAPwAAAAAAAAAAEgAAAAwAAAABAAAAGAAAAAwAAAAAAAAAFgAAAAwAAAAYAAAAJQAAAAwAAAABAAA +AVAAAAKAAAAB2AAAA0wEAAOMAAADnAQAAAQAAAAAAyEEAgLtBdgAAAOQBAAAOAAAATAAAAAAAAAAA +AAAAAAAAAP//////////aAAAADEAOQAyAC4AMQA2ADgALgAyAC4AMAAvADIANAAJAAAACQAAAAkAA +AAFAAAACQAAAAkAAAAJAAAABQAAAAkAAAAFAAAACQAAAAUAAAAJAAAAAAAAACUAAAAMAAAADQAAgE +YAAABEAQAAOAEAAEVNRisrQAAADAAAAAAAAAAqQAAAJAAAABgAAAAzM8tCAAAAAAAAAAAlv9hCKby +lQq6HMEQIQAIGMAAAACQAAAABEMDbq6oqPgAAAAAAAAAAAAAAAAUAAABBAFIASQBBAEwAAAA2QAKA +1AAAAMgAAAAAAAD/AQAAAAEAAAAQAAAAUgBlAG0AbwB0AGUAIABOAGUAdAB3AG8AcgBrACAAMwCa+ +VY+mpkZPs0cqT6amRk+IpLYPpqZGT680w8/mpkZPmaOJz+amRk+EWkzP5qZGT68I0s/mpkZPmb+Vj ++amRk+Zs51P5qZGT6JxIY/mpkZPt6xjD+amRk+3hmcP5qZGT4z96c/mpkZPt4Rrz+amRk+iby5P5q +ZGT7eqb8/mpkZPgAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAABIAAAAMAAAAAQAAABgAAAAMAAAAAAAA +ABYAAAAMAAAAGAAAACUAAAAMAAAAAQAAAFQAAACsAAAAaAAAAMECAADxAAAA1QIAAAEAAAAAAMhBA +IC7QWgAAADSAgAAEAAAAEwAAAAAAAAAAAAAAAAAAAD//////////2wAAABSAGUAbQBvAHQAZQAgAE +4AZQB0AHcAbwByAGsAIAAzAAwAAAAJAAAADgAAAAkAAAAFAAAACQAAAAUAAAAMAAAACQAAAAUAAAA +MAAAACQAAAAYAAAAIAAAABQAAAAAAAAAlAAAADAAAAA0AAIBGAAAAAAEAAPQAAABFTUYrK0AAAAwA +AAAAAAAAKkAAACQAAAAYAAAAMzPLQgAAAAAAAAAAJb/YQim8pUKuhzBENkACgMAAAAC0AAAAAAAA/ +wEAAAABAAAADgAAADEAOQAyAC4AMQA2ADgALgAzAC4AMAAvADIANAB3F7A+MzOzPs2M3z4zM7M+EY +EHPzMzsz68Ox8/MzOzPmYWKz8zM7M+EdFCPzMzsz68i1o/MzOzPmZGcj8zM7M+ESF+PzMzsz7e7Yo +/MzOzPjPbkD8zM7M+ibicPzMzsz7epaI/MzOzPjODrj8zM7M+AACAPwAAAAAAAAAAAACAPwAAAAAA +AAAAEgAAAAwAAAABAAAAGAAAAAwAAAAAAAAAFgAAAAwAAAAYAAAAJQAAAAwAAAABAAAAVAAAAKAAA +AB2AAAA1wIAAOMAAADrAgAAAQAAAAAAyEEAgLtBdgAAAOgCAAAOAAAATAAAAAAAAAAAAAAAAAAAAP +//////////aAAAADEAOQAyAC4AMQA2ADgALgAzAC4AMAAvADIANAAJAAAACQAAAAkAAAAFAAAACQA +AAAkAAAAJAAAABQAAAAkAAAAFAAAACQAAAAUAAAAJAAAAAAAAACUAAAAMAAAADQAAgEYAAAAoAQAA +HAEAAEVNRisrQAAADAAAAAAAAAAqQAAAJAAAABgAAAAzM8tCAAAAAAAAAAAlv9hCH9E5RBID30MIQ +AIGMAAAACQAAAABEMDbq6oqPgAAAAAAAAAAAAAAAAUAAABBAFIASQBBAEwAAAA2QAKAuAAAAKwAAA +AAAAD/AQAAAAEAAAANAAAATABvAGMAYQBsACAATgBlAHQAdwBvAHIAawB3d74+mpkZPs3s7T6amRk ++EbEOP5qZGT5mBiQ/mpkZPhHBOz+amRk+vDtFP5qZGT5mFlE/mpkZPmbmbz+amRk+idCDP5qZGT7e +vYk/mpkZPt4lmT+amRk+MwOlP5qZGT7eHaw/mpkZPgAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAE +gAAAAwAAAABAAAAGAAAAAwAAAAAAAAAFgAAAAwAAAAYAAAAJQAAAAwAAAABAAAAVAAAAJwAAAANAw +AAvQEAAHYDAADRAQAAAQAAAAAAyEEAgLtBDQMAAM4BAAANAAAATAAAAAAAAAAAAAAAAAAAAP///// +/////aAAAAEwAbwBjAGEAbAAgAE4AZQB0AHcAbwByAGsAAAAJAAAACQAAAAgAAAAJAAAABAAAAAUA +AAAMAAAACQAAAAUAAAAMAAAACQAAAAYAAAAAAAAAJQAAAAwAAAANAACARgAAAAwBAAAAAQAARU1GK +ytAAAAMAAAAAAAAACpAAAAkAAAAGAAAADMzy0IAAAAAAAAAACW/2EIf0TlEEgPfQzZAAoDMAAAAwA +AAAAAAAP8BAAAAAQAAAA8AAAAxADkAMgAuADEANgA4AC4AMQAwAC4AMAAvADIANADNXJg+MzOzPiL +Sxz4zM7M+d0f3PjMzsz5mXhM/MzOzPhE5Hz8zM7M+vPM2PzMzsz5mrk4/MzOzPhFpZj8zM7M+vENy +PzMzsz4z/4Q/MzOzPonckD8zM7M+3smWPzMzsz4zp6I/MzOzPomUqD8zM7M+3nG0PzMzsz4AAIA/A +AAAAAAAAAAAAIA/AAAAAAAAAAAAABIAAAAMAAAAAQAAABgAAAAMAAAAAAAAABYAAAAMAAAAGAAAAC +UAAAAMAAAAAQAAAFQAAACoAAAABgMAANMBAAB8AwAA5wEAAAEAAAAAAMhBAIC7QQYDAADkAQAADwA +AAEwAAAAAAAAAAAAAAAAAAAD//////////2wAAAAxADkAMgAuADEANgA4AC4AMQAwAC4AMAAvADIA +NAAAAAkAAAAJAAAACQAAAAUAAAAJAAAACQAAAAkAAAAFAAAACQAAAAkAAAAFAAAACQAAAAUAAAAJA +AAAAAAAACUAAAAMAAAADQAAgEYAAADIAQAAvAEAAEVNRisrQAAADAAAAAAAAAAqQAAAJAAAABgAAA +AzM8tCAAAAAAAAAAAlv9hCZv7LQ1KxJUQIQAIGMAAAACQAAAABEMDbchxHPgAAAAAAAAAAAAAAAAU +AAABBAFIASQBBAEwAAAA2QAKAWAEAAEwBAAAAAAD/AQAAAAEAAAAdAAAATQB1AGwAdABpAHAAbABl +ACAAUgBlAG0AbwB0AGUAIABQAFAAVABQACAATgBlAHQAdwBvAHIAawBzAIPdPD6rquo++lyxPquq6 +j4zu+g+q6rqPmzZ +/j6rquo+KEENP6uq6j5EUBg/q6rqPmH/Mz+rquo+fQ4/P6uq6j6avVo/q6rqPguSaD+rquo+W0KGP +6uq6j7pGZQ/q6rqPnfVqD+rquo+Bq22P6uq6j4/l70/q6rqPs1uyz+rquo+BlnSP6uq6j7N8uI/q6 +rqPpSM8z+rquo+SmABQKuq6j4urQlAq6rqPkoiDUCrquo+9R4WQKuq6j68Ch1Aq6rqPth/IECrquo ++g3wpQKuq6j5KaDBAq6rqPi6NNECrquo+EcY6QKuq6j4AAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAA +ABIAAAAMAAAAAQAAABgAAAAMAAAAAAAAABYAAAAMAAAAGAAAACgAAAAMAAAAAQAAAFIAAABwAQAAA +QAAAOv///8AAAAAAAAAAAAAAACQAQAAAAAAAAcABABBAHIAaQBhAGwAAAAAAE0AbwBuAG8AdAB5AH +AAZQA6AEEAcgBpAGEAbAAgAFIAZQBnAHUAbABhAHIAOgBWAGUAAABtMgoAAAADAAAAAAAAAAAAAAA +A/v//fAMAAHACAAAAAAAA4gAAAAIAAAAAiAMAn7fgcADhMQAAAAAAAQAAAP////8AJDoAQAAAAAEA +AADiAAAAIAAAAAQAAAAgAAAAVLBtMoCvbTJfiNNwDAABAAAAFAAY2xIAAJ5tMgzcEgAAAPd3yNX2d +/////9qFvV3y2DndwAAFAAAAAAA3mDnd5IPCsUwkBoAIMDKd9h9cTIgs20yLgAAAAIAAADo2xIAAA +AAAATmEgAJSOl3iDLod//////eYOd3Ha3HdzCQGgDIHyUzMJAaAAgAAABU3BIA3nTIdyDAyne7EiE +RAQAAAGR2AAgAAAAAJQAAAAwAAAABAAAAVAAAAPwAAACrAQAAtQIAAMQCAADMAgAAAQAAAAAAyEEA +gLtBqwEAAMgCAAAdAAAATAAAAAAAAAAAAAAAAAAAAP//////////iAAAAE0AdQBsAHQAaQBwAGwAZ +QAgAFIAZQBtAG8AdABlACAAUABQAFQAUAAgAE4AZQB0AHcAbwByAGsAcwAAABAAAAALAAAABAAAAA +UAAAAEAAAACwAAAAQAAAALAAAABQAAAA4AAAALAAAAEAAAAAsAAAAFAAAACwAAAAUAAAANAAAADQA +AAAwAAAANAAAABQAAAA4AAAALAAAABQAAAA4AAAALAAAABwAAAAoAAAAAAAAAJQAAAAwAAAANAACA +RgAAABwAAAAQAAAARU1GKytAAAAMAAAAAAAAAEwAAABkAAAAPgAAAIgAAAC+AwAA6wIAAD4AAACIA +AAAgQMAAGQCAAApAKoAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAiAAAADAAAAP////9GAAAAHAAAABAAAABFTUYrAkAAAAwAAAAAAAAADgAAABQ +AAAAAAAAAEAAAABQAAAA= +2003-10-11T15:41:55 +2003-12-23T08:56:27 +2003-11-10T07:09:48 +2003-10-11T15:41:55 + + +9 +295 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +18 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +20 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +3 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +3 +1 +0 +2 +0 +0 +1 +2 +0 + + + + +1 +1 +1 +0 + + +1 +#8a8aff +31 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0016666666666667 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + + +2 +0 +1 +0 + + +2 + + + +Visio Network Solutions +
http://netc.members.microsoft.com/
+ + + +0 +0 +
+
+ + + + + + + + + + +11 +8.5 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Apple +255 +0 +1 +1 +0 +0 +1 +1 +Apple +0 + + +Digital +255 +0 +1 +1 +0 +0 +1 +1 +Digital +0 + + +Cray +255 +0 +1 +1 +0 +0 +1 +1 +Cray +0 + + +IBM +255 +0 +1 +1 +0 +0 +1 +1 +IBM +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +1.7 +4.8 +2 +3.25E-18 +1 +1.625E-18 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 + + + +0.25 +0.25 +0 +0 +0 +0 + + + +0.625 +-0.25 +0 +0 +0 +0 + + + +1.375 +-0.25 +0 +0 +0 +0 + + + +1 +0.25 +0 +0 +0 +0 + + + +1.75 +0.25 +0 +0 +0 +0 + + + +1 +-0.125 +0 +0 +0 +0 + + + +0.81666666666667 +1.61135E-18 +0 +0 +0 +0 + + + +1.1666666666667 +1.625E-18 +0 +0 +0 +0 + + + +0 +1.625E-18 +0 +0 +0 +0 + + + +2 +1.625E-18 +0 +0 +0 +0 + + + + + +1.8 +2.4 +2 +3.25E-18 +1 +1.625E-18 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 + + + +0.25 +0.25 +0 +0 +0 +0 + + + +0.625 +-0.25 +0 +0 +0 +0 + + + +1.375 +-0.25 +0 +0 +0 +0 + + + +1 +0.25 +0 +0 +0 +0 + + + +1.75 +0.25 +0 +0 +0 +0 + + + +1 +-0.125 +0 +0 +0 +0 + + + +0.81666666666667 +1.61135E-18 +0 +0 +0 +0 + + + +1.1666666666667 +1.625E-18 +0 +0 +0 +0 + + + +0 +1.625E-18 +0 +0 +0 +0 + + + +2 +1.625E-18 +0 +0 +0 +0 + + + + + +4.2 +4.8 +2 +1.75 +1 +0.875 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0.875 +0 +0 +0 +0 + + + +0.705882 +1.75 +0 +0 +0 +0 + + + +1.2942 +1.75 +0 +0 +0 +0 + + + +0.705882 +0 +0 +0 +0 +0 + + + +1.294118 +0 +0 +0 +0 +0 + + + +2 +0.875 +0 +0 +0 +0 + + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.29411764705882 +0.45139244650857 + + +1 +0.19195334392518 +0.61462786302837 +0.01660909406747 +0 +0.53781512605042 + + +1.7058823529412 +0.45139244650857 +1.3853721369716 +0.016609094067465 +0 +0.53781512605042 + + +2 +0.875 +1.9087935142814 +0.52912588091909 +0 +0.53781512605042 + + +1.7058823529412 +1.2986075534914 +1.9087935142814 +1.2208741190809 +0 +0.53781512605042 + + +1 +1.5580466560748 +1.3853721369716 +1.7333909059325 +0 +0.53781512605042 + + +0.29411764705882 +1.2986075534914 +0.61462786302837 +1.7333909059325 +0 +0.53781512605042 + + +0 +0.875 +0.091206485718635 +1.2208741190809 +0 +0.53781512605042 + + +0.29411764705882 +0.45139244650857 +0.091206485718638 +0.52912588091909 +0 +0.53781512605042 + + +Internet + + + +6.2 +4.65 +0.0625 +0.5 +0.03125 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.03125 +-0.12777777777778 +0.03125 +0.25 +3 +2 +0 +Reposition Text + + +0 +0 +0.5 +1 +0 +0 + + +0.21875 +0.15625 +0 +0 +0 +0 + + + +0.21875 +0.375 +0 +0 +0 +0 + + + +0 +0.375 +0 +0 +0 +0 + + + +0.03515625 +0 +0 +0 +0 +0 + + + +0.1875 +0.65625 +0 +0 +0 +0 + + + + + +0.21875 +0.390625 +0.3125 +0.78125 +0.15625 +0.390625 +0 +0 +0 +0 + + +0 + + +#d0624f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0.1875 +0.41015625 +0.375 +0.6640625 +0.1875 +0.33203125 +0 +0 +0 +0 + + +0 + + + + +0.03125 +0.234375 +0.0625 +0.46875 +0.03125 +0.234375 +0 +0 +0 +0 + + +0 + + +#dc7e5f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0.25 +0.640625 +0.3125 +0.34375 +0.15625 +0.171875 +0 +0 +0 +0 + + +0 + + + + +0.03125 +0.484375 +0.125 +0.03125 +0.0625 +0.015625 +0 +0 +0 +0 + + +0 + + + + +0.1875 +0.65625 +0.4375 +0.3125 +0.21875 +0.15625 +0 +0 +0 +0 + + +0 + + + + +0.03125 +0.234375 +0.0625 +0.3125 +0.03125 +0.15625 +0 +0 +0 +0 + + +0 + + + + +0.1875 +0.40625 +0.4375 +0.8125 +0.21875 +0.40625 +0 +0 +0 +0 + + +0 + + + + +0 +0 +0.62969292634722 +0.25555555555556 +0.28359646317361 +0.25555555555556 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.31484646317361 +0.12777777777778 +0.62969292634722 +0.25555555555556 +0.31484646317361 +0.12777777777778 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +0.62969292634722 +0 + + +0.62969292634722 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Firewall + + + + + +8.4 +4.8 +2 +3.25E-18 +1 +1.625E-18 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 + + + +0.25 +0.25 +0 +0 +0 +0 + + + +0.625 +-0.25 +0 +0 +0 +0 + + + +1.375 +-0.25 +0 +0 +0 +0 + + + +1 +0.25 +0 +0 +0 +0 + + + +1.75 +0.25 +0 +0 +0 +0 + + + +1 +-0.125 +0 +0 +0 +0 + + + +0.81666666666667 +1.61135E-18 +0 +0 +0 +0 + + + +1.1666666666667 +1.625E-18 +0 +0 +0 +0 + + + +0 +1.625E-18 +0 +0 +0 +0 + + + +2 +1.625E-18 +0 +0 +0 +0 + + + + + +1.6 +7 +2 +3.25E-18 +1 +1.625E-18 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 + + + +0.25 +0.25 +0 +0 +0 +0 + + + +0.625 +-0.25 +0 +0 +0 +0 + + + +1.375 +-0.25 +0 +0 +0 +0 + + + +1 +0.25 +0 +0 +0 +0 + + + +1.75 +0.25 +0 +0 +0 +0 + + + +1 +-0.125 +0 +0 +0 +0 + + + +0.81666666666667 +1.61135E-18 +0 +0 +0 +0 + + + +1.1666666666667 +1.625E-18 +0 +0 +0 +0 + + + +0 +1.625E-18 +0 +0 +0 +0 + + + +2 +1.625E-18 +0 +0 +0 +0 + + + + + +3.252941 +6.3375 +1.8603636198131 +0 +0.93018180990654 +0 +-0.79266480002215 +0 +0 +0 + + +2.6 +7 +3.905882 +5.675 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.93018180990654 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.79266480002215 + + +0.93018180990654 +0 +0.93018180990654 +0 +0 +0 +0 +Curve Position + + +0.93018180990654 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +1.8603636198131 +0 +0.93018180990654 +0 +0 +1 + + + + + +3.352941 +3.1625 +1.8837728095299 +0 +0.94188640476493 +0 +-2.1982149728809 +0 +1 +0 + + +3.905882 +3.925 +2.8 +2.4 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.94188640476493 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +-2.1982149728809 + + +0.94188640476493 +0 +0.94188640476493 +0 +0 +0 +0 +Curve Position + + +0.94188640476493 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +1.8837728095299 +0 +0.94188640476493 +0 +0 +1 + + + + + +2.95 +4.8 +0.5 +0 +0.25 +0 +0 +0 +0 +0 + + +2.7 +4.8 +3.2 +4.8 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.25 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0.25 +0 +0.25 +0 +0 +0 +0 +Curve Position + + +0.25 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.5 +0 +0.25 +0 +0 +1 + + + + + +5.684375 +4.7875 +0.96907252695554 +0 +0.48453626347777 +0 +-0.025800725101425 +0 +0 +0 + + +5.2 +4.8 +6.16875 +4.775 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.48453626347777 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.025800725101425 + + +0.48453626347777 +0 +0.48453626347777 +0 +0 +0 +0 +Curve Position + + +0.48453626347777 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.96907252695554 +0 +0.48453626347777 +0 +0 +1 + + + + + +6.89375 +4.7875 +1.0128085949477 +0 +0.50640429747387 +0 +0.0246863420556 +0 +1 +0 + + +6.3875 +4.775 +7.4 +4.8 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.50640429747387 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.0246863420556 + + +0.50640429747387 +0 +0.50640429747387 +0 +0 +0 +0 +Curve Position + + +0.50640429747387 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +1.0128085949477 +0 +0.50640429747387 +0 +0 +1 + + + + + +1.7 +6.4 +1.8 +0.4 +0.9 +0.2 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +0.4 + + +0 +0.4 + + +0 +0 + + +Remote Network 1 +192.168.1.0/24 + + + +1.7 +4.2 +1.8 +0.4 +0.9 +0.2 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +0.4 + + +0 +0.4 + + +0 +0 + + +Remote Network 2 +192.168.2.0/24 + + + +1.7 +1.8 +1.8 +0.4 +0.9 +0.2 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +0.4 + + +0 +0.4 + + +0 +0 + + +Remote Network 3 +192.168.3.0/24 + + + +8.2 +4.2 +1.8 +0.4 +0.9 +0.2 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +0.4 + + +0 +0.4 + + +0 +0 + + +Local Network +192.168.10.0/24 + + + +5.6 +2 +3.2 +0.8 +1.6 +0.4 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +3.2 +0 + + +3.2 +0.8 + + +0 +0.8 + + +0 +0 + + +Multiple Remote PPTP Networks + + + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + + + + + + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/MultiPPTP.vsd b/Shorewall-docsN/images/MultiPPTP.vsd new file mode 100755 index 000000000..0675bccd3 Binary files /dev/null and b/Shorewall-docsN/images/MultiPPTP.vsd differ diff --git a/Shorewall-docsN/images/MultiZone1.png b/Shorewall-docsN/images/MultiZone1.png new file mode 100755 index 000000000..a2391cab9 Binary files /dev/null and b/Shorewall-docsN/images/MultiZone1.png differ diff --git a/Shorewall-docsN/images/MultiZone1.vdx b/Shorewall-docsN/images/MultiZone1.vdx new file mode 100755 index 000000000..24a8be801 --- /dev/null +++ b/Shorewall-docsN/images/MultiZone1.vdx @@ -0,0 +1,15685 @@ + + + + + +MultiZone1 +TEastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAABcBAADXAAAAAAAAAAAAAAA/GwAArxMAACBFTUYAAAEA7MUCAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAATMUCAAAAAAAAAAAAFwEAANcAAAAAAAAAAAAAABg +BAADYAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADAxAIAKAAAABgBAADYAAAAAQAYAAAAAADAxAIAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/ +//wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///7+/v/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///7+/v//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////+/v7////////////////////////////////////////////////+/v7// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////0hISMfHx//////// +/////////////// +/////////////////+fn5ygoKP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////0BAQL+/v////////////////////////////////////////9/f3yAgIP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////0BAQL+/v//////////////// +////////////////////////9/f3yAgIP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////0BAQL+/v////////////////////////////////////////9/f3yAgIP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////0BAQL+/v//////////////////////// +////////////////9/f3yAgIP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////0BAQL+/v////////////////////////////////////////9/f3yAgIP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////7+/vx0dHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYWFra +2tv////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////f39xYWFk9PTy4uLsDAwMDAwMDAwMDAwMDA +wMDAwMDAwMDAwMDAwDAwMJCQkMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwKioqBgYGMDAw +MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwK6urhwcHOfn5///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////8/PzwAAA +NfX1xYWFq6ursDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwDAwMK6ursDAwMDAwMDAwMDAwMDAwMDAwM +DAwMDAwMDAwMDAwLq6uhgYGMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQK+vr// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////5+fnwAAAP///zw8PJCQkMDAwLq6ujw8PDAwMDAwMDAw +MDAwMDAwMAwMDGRkZMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAKmpqQYGBjAwMDAwMDAwM +DAwMDAwMDY2Nq6ursDAwMDAwMDAwMDAwGBgYH9/f///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////6 ++vrwAAAO/v7ywsLJycnMDAwKioqBISEpCQkJCQkJCQkJCQkJCQkJCQkLKysgAAAMDAwAAAAMDAwAA +AAMDAwAAAAMDAwAAAAMDAwHBwcJCQkJCQkJCQkJCQkJCQkJCQkCQkJJCQkMDAwMDAwMDAwMDAwFFR +UZeXl//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////+fn5wAAAK+vrw4ODrq6usDAwKioqBgYGMDAw +MDAwMDAwMDAwMDA +wMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw +DAwMJCQkMDAwMDAwMDAwMDAwCgoKM/Pz///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////2xsbA +AAACUlJWBgYGBgYFRUVAwMDGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYCcnJycnJ2B +gYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYBgYGEhISGBgYGBgYGBgYEtLS0xMTP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////6enp39/f39/f39/f3BwcBAQEH9/f39/f39/f +39/f39/f39/f39/f39/f39/f39/f39/fyAgICAgIH9/f39/f39/f39/f39/f39/f39/f39/f39/f3 +9/f39/fyAgIGBgYH9/f39/f39/f5+fn/f39////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////9/f3yAgIP///////////////////////////////////////////z8/ +Pz8/P////////////////////////////////////////////0BAQL+/v//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////9/f3yAgIP/////////////////// +////////////////////////z8/Pz8/P////////////////////////////////////////////0 +BAQL+/v////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////9/f3yAgIP///////////////////////////////////////////z8/Pz8/P/// +/////////////////////////////////////////0BAQL+/v//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////9/f3yAgIP//////////// +///////////////////////////////z8/Pz8/P////////////////////////////////////// +//////0BAQL+/v/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////9/f3yAgIP///////////////////////////////////////////z8/P +z8/P////////////////////////////////////////////0BAQL+/v///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////f394eHh///////////////////// +///////////////////////19fX19fX////////////////////////////////////////////5e +Xl+fn5/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////39/f39/f//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////2BgYJ+fn/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////////////2BgYJ+fn//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////2BgYJ+fn/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////6+vr////39/f////39/f////zAwMJ+fn39/f/ +///39/f////39/f////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////wAAAP///wAAAP///wAAAGBgYAAAAP///wAAAP///wAAAP///9/f3//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////2BgYP///wAAAP///wAAAP///wAAAJ+fnwAAAP///wAAAP +///wAAAP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/0BAQP///0BAQP///0BAQGBgYCgoKP///0BAQP///0BAQP///+fn5//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////7+/v39/f39/f39/f39/f39/f39/f2dnZ0NDQywsLCAgIBAQEAAAAAAAAAcHByAgICA +gIDg4OD8/P1tbW29vb39/f39/f39/f39/f39/f6+vr/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////xQUFBAQEBcXFxcXFxcXFxQUF +AAAACUlJV9fX4eHh5+fn7+/v9/f38HBwcfHx6WlpaCgoHV1dWVlZTg4OAsLCwAAABcXFxcXFxcXFx +cXFxAQEHJycv///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///wAAAHl5eXx8fIGBgYWFhZCQkL29vcPDw8nJyc7OztTU1Nzc3OHh4ebm5uPj49/f39bW1tHR0cv +Ly8XFxb+/v7q6uoeHh4KCgn9/f3p6ekpKShsbG52dnf////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////wAAAKGhoaampqysrLKysrm5ucjIyMvLy +8rKysjIyM/Pz8XFxcfHx8nJycjIyMbGxsjIyM/Pz8fHx8jIyMnJycHBwbS0tK6urqmpqaOjo2JiYj +8/P0VFRZ2dnf///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////1dXV8HBwcPDw8TExMbGxsLCwry8vLy8vLDQsHTkdMfXx1LxUt/f30j3SOLi4lPyU8nZ +yXXldbLSssTExLm5uby8vMjIyMXFxcPDw8LCwrKysk5OTpqamkVFRZ2dnf/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////wAAAFVVVVNTU5aWlrKysri4uL29vcPDw5fXlzTzN +LnZuRv6G9/f3wD/AOLi4hz7HLvbuzTzNJjYmMXFxb+/v7q6urS0tK6urqmpqaOjo2JiYjw8PJ2dnY +eHhxsbG////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//wAAAAAAAAAAAGtra7Kysri4uJ+fn3p6ejxcPAfeBwAXAACfAAAoAACPAABAAAB4AABYAAd3BxmZ +GVdXV4mJia6urrS0tK6urqmpqaOjo2JiYkJCQpWVlYmJiRsbG//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////wQEBBcXFxcXFwAAAAAAAAAAACQkJFdXV5 +eXl7Ozs+bm5ubm5ubm5ubm5ubm5ubm5ubm5tjY2KysrIGBgUFBQQwMDAAAAAAAABERES0tLRwcHFB +QUJqamoKCghkZGf////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////7+/v3BwcCgoKAAAAAAAABgYGHBwcM/Pz/////////////////// +/////////////////9fX13h4eCgoKAAAAAAAAAgICFhYWKenp/f39//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////7W1tS0tLaKioubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5tjY2Obm5 +ubm5ubm5ubm5ubm5ubm5ubm5ubm5tDQ0KysrKysrODg4K+vr4eHhxsbG///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////9fX10BAQEBAQI+Pj9fX1////////+fn5 +4+PjzAwMEhISOfn5////////////////////+/v72BgYCgoKIeHh9fX1/////////f396enp1hYWD +AwMMfHx////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8/Pzzw8PNjY2Obm5ubm5ubm5ubm5ubm5ubm5u +bm5ubm5ubm5ubm5ubm5g4ODubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ufn55m +ZmRsbG/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////5+fnzAwML+/v////////////////////////////////7e3tygoKKenp////////////7e3 +tyAgIJ+fn////////////////////////////////9fX1zg4OIeHh//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn5////7+/v////7+/v////7+/v// +//7+/v////7+/v////7+/v////7+/v/////////////////////////////////////////////// +/////////8/Pzzw8PHNzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3NzcwAAAHNzc3Nzc3Nzc +3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc2VlZR0dHf//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////5+fn2BgYPf39///////////////////// +///////////////////+/v71hYWJ+fn////7e3t1BQUO/v7////////////////////////////// +//////////////3h4eH9/f/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///9/f3/ +///////////////////////////////////////////////////////8/Pz39/f39/f39/f39/f39 +/f39/f39/f39/f39/f39/f39/fwAAAH9/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/ +f39/f39/f6+vr//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////7e3t1BQUPf39////////////////////////////////////////////////////0hISI+Pj +0BAQO/v7////////////////////////////////////////////////////3h4eIeHh///////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////5+fn////wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/////////////////////////////////////// +////////////////////////////////////////////////////////////////////wAAAP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8/Pzzg4OPf39///////////////////////////////////// +////////////////////f393BwcO/v7////////////////////////////////////////////// +//////////////1hYWKenp/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///+fn5///////// +///////////////////////////////////////////////////////////////////////////// +//////////////////wAAAP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////f39zg4OM/P +z//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////+fn5zAwMOfn5///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////wAAAP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////39/f39/f////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////5+fn2BgYP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////wAAAP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////+fn5yAgI +Pf39///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////zAwMM/ +Pz/////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////6qqqnl5eXZ2dtjY2P/////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wAAAP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////39/f39/f////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////6+vr1BQUP/////////////////////////////////////////////// +////////////////////////////////////////////////////////////////zk5O0RIVWhqcj +U1Ntra2v///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wAAAP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////f39yAgIOfn5//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////xgYGOfn5// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////zk5O2Fyp7nE45mevDEyNdra2v/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////yAgIN/f3////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////+/v739/f0BAQBgYGDg4OFBQUP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////4eHhygoKBAQEDAwMGhoaN/f3///////////////////// +///////////////////////////////////////////////////////////////////////zg5Opq +erNve5rS62FNitjIyNNbW1v////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////yAgIN/f3///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////+/v7zAwMH9/f7+/v+fn57+/v+/v7//////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////f397+/v+/v78/Pz5e +XlzAwMLe3t/////////////////////////////////////////////////////////////////// +/////////////////////zk5O3SBqcXN5MrM1mt5z5yftDIyNdra2v/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////+/v72BgYP///////////////////yAgIN/f3////////////////6+ +vr5+fn/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////+/v70BAQM/ +Pz/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////+/v70BAQMfHx///////////////////// +///////////////////////////////////////////////////////////////zk5O2Fyp7nE47C +21snKzsHDzmt2tTEyNdra2v////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////9/f3yAgIP/// +////////////////yAgIN/f3////////////////39/f39/f///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////f391BQULe3t///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////9fX1zAwMPf39//////////////////////////////////////////////////// +////////////////////////////zk5OqysrObm5sjK2LG2zqmvzn6Kz1NitjMzNNra2v//////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////9/f3yAgIP///////////////////yAgIN/f3/////////// +/////39/f39/f//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////6enp1hY +WP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////4+Pj3BwcP///////// +//////////////////////////////////////////////////////////////////////zk5O2Fy +p7nE48PG1q6zzlNlz6asznOAz7OzszEyNdra2v/////////////////////////////////////// +////////////////////////////////////////////////////////////////////////9/f3y +AgIP///////////////////yAgIN/f3////////////////39/f39/f////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////0BAQL+/v///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////f39xgYGO/v7//////////////////////////////////////////////////////// +////////////////////zk5O3SBqcXN5KWs156lzn6Kz36Kz8nKzs3NzVNitjEyNdjY2P//////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////9/f3yAgIP///////////////////yAgIN/f3////////////////39/ +f39/f//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////8/PzzAwMP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////1hYWKenp////////////// +//////////////////////////////////////////////////////////////zk5OpqerNve5snM +2U9i0La5zqmvzqKpz7a5zmZ2z2hztTMzNNra2v/////////////////////////////////////// +////////////////////////////////////////////////////////////////9/f3yAgIP//// +///////////////x8fH9/f3////////////////39/f39/f////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////39/f39/f////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////5+fn2BgYP//////////////////////////////////////////////// +///////////////////////////zk5O2Fyp7nE47q+1p6lzq6zzra5zqKpz1dp0LG2zoaRz5yftDE +yNdra2v///////////////////////////////////////////////////////8fHx39/f39/f39/ +f39/f39/f39/f39/f39/f39/f39/f3BwcBAQEH9/f39/f39/f39/f39/fwQEBGlpaX9/f39/f39/f +39/f0BAQEBAQH9/f39/f39/f39/f39/f39/f39/f39/f39/f39/f5+fn///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////1hYWKenp//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+/v7xAQEP////// +/////////////////////////////////////////////////////////////////////zk5OoaPq +c/U5Le718XGzc3N +zW58z56lzn6Kz56lzsnKzq6zzlNitjEyNdra2v/////////////////////////////////////// +////////9fX1wcHBw4ODjw8PGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYFRUVAwMDGBgYGBgYGBgYG +BgYGBgYAoKClRUVGBgYGBgYGBgYGBgYDAwMDAwMGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGB +gYEVFRYSEhP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////zg4OMfHx////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////yAgIN/f3///////////////////////////////////////////////////// +///////////////////zk5OoaPqc/U5NPT2K6zzn6Kz56lzk9i0M3Nzb2/zYaRz6mvznOAz0dMZ3N +zc////////////////////////////////////////////////35+fh0dHa+vr0BAQMDAwMDAwMDA +wMDAwMDAwMDAwMDAwMDAwKioqBgYGMDAwMDAwMDAwMDAwMDAwJaWlrq6usDAwMDAwMDAwMDAwHt7e +2BgYMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwKioqB0dHf//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////xgYGOfn5//////////// +////////////////////////////////////////////////////////////////////////39/f/ +///39/f////39/f////39/f////39/f////39/f////39/f////////////////////////////// +//////////////////////////////////////////////////////////ygoKNfX1/////////// +/////////////////////////////////////////////+/v77+/v7+/v7+/vy4uMGFyp7nE46201 +ra5zldp0I6Yz56lzq2trXZ8mmpymz5Mm46Pmjw+TVZWVr+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/vzk5OTk5Oby8vCIiIsDAwMDAwLS0tJCQkJCQkJCQkJCQkJCQkH5+fhISEmZmZsD +AwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMHV1dUhISJCQkJCQkJCQkJCQkJCQkKKiosDAwMDA +wMDAwMDAwMDAwBsbG9/f3//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////f39wgICP////////////////////////////////////////////////// +/////////////////////////////////2BgYP///wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///wAAAP///0BAQP//////////////////////////////////////////////////////////// +///////////////////////yAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAABAQEEBAQEBAQEBAQBAQEJWZp9ve5ra82GZ2z66zzoaRz72/zUdHRxQZNCgpNCAjNC8w +MxgYGhwcHEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQA8PDxcXF4aGhiIiIsDAw +MDAwGBgYBgYGDAwMDAwMDAwMDAwMDAwMDAwMMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAM +DAwGZmZjAwMDAwMDAwMDAwMDAwMCoqKhgYGMDAwMDAwMDAwMDAwMDAwCgoKM/Pz////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////wAAAP/////////////////////// +////////////////////////////////////////////////////////////////wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////////// +//////////////////////////////////////////////////yAgIN/f3/////////////////// +/////////////////////////////////////////////////////zk5O3SBqcXN5MvN1mZ2z66zz +snKzp6lzn6Kz56lzm58z83NzcnKzkxQZ3Jycv//////////////////////////////////////// +///////25ubiwsLLe3tzo6OsDAwMDAwGBgYGBgYMDAwMDAwMDAwMDAwMDAwMDAwISEhMDAwGBgYMD +AwGBgYMDAwGBgYMDAwGBgYMDAwGBgYMDAwMDAwMDAwMDAwMDAwMDAwKioqBgYGMDAwMDAwMDAwMDA +wLS0tA4ODv/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////xAQEO/v7/////////////////////////////////////////////////////// +/////////////////////////6+vr////39/f////39/f////39/f////39/f////39/f////39/f +////5+fn///////////////////////////////////////////////////////////////////// +///////////////wAAAP///////////////////////////////////////////////////////// +//////////////////zk5O2Fyp7nE47C21sXGzb2/zYaRz7G2zldp0KKpz7a5zq6zzp6lzlNWZ3Nz +c////////////////////////////////////////////////8fHxwAAACUlJVVVVZCQkJCQkEhIS +EhISJCQkJCQkJCQkJCQkJCQkJCQkKioqKioqKioqKioqKioqGlpaZ+fn6ioqKioqKioqKioqJmZmZ +CQkJCQkJCQkJCQkJCQkH5+fhISEpCQkJCQkJCQkJCQkFtbW2VlZf///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////ygoKNfX1///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////9/f3yAgIP/////////////// +////////////////5+fn////39/f////39/f////39/f////7+/v////yoqKgMDBCorLTY2NyQkKE +5OV7a5znaDz2Z2z7a5zqaszqmvzra5zk9i0FpcZ29vb////////0BAQP///0BAQP///0BAQP///0B +AQP///////////////6ampjw8PDw8PDw8PDw8PB4eHh4eHjw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8 +PDw8PDw8PDw8PAcHBzQ0NDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDQ0NAcHBzw8PDw8P +Dw8PDw8PG1tbff39///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////3BwcI+Pj//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////7+/v0BAQP///////////////////////////////////wAAAP///wAAAP// +/wAAAP///wAAAP///////wQEBAoKCg8PDw8PDw8PDwcHBzlDgK6zzmZ2z83NzcXGzX6Kz36Kz56lz +kdMZ3Nzc////yAgIP///wAAAP///wAAAP///wAAAP///5+fn///////////////////////////// +///39/f39/f////////////////////////////////////////////yAgIN/f3////////////// +//////////////////////////9/f3yAgIP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////7+/v0BAQP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////3BwcI+Pj//////////////////////// +////////0BAQP///wAAAP///wAAAP///wAAAP///39/f////5OTkwcHB5SUlKysrKysrDk5OQ8PEF +BXf8XGzc3NzWZ2z66zzldp0L2/zVpcZ3Nzc////////wAAAP///wAAAP///wAAAP///wAAAP///// +//////////////////////////////39/f39/f/////////////////////////////////////// +/////yAgIN/f3////////////////////////////////////////9/f3yAgIP/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////f39xgYGO/v7//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////f39yAgIOfn5////////////////////////////////////0BAQP///0BAQP///0BAQP// +/0BAQP///////////6ioqA8PD8rKyubm5t/f3zk5ORAQEGhrf7a5zmZ2z3aDz7a5zsHDzldZZ29vb +////4+Pj////39/f////39/f////39/f////8/Pz////////////////////////////////39/f3 +9/f////////////////////////////////////////////yAgIN/f3////////////////////// +//////////////////9/f3yAgIP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////2hoaJeXl////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////6enp1hYWP//////////////////// +///////////////////////////////////////////////////////////////6ioqA8PD8rKyub +m5t/f3zk5ORAQEDlDgLG2zoaRz72/zcXGzUxQZ3Nzc/////////////////////////////////// +/////////////////////////////////////39/f39/f//////////////////////////////// +////////////yAgIN/f3////////////////////////////////////////9/f3yAgIP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////f39zAwMNfX1///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////zAwMM/Pz//////////////////////////////////////////////////////// +/////////////// +/////////////////6ioqA8PD8rKyubm5t/f3zk5OQ8PEGNnf8nKzq6zzmZ2z19gZ3Jycv/////// +////////////////////////////////////////////////////////////////39/f39/f///// +///////////////////////////////////////yAgIN/f3////////////////////////////// +//////////9/f3yAgIP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8fHx0BAQPf39////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////3h4eH9/f///////////////////////////////// +///////////////////////////////////////////////////////////////6ioqA8PD8rKyub +m5t/f3zk5ORAQEFddf7G2zmZ2z0xQZ29vb/////////////////////////////////////////// +/////////////////////////////4+Pj4+Pj//////////////////////////////////////// +////zg4OOfn5////////////////////////////////////////+fn5zg4OP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////5+fn0BAQNfX1///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////9/f31hY +WGhoaP/////////////////////////////////////////////////////////////////////// +////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5OQ8QEDlDgL2/zUxQZ3Nzc/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////7+/vygo +KDAwMEBAQAgICHh4eP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////6enpwAAADAwMCAgICAgIKenp////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/6ioqA8PD8rKyubm5t/f3zk5OQ8PEHV2fmFiZ3BwcP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8/Pz7+/v+fn5xgYGPf39///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////zAwMM/Pz8/Pz9/f3/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5ORAQEC8yP3Fxcf//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////2hoaJeXl//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////8/PzzAwMP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/6ioqA8PD8rKyubm5t/f3zk5OQkJCT4+Pv/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8/PzzAwMP///////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////1hYWKenp//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5OQQEBGx +sbP////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////3BwcI+Pj///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////8/Pzzg4OPf39/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////6ioqAgICA8PDw8PDw0NDQEBAR8fH///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////+/v7ygoKOfn5////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////zAwMM/Pz//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8PDw4+Pj4+Pj4+Pj4uLi9LS0v///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////5+fn2BgYP//////////////////////////////////////////////////////// +///////7+/v////////////////////////////////////////////////////////////////4e +Hh3h4eP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39 +/f////39/f////39/f////39/f////39/f////39/f////39/f/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////39/f39/f/////////// +/////////////////////////////////////////////5+fnzAwMH9/f//////////////////// +////////////////////////////////////7e3t1BQUPf39///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////wAAAP///wAAAP///wAAA +P///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///w +AAAP///wAAAP///7+/v////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////2hoaI+Pj////////////////////////////////////////// +//////5+fn2BgYP///39/f3h4eP///////////////////////////////////////////////7e3 +t1BQUPf39//////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////2hoaEhISO/v7/////// +/////////////////////////+/v72hoaGBgYP///////////3h4eDg4OOfn5//////////////// +/////////////////f3939/f1BQUPf39///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////39/f////39/f////39/f////39/f +////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////3 +9/f////9/f3////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////7e3tygoKH9/f9fX1////////////////9fX14+PjygoKJeXl// +//////////////////8fHxygoKHh4eNfX1////////////////+fn55+fnzAwMH9/f/f39/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////+fn5 +39/fygoKCgoKEBAQEBAQCAgICgoKHBwcOfn5////////////////////////////+/v74eHhygoKC +goKEBAQEBAQDAwMBgYGGBgYNfX1////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////9fX17+/v7+/v9/f3////////////////////////// +//////////////////////////9fX17+/v7+/v8/Pz/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////w4AAAAUAAAAAAAAABAAAAAUAAAA +2003-11-09T10:53:13 +2003-12-23T08:56:52 +2003-11-09T15:44:12 +2003-11-09T10:53:13 + + +9 +295 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +18 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +20 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +3 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +3 +1 +0 +2 +0 +0 +1 +2 +0 + + + + +1 +1 +1 +0 + + +1 +#8a8aff +31 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0016666666666667 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + + +2 +0 +1 +0 + + +2 + + + +Visio Network Solutions +
http://officeupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + + +11 +8.5 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Apple +255 +0 +1 +1 +0 +0 +1 +1 +Apple +0 + + +Digital +255 +0 +1 +1 +0 +0 +1 +1 +Digital +0 + + +Cray +255 +0 +1 +1 +0 +0 +1 +1 +Cray +0 + + +IBM +255 +0 +1 +1 +0 +0 +1 +1 +IBM +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +2.05 +4.4392857142857 +2.3 +1.75 +1.15 +0.875 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0.875 +0 +0 +0 +0 + + + +0.8117643 +1.75 +0 +0 +0 +0 + + + +1.48833 +1.75 +0 +0 +0 +0 + + + +0.8117643 +0 +0 +0 +0 +0 + + + +1.4882357 +0 +0 +0 +0 +0 + + + +2.3 +0.875 +0 +0 +0 +0 + + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.33823529411765 +0.45139244650857 + + +1.15 +0.19195334392518 +0.70682204248263 +0.01660909406747 +0 +0.61848739495799 + + +1.9617647058824 +0.45139244650857 +1.5931779575174 +0.016609094067465 +0 +0.61848739495799 + + +2.3 +0.875 +2.1951125414236 +0.52912588091909 +0 +0.61848739495799 + + +1.9617647058824 +1.2986075534914 +2.1951125414236 +1.2208741190809 +0 +0.61848739495799 + + +1.15 +1.5580466560748 +1.5931779575174 +1.7333909059325 +0 +0.61848739495799 + + +0.33823529411765 +1.2986075534914 +0.70682204248263 +1.7333909059325 +0 +0.61848739495799 + + +0 +0.875 +0.10488745857643 +1.2208741190809 +0 +0.61848739495799 + + +0.33823529411765 +0.45139244650857 +0.10488745857643 +0.52912588091909 +0 +0.61848739495799 + + +Internet + + + +4.03125 +4.25 +0.0875 +0.7 +0.04375 +0.35 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.125 +-0.2 +0.04375 +0.35 +4 +2 +0 +Reposition Text + + +0 +0 +0 +1 +0 +0 + + +0.30625 +0.21875 +0 +0 +0 +0 + + + +0.30625 +0.525 +0 +0 +0 +0 + + + +0 +0.525 +0 +0 +0 +0 + + + +0.04921875 +0 +0 +0 +0 +0 + + + +0.2625 +0.91875 +0 +0 +0 +0 + + + + + +0.30625 +0.546875 +0.4375 +1.09375 +0.21875 +0.546875 +0 +0 +0 +0 + + +0 + + +#d0624f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.21875 +0.546875 +0.4375 +1.09375 +0.21875 +0.546875 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.4375 +1.09375 + + +0 +0.65625 + + +0 +0 + + + + + +0.2625 +0.57421875 +0.525 +0.9296875 +0.2625 +0.46484375 +0 +0 +0 +0 + + +0 + + +0.2625 +0.46484375 +0.525 +0.9296875 +0.2625 +0.46484375 +0 + + +1 +0 +0 +0 + +0 +0.4375 + + +0.0875 +0.4375 + + +0.1421875 +0.4921875 + + + +1 +0 +0 +0 + +0.1421875 +0.4921875 + + +0.196875 +0.546875 + + + +1 +0 +0 +0 + +0.196875 +0.546875 + + +0.2515625 +0.6015625 + + + +1 +0 +0 +0 + +0.2515625 +0.6015625 + + +0.30625 +0.65625 + + + +1 +0 +0 +0 + +0.30625 +0.65625 + + +0.3609375 +0.7109375 + + + +1 +0 +0 +0 + +0.3609375 +0.7109375 + + +0.415625 +0.765625 + + + +1 +0 +0 +0 + +0.415625 +0.765625 + + +0.4703125 +0.8203125 + + + +1 +0 +0 +0 + +0 +0.328125 + + +0.0875 +0.328125 + + +0.1421875 +0.3828125 + + + +1 +0 +0 +0 + +0.1421875 +0.3828125 + + +0.196875 +0.4375 + + + +1 +0 +0 +0 + +0.196875 +0.4375 + + +0.2515625 +0.4921875 + + + +1 +0 +0 +0 + +0.2515625 +0.4921875 + + +0.30625 +0.546875 + + + +1 +0 +0 +0 + +0.30625 +0.546875 + + +0.3609375 +0.6015625 + + + +1 +0 +0 +0 + +0.3609375 +0.6015625 + + +0.415625 +0.65625 + + + +1 +0 +0 +0 + +0.415625 +0.65625 + + +0.4703125 +0.7109375 + + + +1 +0 +0 +0 + +0.4703125 +0.7109375 + + +0.525 +0.765625 + + + +1 +0 +0 +0 + +0 +0.21875 + + +0.0875 +0.21875 + + +0.1421875 +0.2734375 + + + +1 +0 +0 +0 + +0.1421875 +0.2734375 + + +0.196875 +0.328125 + + + +1 +0 +0 +0 + +0.196875 +0.328125 + + +0.2515625 +0.3828125 + + + +1 +0 +0 +0 + +0.2515625 +0.3828125 + + +0.30625 +0.4375 + + + +1 +0 +0 +0 + +0.30625 +0.4375 + + +0.3609375 +0.4921875 + + + +1 +0 +0 +0 + +0.3609375 +0.4921875 + + +0.415625 +0.546875 + + + +1 +0 +0 +0 + +0.415625 +0.546875 + + +0.4703125 +0.6015625 + + + +1 +0 +0 +0 + +0.4703125 +0.6015625 + + +0.525 +0.65625 + + + +1 +0 +0 +0 + +0 +0.109375 + + +0.0875 +0.109375 + + +0.1421875 +0.1640625 + + + +1 +0 +0 +0 + +0.1421875 +0.1640625 + + +0.196875 +0.21875 + + + +1 +0 +0 +0 + +0.196875 +0.21875 + + +0.2515625 +0.2734375 + + + +1 +0 +0 +0 + +0.2515625 +0.2734375 + + +0.30625 +0.328125 + + + +1 +0 +0 +0 + +0.30625 +0.328125 + + +0.3609375 +0.3828125 + + + +1 +0 +0 +0 + +0.3609375 +0.3828125 + + +0.415625 +0.4375 + + + +1 +0 +0 +0 + +0.415625 +0.4375 + + +0.4703125 +0.4921875 + + + +1 +0 +0 +0 + +0.4703125 +0.4921875 + + +0.525 +0.546875 + + + +1 +0 +0 +0 + +0 +0 + + +0.0875 +0 + + +0.1421875 +0.0546875 + + + +1 +0 +0 +0 + +0.1421875 +0.0546875 + + +0.196875 +0.109375 + + + +1 +0 +0 +0 + +0.196875 +0.109375 + + +0.2515625 +0.1640625 + + + +1 +0 +0 +0 + +0.2515625 +0.1640625 + + +0.30625 +0.21875 + + + +1 +0 +0 +0 + +0.30625 +0.21875 + + +0.3609375 +0.2734375 + + + +1 +0 +0 +0 + +0.3609375 +0.2734375 + + +0.415625 +0.328125 + + + +1 +0 +0 +0 + +0.415625 +0.328125 + + +0.4703125 +0.3828125 + + + +1 +0 +0 +0 + +0.4703125 +0.3828125 + + +0.525 +0.4375 + + + +1 +0 +0 +0 + +0.1421875 +0.4921875 + + +0.1421875 +0.6015625 + + + +1 +0 +0 +0 + +0.1421875 +0.2734375 + + +0.1421875 +0.3828125 + + + +1 +0 +0 +0 + +0.1421875 +0.0546875 + + +0.1421875 +0.1640625 + + + +1 +0 +0 +0 + +0.196875 +0 + + +0.196875 +0.109375 + + + +1 +0 +0 +0 + +0.196875 +0.4375 + + +0.196875 +0.546875 + + + +1 +0 +0 +0 + +0.196875 +0.21875 + + +0.196875 +0.328125 + + + +1 +0 +0 +0 + +0.2515625 +0.6015625 + + +0.2515625 +0.7109375 + + + +1 +0 +0 +0 + +0.2515625 +0.3828125 + + +0.2515625 +0.4921875 + + + +1 +0 +0 +0 + +0.2515625 +0.1640625 + + +0.2515625 +0.2734375 + + + +1 +0 +0 +0 + +0.30625 +0.109375 + + +0.30625 +0.21875 + + + +1 +0 +0 +0 + +0.30625 +0.546875 + + +0.30625 +0.65625 + + + +1 +0 +0 +0 + +0.30625 +0.328125 + + +0.30625 +0.4375 + + + +1 +0 +0 +0 + +0.3609375 +0.7109375 + + +0.3609375 +0.8203125 + + + +1 +0 +0 +0 + +0.3609375 +0.4921875 + + +0.3609375 +0.6015625 + + + +1 +0 +0 +0 + +0.3609375 +0.2734375 + + +0.3609375 +0.3828125 + + + +1 +0 +0 +0 + +0.415625 +0.21875 + + +0.415625 +0.328125 + + + +1 +0 +0 +0 + +0.415625 +0.65625 + + +0.415625 +0.765625 + + + +1 +0 +0 +0 + +0.415625 +0.4375 + + +0.415625 +0.546875 + + + +1 +0 +0 +0 + +0.4703125 +0.6015625 + + +0.4703125 +0.7109375 + + + +1 +0 +0 +0 + +0.4703125 +0.3828125 + + +0.4703125 +0.4921875 + + + +1 +0 +0 +0 + +0.4703125 +0.8203125 + + +0.4703125 +0.9296875 + + + +1 +0 +0 +0 + +0.4703125 +0.8203125 + + +0.525 +0.875 + + + + + +0.04375 +0.328125 +0.0875 +0.65625 +0.04375 +0.328125 +0 +0 +0 +0 + + +0 + + +#dc7e5f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.04375 +0.328125 +0.0875 +0.65625 +0.04375 +0.328125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0 +0.65625 + + +0.0875 +0.65625 + + +0.0875 +0 + + +0 +0 + + + + + +0.35 +0.896875 +0.4375 +0.48125 +0.21875 +0.240625 +0 +0 +0 +0 + + +0 + + +0.21875 +0.240625 +0.4375 +0.48125 +0.21875 +0.240625 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.4375 +0.48125 + + +0 +0.04375 + + +0 +0 + + + + + +0.04375 +0.678125 +0.175 +0.04375 +0.0875 +0.021875 +0 +0 +0 +0 + + +0 + + +0.0875 +0.021875 +0.175 +0.04375 +0.0875 +0.021875 +0 + + +0 +0 +0 +0 + +0 +0.04375 + + +0 +0 + + +0.175 +0 + + +0.175 +0.04375 + + +0 +0.04375 + + + + + +0.2625 +0.91875 +0.6125 +0.4375 +0.30625 +0.21875 +0 +0 +0 +0 + + +0 + + +0.30625 +0.21875 +0.6125 +0.4375 +0.30625 +0.21875 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.6125 +0.4375 + + +0.175 +0 + + +0 +0 + + + + + +0.04375 +0.328125 +0.0875 +0.4375 +0.04375 +0.21875 +0 +0 +0 +0 + + +0 + + +0.04375 +0.21875 +0.0875 +0.4375 +0.04375 +0.21875 +0 + + +1 +0 +0 +0 + +0.0875 +0.4375 + + +0 +0.4375 + + + +1 +0 +0 +0 + +0.0875 +0.328125 + + +0 +0.328125 + + + +1 +0 +0 +0 + +0.0875 +0.21875 + + +0 +0.21875 + + + +1 +0 +0 +0 + +0.0875 +0.109375 + + +0 +0.109375 + + + +1 +0 +0 +0 + +0.0875 +0 + + +0 +0 + + + + + +0.2625 +0.56875 +0.6125 +1.1375 +0.30625 +0.56875 +0 +0 +0 +0 + + +0 + + +0.30625 +0.56875 +0.6125 +1.1375 +0.30625 +0.56875 +0 + + +0 +0 +0 +0 + +0.04375 +0 + + +0.04375 +0.65625 + + +0 +0.65625 + + +0 +0.7 + + +0.4375 +1.1375 + + +0.6125 +1.1375 + + +0.6125 +1.09375 + + +0.56875 +1.05 + + +0.56875 +0.4375 + + +0.13125 +0 + + +0.04375 +0 + + + + + +0 +0 +0.62969292634722 +0.25555555555556 +-0.125 +0.32777777777778 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.31484646317361 +0.12777777777778 +0.62969292634722 +0.25555555555556 +0.31484646317361 +0.12777777777778 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +0.62969292634722 +0 + + +0.62969292634722 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Firewall + + + + + +5.725 +3.4 +1.05 +0.2625 +0.525 +0.13125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.525 +-0.12777777777778 +0.525 +0.13125 +3 +2 +0 +Reposition Text + + +0 +0 +0.5 +1 +0 +0 + + +0.525 +0.13125 +0 +0 +0 +0 + + + +1.115625 +0.196875 +0 +0 +0 +0 + + + +0 +0.196875 +0 +0 +0 +0 + + + +0.525 +0 +0 +0 +0 +0 + + + +0.590625 +0.328125 +0 +0 +0 +0 + + + + + +0.598828125 +0.196875 +1.16484375 +0.39375 +0.582421875 +0.196875 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.582421875 +0.196875 +1.16484375 +0.39375 +0.582421875 +0.196875 +0 + + +0 +0 +0 +0 + +0 +0.0328125 + + +0 +0 + + +1.00078125 +0 + + +1.00078125 +0.0328125 + + +0 +0.0328125 + + + +0 +0 +0 +0 + +1.00078125 +0 + + +1.03359375 +0.0328125 + + +1.00078125 +0.0328125 + + +1.00078125 +0 + + + +0 +0 +0 +0 + +1.0335937508471 +0.2625 + + +1.16484375 +0.39375 + + +1.1648437494352 +0.1640625 + + +1.0335937502824 +0.0328125 + + +1.0335937508471 +0.2625 + + + + + +0.59062500028238 +0.28710136414338 +1.1812499994352 +0.21329727171324 +0.59062499971762 +0.10664863585662 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.59062499971762 +0.10664863585662 +1.1812499994352 +0.21329727171324 +0.59062499971762 +0.10664863585662 +0 + + +0 +0 +0 +0 + +1.1812499994352 +0.21329727171324 + + +0.13124999943524 +0.21329727171324 + + +0 +0.082047271713236 + + +0 +0.016422271713236 + + +1.05 +0.016422271713236 +0.50859375 +1.6021713236027E-5 +0 +1 + + +1.05 +0.082047271713236 + + +1.1812499994352 +0.21329727171324 + + + + + +1.115625 +0.205078125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.065625 +0.073828125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.13125 +0.13125 + + +0.13125 +0.14765625 + + +0 +0.01640625 + + +0 +0 + + + + + +1.115625 +0.196875 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.065625 +0.073828125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.13125 +0.13125 + + +0.13125 +0.14765625 + + +0 +0.01640625 + + +0 +0 + + + + + +0.590625 +0.196875 +1.18125 +0.39375 +0.590625 +0.196875 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.590625 +0.196875 +1.18125 +0.39375 +0.590625 +0.196875 +0 + + +1 +0 +0 +0 + +0.01640625 +0 + + +0.01640625 +0.0328125 + + +0 +0.0328125 + + +0 +0.2625 + + +0.13125 +0.39375 + + +1.18125 +0.39375 + + +1.18125 +0.1640625 + + +1.0171875 +0 + + +0.01640625 +0 + + + + + +0.52500000056476 +0.123046875 +1.05 +0.27890625 +0.525 +0.139453125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.139453125 +1.05 +0.27890625 +0.525 +0.139453125 +0 + + +0 +0 +0 +0 + +0.52499999941843 +0.2296875 + + +0.32812499941843 +0.2296875 +0 +0 +0.49946975323462 +3 + + +0.27885376335784 +0.27080873209719 +0 + + +0.1640625 +0.27890625 +0 + + +0.098437500000001 +0.27890625 +0.2954319565221 + + +0 +0.27890625 + + +0 +0.04921875 + + +0.098437499435237 +0.04921875 + + +0.16406249943524 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376367069 +0.041121232097194 +0 + + +0.32812499943524 +0 +0 + + +0.52499999943524 +0 +0.20403779671252 + + +0.721875 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.77114623491302 +0.032791039531086 +0 + + +0.88593749943524 +0.04921875 +0 + + +0.95156249943524 +0.04921875 +0.2954319565221 + + +1.0499999994352 +0.04921875 + + +1.05 +0.27890625 + + +0.9515625 +0.27890625 + + +0.8859375 +0.27890625 +0 +0 +0.49946975323462 +3 + + +0.77114623488563 +0.27084501407305 +0 + + +0.72187499941843 +0.2296875 +0 + + +0.52499999941843 +0.2296875 +0.20403779671252 + + + + + +0.52382812586429 +0.17730468749892 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.43945312586429 +0.17730468750108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.35507812586299 +0.18363281250108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.60820312586429 +0.17730468750108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.69257812586299 +0.18363281250108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.064453125564764 +0.21796875 +0.06328125 +0.0421875 +0.031640625 +0.02109375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.031640625 +0.02109375 +0.06328125 +0.0421875 +0.031640625 +0.02109375 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.06328125 +0 + + +0.06328125 +0.0421875 + + +0 +0.0421875 + + +0 +0 + + + + + +0.52500000056476 +0.11484375 +1.05 +0.065625 +0.525 +0.0328125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.0328125 +1.05 +0.065625 +0.525 +0.0328125 +0 + + +0 +0 +0 +0 + +0.52499999885366 +0.01640625 + + +0.32812499885366 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.27885376279307 +0.057527482097194 +0 + + +0.16406249943524 +0.065625 +0 + + +0.098437499435236 +0.065625 +0.2954319565221 + + +0 +0.065625 + + +0 +0.04921875 + + +0.098437500000001 +0.04921875 + + +0.1640625 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376423546 +0.041121232097194 +0 + + +0.328125 +0 +0 + + +0.525 +0 +0.20403779671252 + + +0.721875 +0 +0 +0 +0.49946975323462 +3 + + +0.77114623576454 +0.041121232097194 +0 + + +0.8859375 +0.04921875 +0 + + +0.9515625 +0.04921875 +0.2954319565221 + + +1.05 +0.04921875 + + +1.0499999994352 +0.065625 + + +0.95156249943524 +0.065625 + + +0.88593749943524 +0.065625 +0 +0 +0.49946975323462 +3 + + +0.77114623431962 +0.057128380362804 +0 + + +0.72187499885366 +0.01640625 +0 + + +0.52499999885366 +0.01640625 +0.20403779671252 + + + + + +0.52500000056476 +0.106640625 +1.05 +0.065625 +0.525 +0.0328125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.0328125 +1.05 +0.065625 +0.525 +0.0328125 +0 + + +0 +0 +0 +0 + +0.52499999885366 +0.01640625 + + +0.32812499885366 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.27885376279307 +0.057527482097194 +0 + + +0.16406249943524 +0.065625 +0 + + +0.098437499435236 +0.065625 +0.2954319565221 + + +0 +0.065625 + + +0 +0.04921875 + + +0.098437500000001 +0.04921875 + + +0.1640625 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376423546 +0.041121232097194 +0 + + +0.328125 +0 +0 + + +0.525 +0 +0.20403779671252 + + +0.721875 +0 +0 +0 +0.49946975323462 +3 + + +0.77114623576454 +0.041121232097194 +0 + + +0.8859375 +0.04921875 +0 + + +0.9515625 +0.04921875 +0.2954319565221 + + +1.05 +0.04921875 + + +1.0499999994352 +0.065625 + + +0.95156249943524 +0.065625 + + +0.88593749943524 +0.065625 +0 +0 +0.49946975323462 +3 + + +0.77114623431962 +0.057128380362804 +0 + + +0.72187499885366 +0.01640625 +0 + + +0.52499999885366 +0.01640625 +0.20403779671252 + + + + + + +0 +0 +0.55579969718056 +0.25555555555556 +-0.24710015140972 +0.25555555555556 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.27789984859028 +0.12777777777778 +0.55579969718056 +0.25555555555556 +0.27789984859028 +0.12777777777778 +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +0.55579969718056 +0 + + +0.55579969718056 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Router + + + + + +5.7357142857143 +2.5107142857143 +1.5 +0.25 +0.75 +0.125 +-7.4014868308344E-17 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.75 +0.125 +1.5 +0.25 +0.75 +0.125 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0.0625 +0.125 +0 +0 +0 +0 + + + +1.5 +0.125 +0 +0 +0 +0 + + + +1 + + + +0.25005 +0.5 +0.25005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.49995 +-0.25 +0.49995 +0.125 +0 +0 +1 +Connect To Network Device + + +1.00005 +-0.25 +1.00005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +0.5 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +1.249995 +0.5 +1.249995 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +0.125 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +0.625 +0.125 +0.625 +0.125 +0 +0 +1 +Connect To Network Device + + +0.875 +0.125 +0.875 +0.125 +0 +0 +1 +Connect To Network Device + + +0 +0 +0 +0 + +0.0625 +0.015625 + + +0.0625 +0.234375 +0.015625 +0.125 +-1.5707963267949 +2.3 + + +0.0625 +0.015625 +0.109375 +0.125 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.0625 +0.25 + + +1.4375 +0.25 + + +1.4375 +0 +1.5 +0.125 +-1.5707963267949 +2 + + +0.0625 +0 + + +0.0625 +0.25 +0 +0.125 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +0.25005 +0.5 + + +0.25005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.49995 +-0.25 + + +0.49995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.00005 +-0.25 + + +1.00005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +0.5 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.249995 +0.5 + + +1.249995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +0.125 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.625 +0.125 + + +0.625 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.875 +0.125 + + +0.875 +0.125 + + +0.75 +0.125 + + + + + +5.8 +4.4178571428571 +1.5 +0.25 +0.75 +0.125 +-7.4014868308344E-17 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.75 +0.125 +1.5 +0.25 +0.75 +0.125 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0.25005 +0.5 +0.25005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.49995 +-0.25 +0.49995 +0.125 +0 +0 +1 +Connect To Network Device + + +1.00005 +-0.25 +1.00005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +0.5 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +1.249995 +0.5 +1.249995 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +-0.024999999999998 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +0.625 +0.125 +0.625 +0.125 +0 +0 +1 +Connect To Network Device + + +0.875 +0.125 +0.875 +0.125 +0 +0 +1 +Connect To Network Device + + +1 + + + +0.0625 +0.125 +0 +0 +0 +0 + + + +1.5 +0.125 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.0625 +0.015625 + + +0.0625 +0.234375 +0.015625 +0.125 +-1.5707963267949 +2.3 + + +0.0625 +0.015625 +0.109375 +0.125 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.0625 +0.25 + + +1.4375 +0.25 + + +1.4375 +0 +1.5 +0.125 +-1.5707963267949 +2 + + +0.0625 +0 + + +0.0625 +0.25 +0 +0.125 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +0.25005 +0.5 + + +0.25005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.49995 +-0.25 + + +0.49995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.00005 +-0.25 + + +1.00005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +0.5 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.249995 +0.5 + + +1.249995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +-0.024999999999998 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.625 +0.125 + + +0.625 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.875 +0.125 + + +0.875 +0.125 + + +0.75 +0.125 + + + + + +4.703125 +4.4214285714286 +0.81878115690834 +0 +0.40939057845417 +0 +-0.0087238790070575 +0 +0 +0 + + +4.29375 +4.425 +5.1125 +4.4178571428571 + + +0 +0 +0 +0 +0 + + +5 + + +0.40939057845417 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.0087238790070575 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.40939057845417 +0 +0.40939057845417 +0 +0 +0 +0 +Curve Position + + +0.40939057845417 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.81878115690834 +0 +0.40939057845417 +0 +0 +1 + + + + + +5.7953125 +3.9448660714286 +0.69604528143003 +0 +0.34802264071502 +0 +-1.5842656853705 +0 +1 +0 + + +5.8 +4.2928571428571 +5.790625 +3.596875 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +3 +2 +2 +0 + +0 +0 + + +0.34802264071502 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +-1.5842656853705 + + +0.34802264071502 +0 +0.34802264071502 +0 +0 +0 +0 +Curve Position + + +0.34802264071502 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.69604528143003 +0 +0.34802264071502 +0 +0 +1 + + + + + +5.7303571428571 +2.9522321428571 +0.6331263787583 +0 +0.31656318937915 +0 +-1.5538726958485 +0 +0 +0 + + +5.725 +3.26875 +5.7357142857143 +2.6357142857143 + + +0 +0 +0 +0 +0 + + +5 + + +0.31656318937915 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +1.5538726958485 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.31656318937915 +0 +0.31656318937915 +0 +0 +0 +0 +Curve Position + + +0.31656318937915 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.6331263787583 +0 +0.31656318937915 +0 +0 +1 + + + + + +5.7 +5.15 +1.4 +0.5 +0.7 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4 +0 + + +1.4 +0.5 + + +0 +0.5 + + +0 +0 + + +192.168.1.0/24 + + + +3.59375 +4.4321428571428 +0.78762956498131 +0 +0.39381478249066 +0 +-0.018138600054222 +0 +0 +0 + + +3.2 +4.4392857142857 +3.9875 +4.425 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.39381478249066 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.018138600054222 + + +0.39381478249066 +0 +0.39381478249066 +0 +0 +0 +0 +Curve Position + + +0.39381478249066 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.78762956498131 +0 +0.39381478249066 +0 +0 +1 + + + + + +5.7 +1.9357142857143 +1.4 +0.5 +0.7 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4 +0 + + +1.4 +0.5 + + +0 +0.5 + + +0 +0 + + +192.168.2.0/24 + + + +3.7 +4.6 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth0 + + + +4.7571428571429 +4.5928571428571 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth1 + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + + + + + + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/MultiZone1.vsd b/Shorewall-docsN/images/MultiZone1.vsd new file mode 100755 index 000000000..bae89fbd3 Binary files /dev/null and b/Shorewall-docsN/images/MultiZone1.vsd differ diff --git a/Shorewall-docsN/images/MultiZone1A.png b/Shorewall-docsN/images/MultiZone1A.png new file mode 100755 index 000000000..b374f705d Binary files /dev/null and b/Shorewall-docsN/images/MultiZone1A.png differ diff --git a/Shorewall-docsN/images/MultiZone1A.vdx b/Shorewall-docsN/images/MultiZone1A.vdx new file mode 100755 index 000000000..8120d3c4e --- /dev/null +++ b/Shorewall-docsN/images/MultiZone1A.vdx @@ -0,0 +1,15917 @@ + + + + + +MultiZone1 +TEastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAABcBAADXAAAAAAAAAAAAAAA/GwAArxMAACBFTUYAAAEA7MUCAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAATMUCAAAAAAAAAAAAFwEAANcAAAAAAAAAAAAAABg +BAADYAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADAxAIAKAAAABgBAADYAAAAAQAYAAAAAADAxAIAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////+/v7wsQCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAHd/d///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////9/f3wwgDAD/AAD/AAD/AAD/AACfAAB/AAB/AAB/AAB/AAB/AAB/AAB/ +AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/A +AB/AAB/AAB/AAB/ +AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AADPAAD/AAD/AAD/A +ACfAFRgVP//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAA +H9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH +9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9 +/AH9/AH9/AH9/AH9/AH9/AFBQAAxgAAD/AAD/AAD/AACfAFRgVP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AA +D/AAD/AACfAFRgVP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AA +D/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AA +CfAFRgVP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD +/AAD/AACfAFRgVP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD +/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBA +AP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AAAAA +P//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AA +AAAP//AAAAAP//AH9/AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AAC +fAFRgVP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAA +AP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAA +AAP//AAAAAP//AAAAAP//AH9/AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/ +AAD/AACfAFRgVP/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/ +AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACf +AFRgVP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/A +AD/AACfAFRgVP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AAAAAP/ +/AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAA +AP//AAAAAP//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfA +FRgVP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//A +P//AP//AP//AP//AP//AP//ACAgAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP +//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AL+/AP//AP//AP//AP/ +/AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AAAAAP// +AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAA +P//AAAAAP//AAAAAP//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AA +D/AACfAFRgVP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAF +RgVP///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AO/vAP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//APf3APf3AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP// +AP//ABAQAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AIeHAIeHAP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AH9/AH9/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AH9/AH9/AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFR +gVP////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AH9/AH9/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////9/f3wwg +DAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AH9/AH9/AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AH9/AH9/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AM/PAB0dCQAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGxsC///AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRg +VP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP// +AP//AB4eB1ZWBigoGLq6usDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAMDAwMDAwMDAwMDAwMDAw +MDAwMDAwMDAwMDAwMDAwMDAwGBgYGBgYMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEVFOp ++fAP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////9/f3wwgD +AD/AAD/AAD/AAD/AAAAAP//AP//AN/fAAAAAM/PACwsC5ycnMDAwMDAwMDAwMDAwMDAwMDAwMDAwM +DAwAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwISEhGBgYMDAwMDAwMDAwMDAwMD +AwMDAwMDAwMDAwMDAwMDAwH5+flVVCv//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AK+vAAAA +APf3AFVVCn5+fsDAwK6urjY2NjAwMDAwMDAwMDAwMDAwMAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAw +AAAAMDAwAAAAMDAwFdXVxgYGDAwMDAwMDAwMDAwMDAwMH5+fsDAwMDAwMDAwMDAwKKioiUlCv//AP +//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////9 +/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AMfHAAAAANfXADw8DJCQkMDAwJCQkCQkJJCQkJCQkJC +QkJCQkJCQkJCQkEhISMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAKKiopCQkJCQkJCQkJCQ +kJCQkFpaWkhISMDAwMDAwMDAwMDAwJCQkDw8DP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgV +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//A +Pf3AAAAAJeXABwc +C66ursDAwJCQkDAwMMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw +MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwHh4eEhISMDAwMDAwMDAwMDAwGxsbG5uBf//AP//AP//AJ ++fAAxgAAD/AAD/AAD/AACfAFRgVP///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////9/f3wwgDA +D/AAD/AAD/AAD/AAAAAP//AP//AP//AHV1CAAAACUlImBgYGBgYEhISBgYGGBgYGBgYGBgYGBgYGB +gYGBgYGBgYGBgYGBgYGBgYGBgYBAQEENDQ2BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYDw8 +PCQkJGBgYGBgYGBgYFZWTysrEOfnAP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//A +KenAH9/AH9/AH9/AGBgACAgAH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AAgIAEhIAH +9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AFBQADAwAH9/AH9/AH9/AI+PAOfnAP//AP//AP/ +/AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////9/ +f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AL+/AEBAAP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//ABAQAI+PAP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AJ+fAGBgAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//A +P//AP//AL+/AEBAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//ABAQAI+PAP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+ +fAAxgAAD/AAD/AAD/AACfAFRgVP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////9/f3wwgDAD +/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AL+/AEBAAP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//ABAQAI+PAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fA +GBgAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP +//AP//AP//AP//AL+/AEBAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//ABAQAI+PAP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgAP//AP//AP//AP//AP//AP//AP//AP// +AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////9/f +3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AL+/AEBAAP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//ABAQAI+PAP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AJ+fAGBgAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP +//AP//AOfnAJeXAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//ACYmAK2tAP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//ANfXAKenAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+f +AAxgAAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////9/f3wwgDAD/ +AAD/AAD/AAD/AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AEBAAL+/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAAxgAAD/AAD/AAD/AACfAFRgVP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAAAAL+/AL+/AL+/AL+/AL+ +/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AEhIAHd3AL+/ +AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/A +L+/AHh4AAxgAAD/AAD/AAD/AACfAFRgVP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////9/f3 +wwgDAD/AAD/AAD/ +AAD/AA5wABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAA +BBAABBAABBAABBAAAYYAAooABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAABBAAB +BAABBAABBAABBAABBAABBAABBAABBAABBAAAa3AAD/AAD/AAD/AACfAFRgVP///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AACfAFRgVP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////9/f3wwgDAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAB/AAD/AAB/AAD/AAB/AABgAABPAAD/AAB/AAD/AAB/AAD/AADvAAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAD/AAAAAAD/AAAAAAD/AAAAAACfAAAAA +AD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAA +D/AAAAAAD/AAAAAABgAAAAAAD/AAAAAAD/AAAAAAD/AADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAAD/AABAAAD/AABAAAD/AAAYAACfAABAAAD/AABAA +AD/AABAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AACfAFRgVP///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////9/f3wwgDAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADPAAB/AAB/AAB/AAB/AAB/AAB/AAB +nAABHAAAsAAAgAAAQAAAAAAAAAAAFAAAgAAAgAAA0AAA/AABbAABrAAB/AAB/AAB/AAB/AAB/AACv +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAIbAgkOCQ8XDw8XDw8XDw8XDwAAACUlJVhYWIeHh56enr6+vt/f38HBwc3Nzaampq +GhoXx8fGVlZTg4OB4eHgAAAA0UDQ8XDw8XDw8XDwcQBwJnAgD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAHh4eHx8fICAgIWFhYmJib29vcLCwsjIyM7 +OztPT09vb2+Hh4ebm5uPj4+Dg4NjY2NHR0cvLy8bGxsDAwLq6uo2NjYODg39/f3t7e0pKSg8aDwab +BgD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAAAAKCgoKampqurq7Gxsbe3t8jIyM3NzcbGxsjIyNHR0cXFxcfHx8nJycjIyMbGxsbGxtDQ0M +fHx8nJycnJycLCwrW1ta+vr6mpqaSkpGNjYzM/My9BLwabBgD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AACfAFRgVP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////9/f3wwgDAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AFdXV8HBwcPDw8TExMXFxcTExLy8vLq6 +uq/Pr3TkdMbWxlLxUt/f30j3SOLi4lPyU8raynXldbLSssXFxbq6urq6usfHx8XFxcPDw8LCwrKys +klPSZqami9BLwabBgD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAA +FVVVVNTU5aWlrGxsbe3t729vcLCwpbWljTzNLnZuRv6G9/f3wD/ANvj2xz7HLXdtTTzNJjYmMbGxs +DAwLq6urW1ta+vr6mpqaSkpGNjYzM9M6Ojo5qamgAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AACfAFRgVP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAAAAAAAAFVVVbGxsbe3t5+fn3l5eUJiQgfe +BwAXAACfAAAoAACPAABYAAB4AABwAAd3BxOyE1dXV4qKiqioqLW1ta+vr6mpqaSkpGNjYzdCN5eXl +6OjowAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAQEBBkZGRcXFwAAAAAAAAAAACQkJFdXV4+Pj7Ozs+bm5ubm5ubm5ubm5ubm5ubm5ubm5tjY2Ky +srIGBgUFBQRMTEwAAAAAAABERES0tLRwcHD9QP5qampeXlwAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////7+/v3BwcCgoKAAAAAAAABgYGHBwcM/Pz/////////////////// +/////////////////9fX13h4eCgoKAAAAAAAAAgICFhYWKenp/f39//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////9/f3wwgDAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC1ABstG6Kioubm5ubm5ubm5ubm5ubm5 +ubm5ubm5ubm5ubm5ubm5ubm5ubm5tjY2Obm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5tDQ0KysrKysrM +XgxZOvk5qamgAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////9fX10BAQEBAQI+Pj9fX1////////+fn5 +4+PjzAwMEhISOfn5////////////////////+/v72BgYCgoKIeHh9fX1/////////f396enp1hYWD +AwMMfHx////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +DPACQ8JNjY2Obm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5g4ODubm5ubm5ubm5ubm5ub +m5ubm5ubm5ubm5ubm5ubm5ubm5ubm5svny5OvkwAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AACfAFRgVP/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////5+fnzAwML+/v////////////////////////////////7e3tygoKKenp////////////7e3 +tyAgIJ+fn////////////////////////////////9fX1zg4OIeHh//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn5////7+/v////7+/v////7+/v// +//7+/v////7+/v////7+/v////7+/v////////////////////////9/f3wwgDAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADPACQ8JHNzc3Nzc3Nzc3Nzc3Nzc3Nzc +3Nzc3Nzc3Nzc3Nzc3NzcwAAAHNzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc2 +VzZQAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////5+fn2BgYPf39///////////////////// +///////////////////+/v71hYWJ+fn////7e3t1BQUO/v7////////////////////////////// +//////////////3h4eH9/f/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///9/f3/ +///////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AADPAAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAAAAAB/AAB/AAB/ +AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AACvAAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AACfAFRgVP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////7e3t1BQUPf39////////////////////////////////////////////////////0hISI+Pj +0BAQO/v7////////////////////////////////////////////////////3h4eIeHh///////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////5+fn////wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////9/f3wwgDAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8/Pzzg4OPf39///////////////////////////////////// +////////////////////f393BwcO/v7////////////////////////////////////////////// +//////////////1hYWKenp/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///+fn5///////// +///////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAIAAD3AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AACfAFRgVP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////f39zg4OM/P +z//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////+fn5zAwMOfn5///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////39/f39/f////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////5+fn2BgYP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AACfAFRgVP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////+fn5yAgI +Pf39///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////zAwMM/ +Pz/////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////6qqqnl5eXZ2dtjY2P/////////////////////// +/////////////// +/////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////39/f39/f////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////6+vr1BQUP/////////////////////////////////////////////// +////////////////////////////////////////////////////////////////zk5O0RIVWhqcj +U1Ntra2v///////////////////////////////////////////////////////////////////// +//////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AACfAFRgVP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////f39yAgIOfn5//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////xgYGOfn5// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////zk5O2Fyp7nE45mevDEyNdra2v/////////////////////// +////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////+/v739/f0BAQBgYGDg4OFBQUP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////4eHhygoKBAQEDAwMGhoaN/f3///////////////////// +///////////////////////////////////////////////////////////////////////zg5Opq +erNve5rS62FNitjIyNNbW1v////////////////////////////////////////////////////// +/////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AACfAFRgVP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////+/v7zAwMH9/f7+/v+fn57+/v+/v7//////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////f397+/v+/v78/Pz5e +XlzAwMLe3t/////////////////////////////////////////////////////////////////// +/////////////////////zk5O3SBqcXN5MrM1mt5z5yftDIyNdra2v/////////////////////// +////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADvAABgAAD/AAD/AAD +/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/AAC/AACPAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////+/v70BAQM/ +Pz/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////+/v70BAQMfHx///////////////////// +///////////////////////////////////////////////////////////////zk5O2Fyp7nE47C +21snKzsHDzmt2tTEyNdra2v////////////////////////////////////////////////////// +/////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/AA +CfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AACfAFRgVP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////f391BQULe3t///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////9fX1zAwMPf39//////////////////////////////////////////////////// +////////////////////////////zk5OqysrObm5sjK2LG2zqmvzn6Kz1NitjMzNNra2v//////// +///////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/ +AAD/AAD/AAD/AAD/AAAwAADPAAD/AAD/AAD/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////6enp1hY +WP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////4+Pj3BwcP///////// +//////////////////////////////////////////////////////////////////////zk5O2Fy +p7nE48PG1q6zzlNlz6asznOAz7OzszEyNdra2v/////////////////////////////////////// +////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD +/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AACfAFRgVP/////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////0BAQL+/v///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////f39xgYGO/v7//////////////////////////////////////////////////////// +////////////////////zk5O3SBqcXN5KWs156lzn6Kz36Kz8nKzs3NzVNitjEyNdjY2P//////// +///////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/ +AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////8/PzzAwMP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////1hYWKenp////////////// +//////////////////////////////////////////////////////////////zk5OpqerNve5snM +2U9i0La5zqmvzqKpz7a5zmZ2z2hztTMzNNra2v/////////////////////////////////////// +////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAA+AAC/AAD/AAD/AAD/AAD/AAC +fAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AACfAFRgVP/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////39/f39/f////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////5+fn2BgYP//////////////////////////////////////////////// +///////////////////////////zk5O2Fyp7nE47q+1p6lzq6zzra5zqKpz1dp0LG2zoaRz5yftDE +yNdra2v///////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AADXAAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AABwAAAQAAB/A +AB/AAB/AAB/AAB/AAAKAABUAAB/AAB/AAB/AAB/AABQAAAwAAB/AAB/AAB/AAB/AAB/AAB/AAB/AA +B/AAB/AAB/AACXAAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////1hYWKenp//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+/v7xAQEP////// +/////////////////////////////////////////////////////////////////////zk5OoaPq +c/U5Le718XGzc3N +zW58z56lzn6Kz56lzsnKzq6zzlNitjEyNdra2v/////////////////////////////////////// +9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAUOBQYOBjY2NmBgYGBgYGBgYGBgYG +BgYGBgYGBgYGBgYFRUVAwMDGBgYGBgYGBgYGBgYGBgYBMTE0hISGBgYGBgYGBgYGBgYDw8PCQkJGB +gYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYDxEPAh1CAD/AAD/AAD/AAD/AAD/AAD/AACfAFRg +VP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////zg4OMfHx////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////yAgIN/f3///////////////////////////////////////////////////// +///////////////////zk5OoaPqc/U5NPT2K6zzn6Kz56lzk9i0M3Nzb2/zYaRz6mvznOAz0dMZ3N +zc////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AACPAAYWBgC3ACo6KsDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwKioqBgYGMDAwMDAwMDAw +MDAwMDAwJycnLS0tMDAwMDAwMDAwMDAwIyMjEhISMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM +DAwLS0tAUOBQD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////xgYGOfn5//////////// +////////////////////////////////////////////////////////////////////////39/f/ +///39/f////39/f////39/f////39/f////39/f////39/f////////////////////////////// +//////////////////////////////////////////////////////////ygoKNfX1/////////// +/////////////////////////////////////////////+/v77+/v7+/v7+/vy4uMGFyp7nE46201 +ra5zldp0I6Yz56lzq2trXZ8mmpymz5Mm46Pmjw+TVZWVr+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v6enpwkYCQC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAdGBwkzCQDKAAsVC8DAwMDAwLS +0tJCQkJCQkJCQkJCQkJCQkH5+fhISEsDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwICA +gDY2NpCQkJCQkJCQkJCQkJCQkKKiosDAwMDAwMDAwMDAwMDAwBkoGQDPAAD/AAD/AAD/AAD/AAD/A +ACfAFRgVP//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////f39wgICP////////////////////////////////////////////////// +/////////////////////////////////2BgYP///wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///wAAAP///0BAQP//////////////////////////////////////////////////////////// +///////////////////////yAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAABAQEEBAQEBAQEBAQBAQEJWZp9ve5ra82GZ2z66zzoaRz72/zUdHRxQZNCgpNCAjNC8w +MxgYGhwcHEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQDg4OAMIAwBAAABAAABAAABAAABAA +ABAAABAAABAAABAAAMTAwMTAwCVAAcOB8DAwMDAwGBgYBgYGDAwMDAwMDAwMDAwMDAwMDAwMEhISM +DAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAGZmZjAwMDAwMDAwMDAwMDAwMCoqKhgYGMDAwMD +AwMDAwMDAwMDAwB4uHgDHAAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////wAAAP/////////////////////// +////////////////////////////////////////////////////////////////wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////////// +//////////////////////////////////////////////////yAgIN/f3/////////////////// +/////////////////////////////////////////////////////zk5O3SBqcXN5MvN1mZ2z66zz +snKzp6lzn6Kz56lzm58z83NzcnKzkxQZ3Jycv///////////////////////////////////////9 +/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACHAAcWBwDHAB4uHsDAwMDAwGBgYGBgYMD +AwMDAwMDAwMDAwMDAwMDAwMDAwGBgYMDAwGBgYMDAwGBgYMDAwGBgYMDAwGBgYMDAwMDAwMDAwMDA +wMDAwMDAwMDAwKioqBgYGMDAwMDAwMDAwMDAwLq6ugYOBgD3AAD/AAD/AAD/AAD/AAD/AACfAFRgV +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////xAQEO/v7/////////////////////////////////////////////////////// +/////////////////////////6+vr////39/f////39/f////39/f////39/f////39/f////39/f +////5+fn///////////////////////////////////////////////////////////////////// +///////////////wAAAP///////////////////////////////////////////////////////// +//////////////////zk5O2Fyp7nE47C21sXGzb2/zYaRz7G2zldp0KKpz7a5zq6zzp6lzlNWZ3Nz +c////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AADPAAMHAwklCUxPTJCQkJCQkEhISEhISJCQkJCQkJCQkJCQkJCQkJCQkKioqKioqKioqK +ioqKioqHJycpaWlqioqKioqKioqKioqJmZmZCQkJCQkJCQkJCQkJCQkH5+fhISEpCQkJCQkJCQkJC +QkGJnYgxUDAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////ygoKNfX1///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////9/f3yAgIP/////////////// +////////////////5+fn////39/f////39/f////39/f////7+/v////yoqKgMDBCorLTY2NyQkKE +5OV7a5znaDz2Z2z7a5zqaszqmvzra5zk9i0FpcZ29vb////////0BAQP///0BAQP///0BAQP///0B +AQP///9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACvAAw8DAw8DAw8DAw8DAYe +BgYeBgw8DAw8DAw8DAw8DAw8DAw8DAw8DAw8DAw8DAw8DAw8DAMPAwktCQw8DAw8DAw8DAw8DAw8D +Aw8DAw8DAw8DAw8DAw8DAs0CwIHAgw8DAw8DAw8DAw8DAplCgD3AAD/AAD/AAD/AAD/AAD/AAD/AA +CfAFRgVP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////3BwcI+Pj//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////7+/v0BAQP///////////////////////////////////wAAAP///wAAAP// +/wAAAP///wAAAP///////wQEBAoKCg8PDw8PDw8PDwcHBzlDgK6zzmZ2z83NzcXGzX6Kz36Kz56lz +kdMZ3Nzc////yAgIP///wAAAP///wAAAP///wAAAP///5+fn9/f3wwgDAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////7+/v0BAQP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////3BwcI+Pj//////////////////////// +////////0BAQP///wAAAP///wAAAP///wAAAP///39/f////5OTkwcHB5SUlKysrKysrDk5OQ8PEF +BXf8XGzc3NzWZ2z66zzldp0L2/zVpcZ3Nzc////////wAAAP///wAAAP///wAAAP///wAAAP///9/ +f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////f39xgYGO/v7//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////f39yAgIOfn5////////////////////////////////////0BAQP///0BAQP///0BAQP// +/0BAQP///////////6ioqA8PD8rKyubm5t/f3zk5ORAQEGhrf7a5zmZ2z3aDz7a5zsHDzldZZ29vb +////4+Pj////39/f////39/f////39/f////8/Pz9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////2hoaJeXl////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////6enp1hYWP//////////////////// +///////////////////////////////////////////////////////////////6ioqA8PD8rKyub +m5t/f3zk5ORAQEDlDgLG2zoaRz72/zcXGzUxQZ3Nzc/////////////////////////////////// +/////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/A +AB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC +fAFRgVP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////f39zAwMNfX1///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////zAwMM/Pz//////////////////////////////////////////////////////// +/////////////// +/////////////////6ioqA8PD8rKyubm5t/f3zk5OQ8PEGNnf8nKzq6zzmZ2z19gZ3Jycv/////// +////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB +AAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8fHx0BAQPf39////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////3h4eH9/f///////////////////////////////// +///////////////////////////////////////////////////////////////6ioqA8PD8rKyub +m5t/f3zk5ORAQEFddf7G2zmZ2z0xQZ29vb////////////////////////////////////////9/f +3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACPAACPAAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABQAADPAAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AADnAAA4AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////5+fn0BAQNfX1///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////9/f31hY +WGhoaP/////////////////////////////////////////////////////////////////////// +////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5OQ8QEDlDgL2/zUxQZ3Nzc/ +///////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////7+/vygo +KDAwMEBAQAgICHh4eP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////6enpwAAADAwMCAgICAgIKenp////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/6ioqA8PD8rKyubm5t/f3zk5OQ8PEHV2fmFiZ3BwcP/////////////////////////////////// +////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AA +C/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD +/AAC/AAD/AAC/AAD/AAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACf +AFRgVP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8/Pz7+/v+fn5xgYGPf39///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////zAwMM/Pz8/Pz9/f3/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5ORAQEC8yP3Fxcf//////// +///////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAB/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/ +AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AABAAAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////2hoaJeXl//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////8/PzzAwMP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/6ioqA8PD8rKyubm5t/f3zk5OQkJCT4+Pv///////////////////////////////////////9/f3 +wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAAAAAD/AA +AAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD +/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8/PzzAwMP///////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////1hYWKenp//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5OQQEBGx +sbP///////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AACfAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/A +ABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABwAAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////3BwcI+Pj///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////8/Pzzg4OPf39/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////6ioqAgICA8PDw8PDw0NDQEBAR8fH///////////////////////////////// +///9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfA +FRgVP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////+/v7ygoKOfn5////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////zAwMM/Pz//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8PDw4+Pj4+Pj4+Pj4uLi9LS0v///// +//////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////5+fn2BgYP//////////////////////////////////////////////////////// +///////7+/v////////////////////////////////////////////////////////////////4e +Hh3h4eP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////9/f3w +wgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////39/f39/f/////////// +/////////////////////////////////////////////5+fnzAwMH9/f//////////////////// +////////////////////////////////////7e3t1BQUPf39///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////2hoaI+Pj////////////////////////////////////////// +//////5+fn2BgYP///39/f3h4eP///////////////////////////////////////////////7e3 +t1BQUPf39//////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////9/f3wwgDAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////2hoaEhISO/v7/////// +/////////////////////////+/v72hoaGBgYP///////////3h4eDg4OOfn5//////////////// +/////////////////f3939/f1BQUPf39///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AADfAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AA +AAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////7e3tygoKH9/f9fX1////////////////9fX14+PjygoKJeXl// +//////////////////8fHxygoKHh4eNfX1////////////////+fn55+fnzAwMH9/f/f39/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////9/f3ww +gDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAAA +AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/A +ABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////+fn5 +39/fygoKCgoKEBAQEBAQCAgICgoKHBwcOfn5////////////////////////////+/v74eHhygoKC +goKEBAQEBAQDAwMBgYGGBgYNfX1////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAA +AAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////9fX17+/v7+/v9/f3////////////////////////// +//////////////////////////9fX17+/v7+/v8/Pz/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////9/f3wwgDAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAD/AABAAAD/AABA +AAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AACHAAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////9/f3wwg +DAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ +AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+/v7wsQCwAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGlwaf///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////w4AAAAUAAAAAAAAABAAAAAUAAAA +2003-11-09T10:53:13 +2003-12-23T08:57:19 +2003-11-09T15:40:59 +2003-11-09T10:53:13 + + +9 +295 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +18 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +20 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +3 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +3 +1 +0 +2 +0 +0 +1 +2 +0 + + + + +1 +1 +1 +0 + + +1 +#8a8aff +31 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0016666666666667 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + + +2 +0 +1 +0 + + +2 + + + +Visio Network Solutions +
http://officeupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + + +11 +8.5 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Apple +255 +0 +1 +1 +0 +0 +1 +1 +Apple +0 + + +Digital +255 +0 +1 +1 +0 +0 +1 +1 +Digital +0 + + +Cray +255 +0 +1 +1 +0 +0 +1 +1 +Cray +0 + + +IBM +255 +0 +1 +1 +0 +0 +1 +1 +IBM +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +6.1 +3.35 +2.2 +4.3 +1.1 +2.15 +0 +0 +0 +0 + + +3 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.2 +0 + + +2.2 +4.3 + + +0 +4.3 + + +0 +0 + + + + + +6.1 +2.15 +1.8 +1.7 +0.9 +0.85 +0 +0 +0 +0 + + +7 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +1.7 + + +0 +1.7 + + +0 +0 + + + + + +2.05 +4.4392857142857 +2.3 +1.75 +1.15 +0.875 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0.875 +0 +0 +0 +0 + + + +0.8117643 +1.75 +0 +0 +0 +0 + + + +1.48833 +1.75 +0 +0 +0 +0 + + + +0.8117643 +0 +0 +0 +0 +0 + + + +1.4882357 +0 +0 +0 +0 +0 + + + +2.3 +0.875 +0 +0 +0 +0 + + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.33823529411765 +0.45139244650857 + + +1.15 +0.19195334392518 +0.70682204248263 +0.01660909406747 +0 +0.61848739495799 + + +1.9617647058824 +0.45139244650857 +1.5931779575174 +0.016609094067465 +0 +0.61848739495799 + + +2.3 +0.875 +2.1951125414236 +0.52912588091909 +0 +0.61848739495799 + + +1.9617647058824 +1.2986075534914 +2.1951125414236 +1.2208741190809 +0 +0.61848739495799 + + +1.15 +1.5580466560748 +1.5931779575174 +1.7333909059325 +0 +0.61848739495799 + + +0.33823529411765 +1.2986075534914 +0.70682204248263 +1.7333909059325 +0 +0.61848739495799 + + +0 +0.875 +0.10488745857643 +1.2208741190809 +0 +0.61848739495799 + + +0.33823529411765 +0.45139244650857 +0.10488745857643 +0.52912588091909 +0 +0.61848739495799 + + +Internet + + + +4.03125 +4.25 +0.0875 +0.7 +0.04375 +0.35 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.125 +-0.2 +0.04375 +0.35 +4 +2 +0 +Reposition Text + + +0 +0 +0 +1 +0 +0 + + +0.30625 +0.21875 +0 +0 +0 +0 + + + +0.30625 +0.525 +0 +0 +0 +0 + + + +0 +0.525 +0 +0 +0 +0 + + + +0.04921875 +0 +0 +0 +0 +0 + + + +0.2625 +0.91875 +0 +0 +0 +0 + + + + + +0.30625 +0.546875 +0.4375 +1.09375 +0.21875 +0.546875 +0 +0 +0 +0 + + +0 + + +#d0624f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.21875 +0.546875 +0.4375 +1.09375 +0.21875 +0.546875 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.4375 +1.09375 + + +0 +0.65625 + + +0 +0 + + + + + +0.2625 +0.57421875 +0.525 +0.9296875 +0.2625 +0.46484375 +0 +0 +0 +0 + + +0 + + +0.2625 +0.46484375 +0.525 +0.9296875 +0.2625 +0.46484375 +0 + + +1 +0 +0 +0 + +0 +0.4375 + + +0.0875 +0.4375 + + +0.1421875 +0.4921875 + + + +1 +0 +0 +0 + +0.1421875 +0.4921875 + + +0.196875 +0.546875 + + + +1 +0 +0 +0 + +0.196875 +0.546875 + + +0.2515625 +0.6015625 + + + +1 +0 +0 +0 + +0.2515625 +0.6015625 + + +0.30625 +0.65625 + + + +1 +0 +0 +0 + +0.30625 +0.65625 + + +0.3609375 +0.7109375 + + + +1 +0 +0 +0 + +0.3609375 +0.7109375 + + +0.415625 +0.765625 + + + +1 +0 +0 +0 + +0.415625 +0.765625 + + +0.4703125 +0.8203125 + + + +1 +0 +0 +0 + +0 +0.328125 + + +0.0875 +0.328125 + + +0.1421875 +0.3828125 + + + +1 +0 +0 +0 + +0.1421875 +0.3828125 + + +0.196875 +0.4375 + + + +1 +0 +0 +0 + +0.196875 +0.4375 + + +0.2515625 +0.4921875 + + + +1 +0 +0 +0 + +0.2515625 +0.4921875 + + +0.30625 +0.546875 + + + +1 +0 +0 +0 + +0.30625 +0.546875 + + +0.3609375 +0.6015625 + + + +1 +0 +0 +0 + +0.3609375 +0.6015625 + + +0.415625 +0.65625 + + + +1 +0 +0 +0 + +0.415625 +0.65625 + + +0.4703125 +0.7109375 + + + +1 +0 +0 +0 + +0.4703125 +0.7109375 + + +0.525 +0.765625 + + + +1 +0 +0 +0 + +0 +0.21875 + + +0.0875 +0.21875 + + +0.1421875 +0.2734375 + + + +1 +0 +0 +0 + +0.1421875 +0.2734375 + + +0.196875 +0.328125 + + + +1 +0 +0 +0 + +0.196875 +0.328125 + + +0.2515625 +0.3828125 + + + +1 +0 +0 +0 + +0.2515625 +0.3828125 + + +0.30625 +0.4375 + + + +1 +0 +0 +0 + +0.30625 +0.4375 + + +0.3609375 +0.4921875 + + + +1 +0 +0 +0 + +0.3609375 +0.4921875 + + +0.415625 +0.546875 + + + +1 +0 +0 +0 + +0.415625 +0.546875 + + +0.4703125 +0.6015625 + + + +1 +0 +0 +0 + +0.4703125 +0.6015625 + + +0.525 +0.65625 + + + +1 +0 +0 +0 + +0 +0.109375 + + +0.0875 +0.109375 + + +0.1421875 +0.1640625 + + + +1 +0 +0 +0 + +0.1421875 +0.1640625 + + +0.196875 +0.21875 + + + +1 +0 +0 +0 + +0.196875 +0.21875 + + +0.2515625 +0.2734375 + + + +1 +0 +0 +0 + +0.2515625 +0.2734375 + + +0.30625 +0.328125 + + + +1 +0 +0 +0 + +0.30625 +0.328125 + + +0.3609375 +0.3828125 + + + +1 +0 +0 +0 + +0.3609375 +0.3828125 + + +0.415625 +0.4375 + + + +1 +0 +0 +0 + +0.415625 +0.4375 + + +0.4703125 +0.4921875 + + + +1 +0 +0 +0 + +0.4703125 +0.4921875 + + +0.525 +0.546875 + + + +1 +0 +0 +0 + +0 +0 + + +0.0875 +0 + + +0.1421875 +0.0546875 + + + +1 +0 +0 +0 + +0.1421875 +0.0546875 + + +0.196875 +0.109375 + + + +1 +0 +0 +0 + +0.196875 +0.109375 + + +0.2515625 +0.1640625 + + + +1 +0 +0 +0 + +0.2515625 +0.1640625 + + +0.30625 +0.21875 + + + +1 +0 +0 +0 + +0.30625 +0.21875 + + +0.3609375 +0.2734375 + + + +1 +0 +0 +0 + +0.3609375 +0.2734375 + + +0.415625 +0.328125 + + + +1 +0 +0 +0 + +0.415625 +0.328125 + + +0.4703125 +0.3828125 + + + +1 +0 +0 +0 + +0.4703125 +0.3828125 + + +0.525 +0.4375 + + + +1 +0 +0 +0 + +0.1421875 +0.4921875 + + +0.1421875 +0.6015625 + + + +1 +0 +0 +0 + +0.1421875 +0.2734375 + + +0.1421875 +0.3828125 + + + +1 +0 +0 +0 + +0.1421875 +0.0546875 + + +0.1421875 +0.1640625 + + + +1 +0 +0 +0 + +0.196875 +0 + + +0.196875 +0.109375 + + + +1 +0 +0 +0 + +0.196875 +0.4375 + + +0.196875 +0.546875 + + + +1 +0 +0 +0 + +0.196875 +0.21875 + + +0.196875 +0.328125 + + + +1 +0 +0 +0 + +0.2515625 +0.6015625 + + +0.2515625 +0.7109375 + + + +1 +0 +0 +0 + +0.2515625 +0.3828125 + + +0.2515625 +0.4921875 + + + +1 +0 +0 +0 + +0.2515625 +0.1640625 + + +0.2515625 +0.2734375 + + + +1 +0 +0 +0 + +0.30625 +0.109375 + + +0.30625 +0.21875 + + + +1 +0 +0 +0 + +0.30625 +0.546875 + + +0.30625 +0.65625 + + + +1 +0 +0 +0 + +0.30625 +0.328125 + + +0.30625 +0.4375 + + + +1 +0 +0 +0 + +0.3609375 +0.7109375 + + +0.3609375 +0.8203125 + + + +1 +0 +0 +0 + +0.3609375 +0.4921875 + + +0.3609375 +0.6015625 + + + +1 +0 +0 +0 + +0.3609375 +0.2734375 + + +0.3609375 +0.3828125 + + + +1 +0 +0 +0 + +0.415625 +0.21875 + + +0.415625 +0.328125 + + + +1 +0 +0 +0 + +0.415625 +0.65625 + + +0.415625 +0.765625 + + + +1 +0 +0 +0 + +0.415625 +0.4375 + + +0.415625 +0.546875 + + + +1 +0 +0 +0 + +0.4703125 +0.6015625 + + +0.4703125 +0.7109375 + + + +1 +0 +0 +0 + +0.4703125 +0.3828125 + + +0.4703125 +0.4921875 + + + +1 +0 +0 +0 + +0.4703125 +0.8203125 + + +0.4703125 +0.9296875 + + + +1 +0 +0 +0 + +0.4703125 +0.8203125 + + +0.525 +0.875 + + + + + +0.04375 +0.328125 +0.0875 +0.65625 +0.04375 +0.328125 +0 +0 +0 +0 + + +0 + + +#dc7e5f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.04375 +0.328125 +0.0875 +0.65625 +0.04375 +0.328125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0 +0.65625 + + +0.0875 +0.65625 + + +0.0875 +0 + + +0 +0 + + + + + +0.35 +0.896875 +0.4375 +0.48125 +0.21875 +0.240625 +0 +0 +0 +0 + + +0 + + +0.21875 +0.240625 +0.4375 +0.48125 +0.21875 +0.240625 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.4375 +0.48125 + + +0 +0.04375 + + +0 +0 + + + + + +0.04375 +0.678125 +0.175 +0.04375 +0.0875 +0.021875 +0 +0 +0 +0 + + +0 + + +0.0875 +0.021875 +0.175 +0.04375 +0.0875 +0.021875 +0 + + +0 +0 +0 +0 + +0 +0.04375 + + +0 +0 + + +0.175 +0 + + +0.175 +0.04375 + + +0 +0.04375 + + + + + +0.2625 +0.91875 +0.6125 +0.4375 +0.30625 +0.21875 +0 +0 +0 +0 + + +0 + + +0.30625 +0.21875 +0.6125 +0.4375 +0.30625 +0.21875 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.6125 +0.4375 + + +0.175 +0 + + +0 +0 + + + + + +0.04375 +0.328125 +0.0875 +0.4375 +0.04375 +0.21875 +0 +0 +0 +0 + + +0 + + +0.04375 +0.21875 +0.0875 +0.4375 +0.04375 +0.21875 +0 + + +1 +0 +0 +0 + +0.0875 +0.4375 + + +0 +0.4375 + + + +1 +0 +0 +0 + +0.0875 +0.328125 + + +0 +0.328125 + + + +1 +0 +0 +0 + +0.0875 +0.21875 + + +0 +0.21875 + + + +1 +0 +0 +0 + +0.0875 +0.109375 + + +0 +0.109375 + + + +1 +0 +0 +0 + +0.0875 +0 + + +0 +0 + + + + + +0.2625 +0.56875 +0.6125 +1.1375 +0.30625 +0.56875 +0 +0 +0 +0 + + +0 + + +0.30625 +0.56875 +0.6125 +1.1375 +0.30625 +0.56875 +0 + + +0 +0 +0 +0 + +0.04375 +0 + + +0.04375 +0.65625 + + +0 +0.65625 + + +0 +0.7 + + +0.4375 +1.1375 + + +0.6125 +1.1375 + + +0.6125 +1.09375 + + +0.56875 +1.05 + + +0.56875 +0.4375 + + +0.13125 +0 + + +0.04375 +0 + + + + + +0 +0 +0.62969292634722 +0.25555555555556 +-0.125 +0.32777777777778 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.31484646317361 +0.12777777777778 +0.62969292634722 +0.25555555555556 +0.31484646317361 +0.12777777777778 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +0.62969292634722 +0 + + +0.62969292634722 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Firewall + + + + + +6.0821428571429 +3.4 +1.05 +0.2625 +0.525 +0.13125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.525 +-0.12777777777778 +0.525 +0.13125 +3 +2 +0 +Reposition Text + + +0 +0 +0.5 +1 +0 +0 + + +0.525 +0.13125 +0 +0 +0 +0 + + + +1.115625 +0.196875 +0 +0 +0 +0 + + + +0 +0.196875 +0 +0 +0 +0 + + + +0.525 +0 +0 +0 +0 +0 + + + +0.590625 +0.328125 +0 +0 +0 +0 + + + + + +0.598828125 +0.196875 +1.16484375 +0.39375 +0.582421875 +0.196875 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.582421875 +0.196875 +1.16484375 +0.39375 +0.582421875 +0.196875 +0 + + +0 +0 +0 +0 + +0 +0.0328125 + + +0 +0 + + +1.00078125 +0 + + +1.00078125 +0.0328125 + + +0 +0.0328125 + + + +0 +0 +0 +0 + +1.00078125 +0 + + +1.03359375 +0.0328125 + + +1.00078125 +0.0328125 + + +1.00078125 +0 + + + +0 +0 +0 +0 + +1.0335937508471 +0.2625 + + +1.16484375 +0.39375 + + +1.1648437494352 +0.1640625 + + +1.0335937502824 +0.0328125 + + +1.0335937508471 +0.2625 + + + + + +0.59062500028238 +0.28710136414338 +1.1812499994352 +0.21329727171324 +0.59062499971762 +0.10664863585662 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.59062499971762 +0.10664863585662 +1.1812499994352 +0.21329727171324 +0.59062499971762 +0.10664863585662 +0 + + +0 +0 +0 +0 + +1.1812499994352 +0.21329727171324 + + +0.13124999943524 +0.21329727171324 + + +0 +0.082047271713236 + + +0 +0.016422271713236 + + +1.05 +0.016422271713236 +0.50859375 +1.6021713236027E-5 +0 +1 + + +1.05 +0.082047271713236 + + +1.1812499994352 +0.21329727171324 + + + + + +1.115625 +0.205078125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.065625 +0.073828125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.13125 +0.13125 + + +0.13125 +0.14765625 + + +0 +0.01640625 + + +0 +0 + + + + + +1.115625 +0.196875 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.065625 +0.073828125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.13125 +0.13125 + + +0.13125 +0.14765625 + + +0 +0.01640625 + + +0 +0 + + + + + +0.590625 +0.196875 +1.18125 +0.39375 +0.590625 +0.196875 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.590625 +0.196875 +1.18125 +0.39375 +0.590625 +0.196875 +0 + + +1 +0 +0 +0 + +0.01640625 +0 + + +0.01640625 +0.0328125 + + +0 +0.0328125 + + +0 +0.2625 + + +0.13125 +0.39375 + + +1.18125 +0.39375 + + +1.18125 +0.1640625 + + +1.0171875 +0 + + +0.01640625 +0 + + + + + +0.52500000056476 +0.123046875 +1.05 +0.27890625 +0.525 +0.139453125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.139453125 +1.05 +0.27890625 +0.525 +0.139453125 +0 + + +0 +0 +0 +0 + +0.52499999941843 +0.2296875 + + +0.32812499941843 +0.2296875 +0 +0 +0.49946975323462 +3 + + +0.27885376335784 +0.27080873209719 +0 + + +0.1640625 +0.27890625 +0 + + +0.098437500000001 +0.27890625 +0.2954319565221 + + +0 +0.27890625 + + +0 +0.04921875 + + +0.098437499435237 +0.04921875 + + +0.16406249943524 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376367069 +0.041121232097194 +0 + + +0.32812499943524 +0 +0 + + +0.52499999943524 +0 +0.20403779671252 + + +0.721875 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.77114623491302 +0.032791039531086 +0 + + +0.88593749943524 +0.04921875 +0 + + +0.95156249943524 +0.04921875 +0.2954319565221 + + +1.0499999994352 +0.04921875 + + +1.05 +0.27890625 + + +0.9515625 +0.27890625 + + +0.8859375 +0.27890625 +0 +0 +0.49946975323462 +3 + + +0.77114623488563 +0.27084501407305 +0 + + +0.72187499941843 +0.2296875 +0 + + +0.52499999941843 +0.2296875 +0.20403779671252 + + + + + +0.52382812586429 +0.17730468749892 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.43945312586429 +0.17730468750108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.35507812586299 +0.18363281250108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.60820312586429 +0.17730468750108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.69257812586299 +0.18363281250108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.064453125564764 +0.21796875 +0.06328125 +0.0421875 +0.031640625 +0.02109375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.031640625 +0.02109375 +0.06328125 +0.0421875 +0.031640625 +0.02109375 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.06328125 +0 + + +0.06328125 +0.0421875 + + +0 +0.0421875 + + +0 +0 + + + + + +0.52500000056476 +0.11484375 +1.05 +0.065625 +0.525 +0.0328125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.0328125 +1.05 +0.065625 +0.525 +0.0328125 +0 + + +0 +0 +0 +0 + +0.52499999885366 +0.01640625 + + +0.32812499885366 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.27885376279307 +0.057527482097194 +0 + + +0.16406249943524 +0.065625 +0 + + +0.098437499435236 +0.065625 +0.2954319565221 + + +0 +0.065625 + + +0 +0.04921875 + + +0.098437500000001 +0.04921875 + + +0.1640625 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376423546 +0.041121232097194 +0 + + +0.328125 +0 +0 + + +0.525 +0 +0.20403779671252 + + +0.721875 +0 +0 +0 +0.49946975323462 +3 + + +0.77114623576454 +0.041121232097194 +0 + + +0.8859375 +0.04921875 +0 + + +0.9515625 +0.04921875 +0.2954319565221 + + +1.05 +0.04921875 + + +1.0499999994352 +0.065625 + + +0.95156249943524 +0.065625 + + +0.88593749943524 +0.065625 +0 +0 +0.49946975323462 +3 + + +0.77114623431962 +0.057128380362804 +0 + + +0.72187499885366 +0.01640625 +0 + + +0.52499999885366 +0.01640625 +0.20403779671252 + + + + + +0.52500000056476 +0.106640625 +1.05 +0.065625 +0.525 +0.0328125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.0328125 +1.05 +0.065625 +0.525 +0.0328125 +0 + + +0 +0 +0 +0 + +0.52499999885366 +0.01640625 + + +0.32812499885366 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.27885376279307 +0.057527482097194 +0 + + +0.16406249943524 +0.065625 +0 + + +0.098437499435236 +0.065625 +0.2954319565221 + + +0 +0.065625 + + +0 +0.04921875 + + +0.098437500000001 +0.04921875 + + +0.1640625 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376423546 +0.041121232097194 +0 + + +0.328125 +0 +0 + + +0.525 +0 +0.20403779671252 + + +0.721875 +0 +0 +0 +0.49946975323462 +3 + + +0.77114623576454 +0.041121232097194 +0 + + +0.8859375 +0.04921875 +0 + + +0.9515625 +0.04921875 +0.2954319565221 + + +1.05 +0.04921875 + + +1.0499999994352 +0.065625 + + +0.95156249943524 +0.065625 + + +0.88593749943524 +0.065625 +0 +0 +0.49946975323462 +3 + + +0.77114623431962 +0.057128380362804 +0 + + +0.72187499885366 +0.01640625 +0 + + +0.52499999885366 +0.01640625 +0.20403779671252 + + + + + + +0 +0 +0.55579969718056 +0.25555555555556 +-0.24710015140972 +0.25555555555556 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.27789984859028 +0.12777777777778 +0.55579969718056 +0.25555555555556 +0.27789984859028 +0.12777777777778 +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +0.55579969718056 +0 + + +0.55579969718056 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Router + + + + + +6.0785714285714 +2.5107142857143 +1.4714285714286 +0.25 +0.73571428571429 +0.125 +-7.4014868308344E-17 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.73571428571429 +0.125 +1.4714285714286 +0.25 +0.73571428571429 +0.125 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0.0625 +0.125 +0 +0 +0 +0 + + + +1.4714285714286 +0.125 +0 +0 +0 +0 + + + +1 + + + +0.24528714285714 +0.5 +0.24528714285714 +0.125 +0 +0 +1 +Connect To Network Device + + +0.49042714285714 +-0.25 +0.49042714285714 +0.125 +0 +0 +1 +Connect To Network Device + + +0.98100142857143 +-0.25 +0.98100142857143 +0.125 +0 +0 +1 +Connect To Network Device + + +0.73571428571429 +0.5 +0.73571428571429 +0.125 +0 +0 +1 +Connect To Network Device + + +1.2261855714286 +0.5 +1.2261855714286 +0.125 +0 +0 +1 +Connect To Network Device + + +0.73571428571429 +0.125 +0.73571428571429 +0.125 +0 +0 +1 +Connect To Network Device + + +0.61309523809524 +0.125 +0.61309523809524 +0.125 +0 +0 +1 +Connect To Network Device + + +0.85833333333333 +0.125 +0.85833333333333 +0.125 +0 +0 +1 +Connect To Network Device + + +0 +0 +0 +0 + +0.0625 +0.015625 + + +0.0625 +0.234375 +0.015625 +0.125 +-1.5707963267949 +2.3 + + +0.0625 +0.015625 +0.109375 +0.125 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.0625 +0.25 + + +1.4089285714286 +0.25 + + +1.4089285714286 +0 +1.4714285714286 +0.125 +-1.5707963267949 +2 + + +0.0625 +0 + + +0.0625 +0.25 +0 +0.125 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +0.24528714285714 +0.5 + + +0.24528714285714 +0.125 + + +0.73571428571429 +0.125 + + + +1 +0 +0 +0 + +0.49042714285714 +-0.25 + + +0.49042714285714 +0.125 + + +0.73571428571429 +0.125 + + + +1 +0 +0 +0 + +0.98100142857143 +-0.25 + + +0.98100142857143 +0.125 + + +0.73571428571429 +0.125 + + + +1 +0 +0 +0 + +0.73571428571429 +0.5 + + +0.73571428571429 +0.125 + + +0.73571428571429 +0.125 + + + +1 +0 +0 +0 + +1.2261855714286 +0.5 + + +1.2261855714286 +0.125 + + +0.73571428571429 +0.125 + + + +1 +0 +0 +0 + +0.73571428571429 +0.125 + + +0.73571428571429 +0.125 + + +0.73571428571429 +0.125 + + + +1 +0 +0 +0 + +0.61309523809524 +0.125 + + +0.61309523809524 +0.125 + + +0.73571428571429 +0.125 + + + +1 +0 +0 +0 + +0.85833333333333 +0.125 + + +0.85833333333333 +0.125 + + +0.73571428571429 +0.125 + + + + + +6.1571428571429 +4.4178571428571 +1.5 +0.25 +0.75 +0.125 +-7.4014868308344E-17 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.75 +0.125 +1.5 +0.25 +0.75 +0.125 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0.25005 +0.5 +0.25005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.49995 +-0.25 +0.49995 +0.125 +0 +0 +1 +Connect To Network Device + + +1.00005 +-0.25 +1.00005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +0.5 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +1.249995 +0.5 +1.249995 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +-0.024999999999998 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +0.625 +0.125 +0.625 +0.125 +0 +0 +1 +Connect To Network Device + + +0.875 +0.125 +0.875 +0.125 +0 +0 +1 +Connect To Network Device + + +1 + + + +0.0625 +0.125 +0 +0 +0 +0 + + + +1.5 +0.125 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.0625 +0.015625 + + +0.0625 +0.234375 +0.015625 +0.125 +-1.5707963267949 +2.3 + + +0.0625 +0.015625 +0.109375 +0.125 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.0625 +0.25 + + +1.4375 +0.25 + + +1.4375 +0 +1.5 +0.125 +-1.5707963267949 +2 + + +0.0625 +0 + + +0.0625 +0.25 +0 +0.125 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +0.25005 +0.5 + + +0.25005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.49995 +-0.25 + + +0.49995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.00005 +-0.25 + + +1.00005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +0.5 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.249995 +0.5 + + +1.249995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +-0.024999999999998 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.625 +0.125 + + +0.625 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.875 +0.125 + + +0.875 +0.125 + + +0.75 +0.125 + + + + + +4.8816964285714 +4.4214285714286 +1.1759145512697 +0 +0.58795727563484 +0 +-0.0060743368308667 +0 +0 +0 + + +4.29375 +4.425 +5.4696428571429 +4.4178571428571 + + +0 +0 +0 +0 +0 + + +5 + + +0.58795727563484 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.0060743368308667 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.58795727563484 +0 +0.58795727563484 +0 +0 +0 +0 +Curve Position + + +0.58795727563484 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +1.1759145512697 +0 +0.58795727563484 +0 +0 +1 + + + + + +6.1524553571429 +3.9448660714286 +0.69604528143003 +0 +0.34802264071502 +0 +-1.5842656853705 +0 +1 +0 + + +6.1571428571429 +4.2928571428571 +6.1477678571429 +3.596875 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +3 +2 +2 +0 + +0 +0 + + +0.34802264071502 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +-1.5842656853705 + + +0.34802264071502 +0 +0.34802264071502 +0 +0 +0 +0 +Curve Position + + +0.34802264071502 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.69604528143003 +0 +0.34802264071502 +0 +0 +1 + + + + + +6.0803571428571 +2.9522321428571 +0.63304578875723 +0 +0.31652289437862 +0 +-1.5764380158805 +0 +1 +0 + + +6.0821428571429 +3.26875 +6.0785714285714 +2.6357142857143 + + +0 +0 +0 +0 +0 + + +5 + + +0.31652289437862 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +-1.5764380158805 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.31652289437862 +0 +0.31652289437862 +0 +0 +0 +0 +Curve Position + + +0.31652289437862 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.63304578875723 +0 +0.31652289437862 +0 +0 +1 + + + + + +6.1142857142857 +4.9214285714286 +1.4 +0.5 +0.7 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4 +0 + + +1.4 +0.5 + + +0 +0.5 + + +0 +0 + + +192.168.1.0/24 + + + +3.59375 +4.4321428571428 +0.78762956498131 +0 +0.39381478249066 +0 +-0.018138600054222 +0 +0 +0 + + +3.2 +4.4392857142857 +3.9875 +4.425 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.39381478249066 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.018138600054222 + + +0.39381478249066 +0 +0.39381478249066 +0 +0 +0 +0 +Curve Position + + +0.39381478249066 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.78762956498131 +0 +0.39381478249066 +0 +0 +1 + + + + + +6.0571428571429 +1.9357142857143 +1.4 +0.5 +0.7 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4 +0 + + +1.4 +0.5 + + +0 +0.5 + + +0 +0 + + +192.168.2.0/24 + + + +3.7 +4.6 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth0 + + + +4.7571428571429 +4.5928571428571 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth1 + + + +6.1 +5.2571428571429 +1.8 +0.6 +0.9 +0.3 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +0.6 + + +0 +0.6 + + +0 +0 + + +LOC Zone + + + +6.0785714285714 +1.6 +1.4428571428571 +0.4 +0.72142857142857 +0.2 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4428571428571 +0 + + +1.4428571428571 +0.4 + + +0 +0.4 + + +0 +0 + + +LOC1 Zone + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + + + + + + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/MultiZone1A.vsd b/Shorewall-docsN/images/MultiZone1A.vsd new file mode 100755 index 000000000..7075d7511 Binary files /dev/null and b/Shorewall-docsN/images/MultiZone1A.vsd differ diff --git a/Shorewall-docsN/images/MultiZone1B.png b/Shorewall-docsN/images/MultiZone1B.png new file mode 100755 index 000000000..c46ddd7ba Binary files /dev/null and b/Shorewall-docsN/images/MultiZone1B.png differ diff --git a/Shorewall-docsN/images/MultiZone1B.vdx b/Shorewall-docsN/images/MultiZone1B.vdx new file mode 100755 index 000000000..22a7ce4a7 --- /dev/null +++ b/Shorewall-docsN/images/MultiZone1B.vdx @@ -0,0 +1,15917 @@ + + + + + +MultiZone1 +TEastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAABcBAADXAAAAAAAAAAAAAAA/GwAArxMAACBFTUYAAAEA7MUCAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAATMUCAAAAAAAAAAAAFwEAANcAAAAAAAAAAAAAABg +BAADYAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADAxAIAKAAAABgBAADYAAAAAQAYAAAAAADAxAIAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////5+fn39/f39/f39/f39/f39/f39/f39/ +f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f +39/f39/f39/f39/ +f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f8/Pz//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////wAAA +H9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH +9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9 +/AH9/AH9/AH9/AH9/AH9/AFBQAGBgVP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////wAAAP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AJ+fAGBgVP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBA +AP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AEBAAP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AAAAA +P//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AA +AAAP//AAAAAP//AH9/AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////wAAAP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAA +AP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AJ+fAGBgVP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAA +AAP//AAAAAP//AAAAAP//AH9/AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AJ+fAGBgVP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wAAAP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AJ+fAGBgVP///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////wAAAP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AJ+fAGBgVP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AAAAAP/ +/AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAA +AP//AAAAAP//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////wAAAP//A +P//AP//AP//AP//AP//AP//ACAgAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP +//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AL+/AP//AP//AP//AP/ +/AP//AP//AP//AP//AJ+fAGBgVP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AAAAAP// +AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAAP//AAAAA +P//AAAAAP//AAAAAP//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////wAAAP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP/ +/AP//AP//AJ+fAGBgVP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////wAAAP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AO/vAP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AO/vAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AJ+fAGBgVP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP// +AP//ACgoAOfnAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//ABAQAP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////wAAAP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//ACAgAN/fAP//AP//AP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP// +AP//AP//AJ+fAGBgVP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//ACAgAN/fAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////wAAAP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//ACAgAN/fAP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AJ+fAGBgVP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//ACAgAN/fAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AAAAAP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////wAAAP//AP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//ACAgAN/fAP//AP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AAAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AJ+fAGBgVP//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////wAAAP//AP//AP//AISECgcHAwAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUDPf3AP//AP//AJ+fAGBgVP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////wAAAP//AP// +AL+/AAAAAE1NCGNjV8DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwBgYGKioqMDAwMDAwMDAwMDAw +MDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwF +xcVX19Bv//AP//AJ+fAGBgVP///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////wAAAP//AP//AH5+Ax0dCM/PACgoGcDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM +DAwBgYGLe3t8DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAMDAwMDAwMDAwMDAwMD +AwMDAwMDAwMDAwMDAwMDAwMDAwJCQkDw8DP//AP//AJ+fAGBgVP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wAAAP//AP//AExMC0xM +C/f3AAcHA8DAwMDAwKKiojAwMDAwMDAwMDAwMDAwMDAwMAYGBpaWlgAAAMDAwAAAAMDAwAAAAMDAw +AAAAMDAwAAAAMDAwGFhYQAAADAwMDAwMDAwMDAwMDAwMDAwMJCQkMDAwMDAwMDAwMDAwLS0tA4OBf +//AP//AJ+fAGBgVP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////wAAAP//AP//AGZmBzQ0DN/fABsbD8DAwMDAwHh4eDY2NpCQkJCQkJC +QkJCQkJCQkJCQkIKCgsDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAALi4uJCQkJCQkJCQkJCQ +kJCQkJCQkEhISGBgYMDAwMDAwMDAwMDAwKKioiUlCv//AP//AJ+fAGBgVP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wAAAP//AP//A +JeXAAcHAqenAEBA +McDAwMDAwHh4eEhISMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw +MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwGBgYGBgYMDAwMDAwMDAwMDAwH5+flVVCv//AP//AJ ++fAGBgVP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////wAAAP//AP//APf3AB0dCAAAAEhISGBgYGBgYDw8PCQkJGBgYGBgYGBgYGBgYGB +gYGBgYGBgYGBgYGBgYGBgYGBgYDQ0NBsbG2BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBg +YDAwMDAwMGBgYGBgYGBgYFtbWCMjENfXAP//AP//AJ+fAGBgVP/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////wAAAP//AP//AP//AOfnA +I+PAH9/AH9/AH9/AFBQADAwAH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/ADIyABISAH +9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AH9/AEBAAEBAAH9/AH9/AH9/AIeHAN/fAP//AP/ +/AP//AJ+fAGBgVP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgAP//AP//AP// +AP//AP//AP//AP//AP//AP//AP//AP//AGNjACQkAP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AH9/AH9/AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////wAAAP//AP//AP//AP//AP//AP//A +P//AP//AJ+fAGBgAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AGNjACQkAP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AH9/AH9/AP//AP//AP//AP//AP//AP//AP//AP//AJ+ +fAGBgVP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgAP//AP//AP//AP//AP// +AP//AP//AP//AP//AP//AP//AGNjACQkAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +H9/AH9/AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////wAAAP//AP//AP//AP//AP +//AP//AP//AP//AJ+fAGBgAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AE9PADAwAP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AH9/AH9/AP//AP//AP//AP//AP//AP//AP// +AP//AJ+fAGBgVP/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgAP//AP//AP//A +P//AP//AP//AP//AP//AP//AP//AP//AE9PADAwAP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AH9/AH9/AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////wAAAP//AP//AP//AP//AP//AP//AP +//AP//ANfXAKenAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AGtrAFNTAP//AP//AP/ +/AP//AP//AP//AP//AP//AP//AP//AP//AL+/AL+/AP//AP//AP//AP//AP//AP//AP//AP//AJ+f +AGBgVP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////wAAAP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//A +P//AP//AP//AP//AP//AP//AH9/AH9/AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP//AP +//AP//AP//AP//AP//AP//AP//AP//AP//AP//AJ+fAGBgVP///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////wAAAL+/AL+/AL+/AL+/AL+ +/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AF9fAF9fAL+/ +AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/AL+/A +L+/AHh4AGBgVP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////3BwYkBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAM +EBAMEBAMEBAMEBAMCAgGCAgGEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAME +BAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMEBAMLe3sf///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////39/f39/f/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///39/f////39/f////39/f39/fz8/P////39/f////39/f////+/v7////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////39/f////wAAAP///wAAAP///wAAAJ+fnwAAA +P///wAAAP///wAAAP//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////wAAAP +///wAAAP///wAAAGBgYAAAAP///wAAAP///wAAAP///9/f3////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////5+fn////0BAQP///0BAQP///xgYGJ+fn0BAQP///0BAQ +P///0BAQP//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8/Pz39/f39/f39/f39/f39/f39/f2d +nZ0dHRywsLCAgIBAQEAAAAAAAAAUFBSAgICAgIDQ0ND8/P1tbW2tra39/f39/f39/f39/f39/f6+v +r//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////xsbGw4ODhcXFxcXFxcXFxcXFwAAACUlJVhYWIeHh56enr6+vt/f38HBwc3Nzaampq +GhoXx8fGVlZTg4OB4eHgAAABQUFBcXFxcXFxcXFxAQEGdnZ////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wAAAHh4eHx8fICAgIWFhYmJib29vcLCwsjIyM7 +OztPT09vb2+Hh4ebm5uPj4+Dg4NjY2NHR0cvLy8bGxsDAwLq6uo2NjYODg39/f3t7e0pKShoaGpub +m//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////wAAAKCgoKampqurq7Gxsbe3t8jIyM3NzcbGxsjIyNHR0cXFxcfHx8nJycjIyMbGxsbGxtDQ0M +fHx8nJycnJycLCwrW1ta+vr6mpqaSkpGNjYz8/P0FBQZubm////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////1dXV8HBwcPDw8TExMXFxcTExLy8vLq6 +uq/Pr3TkdMbWxlLxUt/f30j3SOLi4lPyU8raynXldbLSssXFxbq6urq6usfHx8XFxcPDw8LCwrKys +k9PT5qamkFBQZubm///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////////////////////////////wAAA +FVVVVNTU5aWlrGxsbe3t729vcLCwpbWljTzNLnZuRv6G9/f3wD/ANvj2xz7HLXdtTTzNJjYmMbGxs +DAwLq6urW1ta+vr6mpqaSkpGNjYz09PaOjo5qamgAAAP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////wAAAAAAAAAAAFVVVbGxsbe3t5+fn3l5eUJiQgfe +BwAXAACfAAAoAACPAABYAAB4AABwAAd3BxOyE1dXV4qKiqioqLW1ta+vr6mpqaSkpGNjY0JCQpeXl +6OjowAAAP//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///wQEBBkZGRcXFwAAAAAAAAAAACQkJFdXV4+Pj7Ozs+bm5ubm5ubm5ubm5ubm5ubm5ubm5tjY2Ky +srIGBgUFBQRMTEwAAAAAAABERES0tLRwcHFBQUJqampeXlwAAAP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////7+/v3BwcCgoKAAAAAAAABgYGHBwcM/Pz/////////////////// +/////////////////9fX13h4eCgoKAAAAAAAAAgICFhYWKenp/f39//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////7W1tS0tLaKioubm5ubm5ubm5ubm5ubm5 +ubm5ubm5ubm5ubm5ubm5ubm5ubm5tjY2Obm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5tDQ0KysrKysrO +Dg4K+vr5qamgAAAP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////9fX10BAQEBAQI+Pj9fX1////////+fn5 +4+PjzAwMEhISOfn5////////////////////+/v72BgYCgoKIeHh9fX1/////////f396enp1hYWD +AwMMfHx////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////8 +/Pzzw8PNjY2Obm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5g4ODubm5ubm5ubm5ubm5ub +m5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ufn56+vrwAAAP////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////5+fnzAwML+/v////////////////////////////////7e3tygoKKenp////////////7e3 +tyAgIJ+fn////////////////////////////////9fX1zg4OIeHh//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn5////7+/v////7+/v////7+/v// +//7+/v////7+/v////7+/v////7+/v/////////////////////////////////////////////// +/////////////////////////////////////////////8/Pzzw8PHNzc3Nzc3Nzc3Nzc3Nzc3Nzc +3Nzc3Nzc3Nzc3Nzc3NzcwAAAHNzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3 +NzcwAAAP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////5+fn2BgYPf39///////////////////// +///////////////////+/v71hYWJ+fn////7e3t1BQUO/v7////////////////////////////// +//////////////3h4eH9/f/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///9/f3/ +///////////////////////////////////////////////////////////////////////////// +//////////////8/Pz39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/fwAAAH9/f39/f39/ +f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f6+vr//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////7e3t1BQUPf39////////////////////////////////////////////////////0hISI+Pj +0BAQO/v7////////////////////////////////////////////////////3h4eIeHh///////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////5+fn////wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wAAAP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8/Pzzg4OPf39///////////////////////////////////// +////////////////////f393BwcO/v7////////////////////////////////////////////// +//////////////1hYWKenp/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///+fn5///////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////wgICPf39/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////f39zg4OM/P +z//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////+fn5zAwMOfn5///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////yAgIN/f3////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////39/f39/f////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////5+fn2BgYP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////yAgIN/f3//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////+fn5yAgI +Pf39///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////zAwMM/ +Pz/////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////6qqqnl5eXZ2dtjY2P/////////////////////// +/////////////// +/////////////////////////////////////////////////////////////////////4+Pj39/f +39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f3 +9/f39/f39/fxAQEG9vb39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39 +/f39/f39/f39/f39/f39/f8/Pz/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////39/f39/f////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////6+vr1BQUP/////////////////////////////////////////////// +////////////////////////////////////////////////////////////////zk5O0RIVWhqcj +U1Ntra2v///////////////////////////////////////////////////////////////////// +//////////////////////////////////wAAAAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/ +AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAAQAABvAAB/AAB/AAB/AAB/A +AB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AABQAFRgVP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////f39yAgIOfn5//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////xgYGOfn5// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////zk5O2Fyp7nE45mevDEyNdra2v/////////////////////// +////////////////////////////////////////////////////////////////////////////w +AAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////+/v739/f0BAQBgYGDg4OFBQUP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////4eHhygoKBAQEDAwMGhoaN/f3///////////////////// +///////////////////////////////////////////////////////////////////////zg5Opq +erNve5rS62FNitjIyNNbW1v////////////////////////////////////////////////////// +/////////////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////+/v7zAwMH9/f7+/v+fn57+/v+/v7//////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////f397+/v+/v78/Pz5e +XlzAwMLe3t/////////////////////////////////////////////////////////////////// +/////////////////////zk5O3SBqcXN5MrM1mt5z5yftDIyNdra2v/////////////////////// +////////////////////////////////////////////////////////////////////wAAAAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADvAABgAAD/AAD/AAD +/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/AAC/AACPAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////+/v70BAQM/ +Pz/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////+/v70BAQMfHx///////////////////// +///////////////////////////////////////////////////////////////zk5O2Fyp7nE47C +21snKzsHDzmt2tTEyNdra2v////////////////////////////////////////////////////// +/////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAAgAADfAAD/AAD/AAD/AAD/AA +CfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////f391BQULe3t///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////9fX1zAwMPf39//////////////////////////////////////////////////// +////////////////////////////zk5OqysrObm5sjK2LG2zqmvzn6Kz1NitjMzNNra2v//////// +///////////////////////////////////////////////////////////////////////////wA +AAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/ +AAD/AAD/AAD/AAD/AAAwAADPAAD/AAD/AAD/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////6enp1hY +WP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////4+Pj3BwcP///////// +//////////////////////////////////////////////////////////////////////zk5O2Fy +p7nE48PG1q6zzlNlz6asznOAz7OzszEyNdra2v/////////////////////////////////////// +////////////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD +/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////0BAQL+/v///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////f39xgYGO/v7//////////////////////////////////////////////////////// +////////////////////zk5O3SBqcXN5KWs156lzn6Kz36Kz8nKzs3NzVNitjEyNdjY2P//////// +///////////////////////////////////////////////////////////////////wAAAAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/ +AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AACfAFRgVP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////8/PzzAwMP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////1hYWKenp////////////// +//////////////////////////////////////////////////////////////zk5OpqerNve5snM +2U9i0La5zqmvzqKpz7a5zmZ2z2hztTMzNNra2v/////////////////////////////////////// +////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAA+AAC/AAD/AAD/AAD/AAD/AAC +fAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////39/f39/f////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////5+fn2BgYP//////////////////////////////////////////////// +///////////////////////////zk5O2Fyp7nE47q+1p6lzq6zzra5zqKpz1dp0LG2zoaRz5yftDE +yNdra2v///////////////////////////////////////////////////////////////////wAA +AAD/AAD/AAD/AAD/AAD/AADXAAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AABwAAAQAAB/A +AB/AAB/AAB/AAB/AAAKAABUAAB/AAB/AAB/AAB/AABQAAAwAAB/AAB/AAB/AAB/AAB/AAB/AAB/AA +B/AAB/AAB/AACXAAD/AAD/AACfAFRgVP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////1hYWKenp//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+/v7xAQEP////// +/////////////////////////////////////////////////////////////////////zk5OoaPq +c/U5Le718XGzc3N +zW58z56lzn6Kz56lzsnKzq6zzlNitjEyNdra2v/////////////////////////////////////// +////////////////////////wAAAAD/AAD/AAD/AAD/AADfAAUOBQYOBjY2NmBgYGBgYGBgYGBgYG +BgYGBgYGBgYGBgYFRUVAwMDGBgYGBgYGBgYGBgYGBgYBMTE0hISGBgYGBgYGBgYGBgYDw8PCQkJGB +gYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYDxEPAh1CAD/AACfAFRgVP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////zg4OMfHx////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////yAgIN/f3///////////////////////////////////////////////////// +///////////////////zk5OoaPqc/U5NPT2K6zzn6Kz56lzk9i0M3Nzb2/zYaRz6mvznOAz0dMZ3N +zc////////////////////////////////////////////////////////////////wAAAAD/AAD/ +AAD/AAD/AACPAAYWBgC3ACo6KsDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwKioqBgYGMDAwMDAwMDAw +MDAwMDAwJycnLS0tMDAwMDAwMDAwMDAwIyMjEhISMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM +DAwLS0tAUOBQD/AACfAFRgVP///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////xgYGOfn5//////////// +////////////////////////////////////////////////////////////////////////39/f/ +///39/f////39/f////39/f////39/f////39/f////39/f////////////////////////////// +//////////////////////////////////////////////////////////ygoKNfX1/////////// +/////////////////////////////////////////////+/v77+/v7+/v7+/vy4uMGFyp7nE46201 +ra5zldp0I6Yz56lzq2trXZ8mmpymz5Mm46Pmjw+TVZWVr+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/vwAAAAC/AAC/AAC/AAC/AAdGBwkzCQDKAAsVC8DAwMDAwLS +0tJCQkJCQkJCQkJCQkJCQkH5+fhISEsDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwICA +gDY2NpCQkJCQkJCQkJCQkJCQkKKiosDAwMDAwMDAwMDAwMDAwBkoGQDPAACfAFRgVP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////f39wgICP////////////////////////////////////////////////// +/////////////////////////////////2BgYP///wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///wAAAP///0BAQP//////////////////////////////////////////////////////////// +///////////////////////yAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAABAQEEBAQEBAQEBAQBAQEJWZp9ve5ra82GZ2z66zzoaRz72/zUdHRxQZNCgpNCAjNC8w +MxgYGhwcHEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAA +ABAAABAAABAAABAAAMTAwMTAwCVAAcOB8DAwMDAwGBgYBgYGDAwMDAwMDAwMDAwMDAwMDAwMEhISM +DAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAGZmZjAwMDAwMDAwMDAwMDAwMCoqKhgYGMDAwMD +AwMDAwMDAwMDAwB4uHgDHAACfAFRgVP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////wAAAP/////////////////////// +////////////////////////////////////////////////////////////////wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////////// +//////////////////////////////////////////////////yAgIN/f3/////////////////// +/////////////////////////////////////////////////////zk5O3SBqcXN5MvN1mZ2z66zz +snKzp6lzn6Kz56lzm58z83NzcnKzkxQZ3Jycv//////////////////////////////////////// +///////////////////////wAAAAD/AAD/AAD/AAD/AACHAAcWBwDHAB4uHsDAwMDAwGBgYGBgYMD +AwMDAwMDAwMDAwMDAwMDAwMDAwGBgYMDAwGBgYMDAwGBgYMDAwGBgYMDAwGBgYMDAwMDAwMDAwMDA +wMDAwMDAwMDAwKioqBgYGMDAwMDAwMDAwMDAwLq6ugYOBgD3AACfAFRgVP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////xAQEO/v7/////////////////////////////////////////////////////// +/////////////////////////6+vr////39/f////39/f////39/f////39/f////39/f////39/f +////5+fn///////////////////////////////////////////////////////////////////// +///////////////wAAAP///////////////////////////////////////////////////////// +//////////////////zk5O2Fyp7nE47C21sXGzb2/zYaRz7G2zldp0KKpz7a5zq6zzp6lzlNWZ3Nz +c////////////////////////////////////////////////////////////////wAAAAD/AAD/A +AD/AAD/AADPAAMHAwklCUxPTJCQkJCQkEhISEhISJCQkJCQkJCQkJCQkJCQkJCQkKioqKioqKioqK +ioqKioqHJycpaWlqioqKioqKioqKioqJmZmZCQkJCQkJCQkJCQkJCQkH5+fhISEpCQkJCQkJCQkJC +QkGJnYgxUDAD/AACfAFRgVP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////ygoKNfX1///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////9/f3yAgIP/////////////// +////////////////5+fn////39/f////39/f////39/f////7+/v////yoqKgMDBCorLTY2NyQkKE +5OV7a5znaDz2Z2z7a5zqaszqmvzra5zk9i0FpcZ29vb////////0BAQP///0BAQP///0BAQP///0B +AQP///////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AACvAAw8DAw8DAw8DAw8DAYe +BgYeBgw8DAw8DAw8DAw8DAw8DAw8DAw8DAw8DAw8DAw8DAw8DAMPAwktCQw8DAw8DAw8DAw8DAw8D +Aw8DAw8DAw8DAw8DAw8DAs0CwIHAgw8DAw8DAw8DAw8DAplCgD3AAD/AACfAFRgVP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////3BwcI+Pj//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////7+/v0BAQP///////////////////////////////////wAAAP///wAAAP// +/wAAAP///wAAAP///////wQEBAoKCg8PDw8PDw8PDwcHBzlDgK6zzmZ2z83NzcXGzX6Kz36Kz56lz +kdMZ3Nzc////yAgIP///wAAAP///wAAAP///wAAAP///5+fn////////////////////////wAAAA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////7+/v0BAQP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////3BwcI+Pj//////////////////////// +////////0BAQP///wAAAP///wAAAP///wAAAP///39/f////5OTkwcHB5SUlKysrKysrDk5OQ8PEF +BXf8XGzc3NzWZ2z66zzldp0L2/zVpcZ3Nzc////////wAAAP///wAAAP///wAAAP///wAAAP///// +//////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////f39xgYGO/v7//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////f39yAgIOfn5////////////////////////////////////0BAQP///0BAQP///0BAQP// +/0BAQP///////////6ioqA8PD8rKyubm5t/f3zk5ORAQEGhrf7a5zmZ2z3aDz7a5zsHDzldZZ29vb +////4+Pj////39/f////39/f////39/f////8/Pz////////////////////////wAAAAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AACfAFRgVP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////2hoaJeXl////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////6enp1hYWP//////////////////// +///////////////////////////////////////////////////////////////6ioqA8PD8rKyub +m5t/f3zk5ORAQEDlDgLG2zoaRz72/zcXGzUxQZ3Nzc/////////////////////////////////// +/////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/A +AB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////f39zAwMNfX1///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////zAwMM/Pz//////////////////////////////////////////////////////// +/////////////// +/////////////////6ioqA8PD8rKyubm5t/f3zk5OQ8PEGNnf8nKzq6zzmZ2z19gZ3Jycv/////// +////////////////////////////////////////////////////////wAAAAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB +AAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAAgAAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AACfAFRgVP/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8fHx0BAQPf39////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////3h4eH9/f///////////////////////////////// +///////////////////////////////////////////////////////////////6ioqA8PD8rKyub +m5t/f3zk5ORAQEFddf7G2zmZ2z0xQZ29vb/////////////////////////////////////////// +/////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACPAACPAAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABQAADPAAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AADnAAA4AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////5+fn0BAQNfX1///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////9/f31hY +WGhoaP/////////////////////////////////////////////////////////////////////// +////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5OQ8QEDlDgL2/zUxQZ3Nzc/ +///////////////////////////////////////////////////////////////wAAAAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AABYAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/ +AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AAC3AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AACfAFRgVP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////7+/vygo +KDAwMEBAQAgICHh4eP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////6enpwAAADAwMCAgICAgIKenp////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/6ioqA8PD8rKyubm5t/f3zk5OQ8PEHV2fmFiZ3BwcP/////////////////////////////////// +////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AA +AAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD +/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8/Pz7+/v+fn5xgYGPf39///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////zAwMM/Pz8/Pz9/f3/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5ORAQEC8yP3Fxcf//////// +///////////////////////////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAAgAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/ +AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AACfAAD/AAD/AAD/AAD/AAD/AAD/A +AD/AACfAFRgVP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////2hoaJeXl//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////8/PzzAwMP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/6ioqA8PD8rKyubm5t/f3zk5OQkJCT4+Pv/////////////////////////////////////////// +////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AAC/AAD/AA +C/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD +/AAC/AAD/AAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8/PzzAwMP///////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////1hYWKenp//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////6ioqA8PD8rKyubm5t/f3zk5OQQEBGx +sbP///////////////////////////////////////////////////////////wAAAAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AACfAFRgVP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////3BwcI+Pj///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////8/Pzzg4OPf39/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////6ioqAgICA8PDw8PDw0NDQEBAR8fH///////////////////////////////// +///////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////+/v7ygoKOfn5////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////zAwMM/Pz//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8PDw4+Pj4+Pj4+Pj4uLi9LS0v///// +//////////////////////////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AACfAFRgVP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////5+fn2BgYP//////////////////////////////////////////////////////// +///////7+/v////////////////////////////////////////////////////////////////4e +Hh3h4eP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////39/f39/f/////////// +/////////////////////////////////////////////5+fnzAwMH9/f//////////////////// +////////////////////////////////////7e3t1BQUPf39///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////wAAAAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AACfAFRgVP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////2hoaI+Pj////////////////////////////////////////// +//////5+fn2BgYP///39/f3h4eP///////////////////////////////////////////////7e3 +t1BQUPf39//////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AAB/AAD/AAB/AAD/AAB +/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////2hoaEhISO/v7/////// +/////////////////////////+/v72hoaGBgYP///////////3h4eDg4OOfn5//////////////// +/////////////////f3939/f1BQUPf39///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AA +AAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AACfAFRgVP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////7e3tygoKH9/f9fX1////////////////9fX14+PjygoKJeXl// +//////////////////8fHxygoKHh4eNfX1////////////////+fn55+fnzAwMH9/f/f39/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAD/AAAAAAD/AAAA +AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/A +AAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////+fn5 +39/fygoKCgoKEBAQEBAQCAgICgoKHBwcOfn5////////////////////////////+/v74eHhygoKC +goKEBAQEBAQDAwMBgYGGBgYNfX1////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////wAAAAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAA +AAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AACfAFRgVP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////9fX17+/v7+/v9/f3////////////////////////// +//////////////////////////9fX17+/v7+/v8/Pz/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAD/AAC/AAD/AAC/AAD/AAC/ +AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AACfAFRgVP/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////wAAAAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AACfAFRg +VP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////wAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////wAAAAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +ACfAFRgVP//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////wAAAAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AA +B/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB +/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AABQAFRgVP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////4+Pj39/f39/f39/f39/f39/f39/f39/f39 +/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/ +f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f8/Pz +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////w4AAAAUAAAAAAAAABAAAAAUAAAA +2003-11-09T10:53:13 +2003-12-23T08:57:50 +2003-11-09T15:46:57 +2003-11-09T10:53:13 + + +9 +295 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +18 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +20 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +3 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +3 +1 +0 +2 +0 +0 +1 +2 +0 + + + + +1 +1 +1 +0 + + +1 +#8a8aff +31 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0016666666666667 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + + +2 +0 +1 +0 + + +2 + + + +Visio Network Solutions +
http://officeupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + + +11 +8.5 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Apple +255 +0 +1 +1 +0 +0 +1 +1 +Apple +0 + + +Digital +255 +0 +1 +1 +0 +0 +1 +1 +Digital +0 + + +Cray +255 +0 +1 +1 +0 +0 +1 +1 +Cray +0 + + +IBM +255 +0 +1 +1 +0 +0 +1 +1 +IBM +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +6.1 +4.75 +1.8 +1.7 +0.9 +0.85 +0 +0 +0 +0 + + +3 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +1.7 + + +0 +1.7 + + +0 +0 + + + + + +6.1 +2.15 +1.8 +1.7 +0.9 +0.85 +0 +0 +0 +0 + + +7 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +1.7 + + +0 +1.7 + + +0 +0 + + + + + +2.05 +4.4392857142857 +2.3 +1.75 +1.15 +0.875 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0.875 +0 +0 +0 +0 + + + +0.8117643 +1.75 +0 +0 +0 +0 + + + +1.48833 +1.75 +0 +0 +0 +0 + + + +0.8117643 +0 +0 +0 +0 +0 + + + +1.4882357 +0 +0 +0 +0 +0 + + + +2.3 +0.875 +0 +0 +0 +0 + + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.33823529411765 +0.45139244650857 + + +1.15 +0.19195334392518 +0.70682204248263 +0.01660909406747 +0 +0.61848739495799 + + +1.9617647058824 +0.45139244650857 +1.5931779575174 +0.016609094067465 +0 +0.61848739495799 + + +2.3 +0.875 +2.1951125414236 +0.52912588091909 +0 +0.61848739495799 + + +1.9617647058824 +1.2986075534914 +2.1951125414236 +1.2208741190809 +0 +0.61848739495799 + + +1.15 +1.5580466560748 +1.5931779575174 +1.7333909059325 +0 +0.61848739495799 + + +0.33823529411765 +1.2986075534914 +0.70682204248263 +1.7333909059325 +0 +0.61848739495799 + + +0 +0.875 +0.10488745857643 +1.2208741190809 +0 +0.61848739495799 + + +0.33823529411765 +0.45139244650857 +0.10488745857643 +0.52912588091909 +0 +0.61848739495799 + + +Internet + + + +4.03125 +4.25 +0.0875 +0.7 +0.04375 +0.35 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.125 +-0.2 +0.04375 +0.35 +4 +2 +0 +Reposition Text + + +0 +0 +0 +1 +0 +0 + + +0.30625 +0.21875 +0 +0 +0 +0 + + + +0.30625 +0.525 +0 +0 +0 +0 + + + +0 +0.525 +0 +0 +0 +0 + + + +0.04921875 +0 +0 +0 +0 +0 + + + +0.2625 +0.91875 +0 +0 +0 +0 + + + + + +0.30625 +0.546875 +0.4375 +1.09375 +0.21875 +0.546875 +0 +0 +0 +0 + + +0 + + +#d0624f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.21875 +0.546875 +0.4375 +1.09375 +0.21875 +0.546875 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.4375 +1.09375 + + +0 +0.65625 + + +0 +0 + + + + + +0.2625 +0.57421875 +0.525 +0.9296875 +0.2625 +0.46484375 +0 +0 +0 +0 + + +0 + + +0.2625 +0.46484375 +0.525 +0.9296875 +0.2625 +0.46484375 +0 + + +1 +0 +0 +0 + +0 +0.4375 + + +0.0875 +0.4375 + + +0.1421875 +0.4921875 + + + +1 +0 +0 +0 + +0.1421875 +0.4921875 + + +0.196875 +0.546875 + + + +1 +0 +0 +0 + +0.196875 +0.546875 + + +0.2515625 +0.6015625 + + + +1 +0 +0 +0 + +0.2515625 +0.6015625 + + +0.30625 +0.65625 + + + +1 +0 +0 +0 + +0.30625 +0.65625 + + +0.3609375 +0.7109375 + + + +1 +0 +0 +0 + +0.3609375 +0.7109375 + + +0.415625 +0.765625 + + + +1 +0 +0 +0 + +0.415625 +0.765625 + + +0.4703125 +0.8203125 + + + +1 +0 +0 +0 + +0 +0.328125 + + +0.0875 +0.328125 + + +0.1421875 +0.3828125 + + + +1 +0 +0 +0 + +0.1421875 +0.3828125 + + +0.196875 +0.4375 + + + +1 +0 +0 +0 + +0.196875 +0.4375 + + +0.2515625 +0.4921875 + + + +1 +0 +0 +0 + +0.2515625 +0.4921875 + + +0.30625 +0.546875 + + + +1 +0 +0 +0 + +0.30625 +0.546875 + + +0.3609375 +0.6015625 + + + +1 +0 +0 +0 + +0.3609375 +0.6015625 + + +0.415625 +0.65625 + + + +1 +0 +0 +0 + +0.415625 +0.65625 + + +0.4703125 +0.7109375 + + + +1 +0 +0 +0 + +0.4703125 +0.7109375 + + +0.525 +0.765625 + + + +1 +0 +0 +0 + +0 +0.21875 + + +0.0875 +0.21875 + + +0.1421875 +0.2734375 + + + +1 +0 +0 +0 + +0.1421875 +0.2734375 + + +0.196875 +0.328125 + + + +1 +0 +0 +0 + +0.196875 +0.328125 + + +0.2515625 +0.3828125 + + + +1 +0 +0 +0 + +0.2515625 +0.3828125 + + +0.30625 +0.4375 + + + +1 +0 +0 +0 + +0.30625 +0.4375 + + +0.3609375 +0.4921875 + + + +1 +0 +0 +0 + +0.3609375 +0.4921875 + + +0.415625 +0.546875 + + + +1 +0 +0 +0 + +0.415625 +0.546875 + + +0.4703125 +0.6015625 + + + +1 +0 +0 +0 + +0.4703125 +0.6015625 + + +0.525 +0.65625 + + + +1 +0 +0 +0 + +0 +0.109375 + + +0.0875 +0.109375 + + +0.1421875 +0.1640625 + + + +1 +0 +0 +0 + +0.1421875 +0.1640625 + + +0.196875 +0.21875 + + + +1 +0 +0 +0 + +0.196875 +0.21875 + + +0.2515625 +0.2734375 + + + +1 +0 +0 +0 + +0.2515625 +0.2734375 + + +0.30625 +0.328125 + + + +1 +0 +0 +0 + +0.30625 +0.328125 + + +0.3609375 +0.3828125 + + + +1 +0 +0 +0 + +0.3609375 +0.3828125 + + +0.415625 +0.4375 + + + +1 +0 +0 +0 + +0.415625 +0.4375 + + +0.4703125 +0.4921875 + + + +1 +0 +0 +0 + +0.4703125 +0.4921875 + + +0.525 +0.546875 + + + +1 +0 +0 +0 + +0 +0 + + +0.0875 +0 + + +0.1421875 +0.0546875 + + + +1 +0 +0 +0 + +0.1421875 +0.0546875 + + +0.196875 +0.109375 + + + +1 +0 +0 +0 + +0.196875 +0.109375 + + +0.2515625 +0.1640625 + + + +1 +0 +0 +0 + +0.2515625 +0.1640625 + + +0.30625 +0.21875 + + + +1 +0 +0 +0 + +0.30625 +0.21875 + + +0.3609375 +0.2734375 + + + +1 +0 +0 +0 + +0.3609375 +0.2734375 + + +0.415625 +0.328125 + + + +1 +0 +0 +0 + +0.415625 +0.328125 + + +0.4703125 +0.3828125 + + + +1 +0 +0 +0 + +0.4703125 +0.3828125 + + +0.525 +0.4375 + + + +1 +0 +0 +0 + +0.1421875 +0.4921875 + + +0.1421875 +0.6015625 + + + +1 +0 +0 +0 + +0.1421875 +0.2734375 + + +0.1421875 +0.3828125 + + + +1 +0 +0 +0 + +0.1421875 +0.0546875 + + +0.1421875 +0.1640625 + + + +1 +0 +0 +0 + +0.196875 +0 + + +0.196875 +0.109375 + + + +1 +0 +0 +0 + +0.196875 +0.4375 + + +0.196875 +0.546875 + + + +1 +0 +0 +0 + +0.196875 +0.21875 + + +0.196875 +0.328125 + + + +1 +0 +0 +0 + +0.2515625 +0.6015625 + + +0.2515625 +0.7109375 + + + +1 +0 +0 +0 + +0.2515625 +0.3828125 + + +0.2515625 +0.4921875 + + + +1 +0 +0 +0 + +0.2515625 +0.1640625 + + +0.2515625 +0.2734375 + + + +1 +0 +0 +0 + +0.30625 +0.109375 + + +0.30625 +0.21875 + + + +1 +0 +0 +0 + +0.30625 +0.546875 + + +0.30625 +0.65625 + + + +1 +0 +0 +0 + +0.30625 +0.328125 + + +0.30625 +0.4375 + + + +1 +0 +0 +0 + +0.3609375 +0.7109375 + + +0.3609375 +0.8203125 + + + +1 +0 +0 +0 + +0.3609375 +0.4921875 + + +0.3609375 +0.6015625 + + + +1 +0 +0 +0 + +0.3609375 +0.2734375 + + +0.3609375 +0.3828125 + + + +1 +0 +0 +0 + +0.415625 +0.21875 + + +0.415625 +0.328125 + + + +1 +0 +0 +0 + +0.415625 +0.65625 + + +0.415625 +0.765625 + + + +1 +0 +0 +0 + +0.415625 +0.4375 + + +0.415625 +0.546875 + + + +1 +0 +0 +0 + +0.4703125 +0.6015625 + + +0.4703125 +0.7109375 + + + +1 +0 +0 +0 + +0.4703125 +0.3828125 + + +0.4703125 +0.4921875 + + + +1 +0 +0 +0 + +0.4703125 +0.8203125 + + +0.4703125 +0.9296875 + + + +1 +0 +0 +0 + +0.4703125 +0.8203125 + + +0.525 +0.875 + + + + + +0.04375 +0.328125 +0.0875 +0.65625 +0.04375 +0.328125 +0 +0 +0 +0 + + +0 + + +#dc7e5f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.04375 +0.328125 +0.0875 +0.65625 +0.04375 +0.328125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0 +0.65625 + + +0.0875 +0.65625 + + +0.0875 +0 + + +0 +0 + + + + + +0.35 +0.896875 +0.4375 +0.48125 +0.21875 +0.240625 +0 +0 +0 +0 + + +0 + + +0.21875 +0.240625 +0.4375 +0.48125 +0.21875 +0.240625 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.4375 +0.48125 + + +0 +0.04375 + + +0 +0 + + + + + +0.04375 +0.678125 +0.175 +0.04375 +0.0875 +0.021875 +0 +0 +0 +0 + + +0 + + +0.0875 +0.021875 +0.175 +0.04375 +0.0875 +0.021875 +0 + + +0 +0 +0 +0 + +0 +0.04375 + + +0 +0 + + +0.175 +0 + + +0.175 +0.04375 + + +0 +0.04375 + + + + + +0.2625 +0.91875 +0.6125 +0.4375 +0.30625 +0.21875 +0 +0 +0 +0 + + +0 + + +0.30625 +0.21875 +0.6125 +0.4375 +0.30625 +0.21875 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.6125 +0.4375 + + +0.175 +0 + + +0 +0 + + + + + +0.04375 +0.328125 +0.0875 +0.4375 +0.04375 +0.21875 +0 +0 +0 +0 + + +0 + + +0.04375 +0.21875 +0.0875 +0.4375 +0.04375 +0.21875 +0 + + +1 +0 +0 +0 + +0.0875 +0.4375 + + +0 +0.4375 + + + +1 +0 +0 +0 + +0.0875 +0.328125 + + +0 +0.328125 + + + +1 +0 +0 +0 + +0.0875 +0.21875 + + +0 +0.21875 + + + +1 +0 +0 +0 + +0.0875 +0.109375 + + +0 +0.109375 + + + +1 +0 +0 +0 + +0.0875 +0 + + +0 +0 + + + + + +0.2625 +0.56875 +0.6125 +1.1375 +0.30625 +0.56875 +0 +0 +0 +0 + + +0 + + +0.30625 +0.56875 +0.6125 +1.1375 +0.30625 +0.56875 +0 + + +0 +0 +0 +0 + +0.04375 +0 + + +0.04375 +0.65625 + + +0 +0.65625 + + +0 +0.7 + + +0.4375 +1.1375 + + +0.6125 +1.1375 + + +0.6125 +1.09375 + + +0.56875 +1.05 + + +0.56875 +0.4375 + + +0.13125 +0 + + +0.04375 +0 + + + + + +0 +0 +0.62969292634722 +0.25555555555556 +-0.125 +0.32777777777778 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.31484646317361 +0.12777777777778 +0.62969292634722 +0.25555555555556 +0.31484646317361 +0.12777777777778 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +0.62969292634722 +0 + + +0.62969292634722 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Firewall + + + + + +6.0821428571429 +3.4 +1.05 +0.2625 +0.525 +0.13125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.525 +-0.12777777777778 +0.525 +0.13125 +3 +2 +0 +Reposition Text + + +0 +0 +0.5 +1 +0 +0 + + +0.525 +0.13125 +0 +0 +0 +0 + + + +1.115625 +0.196875 +0 +0 +0 +0 + + + +0 +0.196875 +0 +0 +0 +0 + + + +0.525 +0 +0 +0 +0 +0 + + + +0.590625 +0.328125 +0 +0 +0 +0 + + + + + +0.598828125 +0.196875 +1.16484375 +0.39375 +0.582421875 +0.196875 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.582421875 +0.196875 +1.16484375 +0.39375 +0.582421875 +0.196875 +0 + + +0 +0 +0 +0 + +0 +0.0328125 + + +0 +0 + + +1.00078125 +0 + + +1.00078125 +0.0328125 + + +0 +0.0328125 + + + +0 +0 +0 +0 + +1.00078125 +0 + + +1.03359375 +0.0328125 + + +1.00078125 +0.0328125 + + +1.00078125 +0 + + + +0 +0 +0 +0 + +1.0335937508471 +0.2625 + + +1.16484375 +0.39375 + + +1.1648437494352 +0.1640625 + + +1.0335937502824 +0.0328125 + + +1.0335937508471 +0.2625 + + + + + +0.59062500028238 +0.28710136414338 +1.1812499994352 +0.21329727171324 +0.59062499971762 +0.10664863585662 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.59062499971762 +0.10664863585662 +1.1812499994352 +0.21329727171324 +0.59062499971762 +0.10664863585662 +0 + + +0 +0 +0 +0 + +1.1812499994352 +0.21329727171324 + + +0.13124999943524 +0.21329727171324 + + +0 +0.082047271713236 + + +0 +0.016422271713236 + + +1.05 +0.016422271713236 +0.50859375 +1.6021713236027E-5 +0 +1 + + +1.05 +0.082047271713236 + + +1.1812499994352 +0.21329727171324 + + + + + +1.115625 +0.205078125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.065625 +0.073828125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.13125 +0.13125 + + +0.13125 +0.14765625 + + +0 +0.01640625 + + +0 +0 + + + + + +1.115625 +0.196875 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.065625 +0.073828125 +0.13125 +0.14765625 +0.065625 +0.073828125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.13125 +0.13125 + + +0.13125 +0.14765625 + + +0 +0.01640625 + + +0 +0 + + + + + +0.590625 +0.196875 +1.18125 +0.39375 +0.590625 +0.196875 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.590625 +0.196875 +1.18125 +0.39375 +0.590625 +0.196875 +0 + + +1 +0 +0 +0 + +0.01640625 +0 + + +0.01640625 +0.0328125 + + +0 +0.0328125 + + +0 +0.2625 + + +0.13125 +0.39375 + + +1.18125 +0.39375 + + +1.18125 +0.1640625 + + +1.0171875 +0 + + +0.01640625 +0 + + + + + +0.52500000056476 +0.123046875 +1.05 +0.27890625 +0.525 +0.139453125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.139453125 +1.05 +0.27890625 +0.525 +0.139453125 +0 + + +0 +0 +0 +0 + +0.52499999941843 +0.2296875 + + +0.32812499941843 +0.2296875 +0 +0 +0.49946975323462 +3 + + +0.27885376335784 +0.27080873209719 +0 + + +0.1640625 +0.27890625 +0 + + +0.098437500000001 +0.27890625 +0.2954319565221 + + +0 +0.27890625 + + +0 +0.04921875 + + +0.098437499435237 +0.04921875 + + +0.16406249943524 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376367069 +0.041121232097194 +0 + + +0.32812499943524 +0 +0 + + +0.52499999943524 +0 +0.20403779671252 + + +0.721875 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.77114623491302 +0.032791039531086 +0 + + +0.88593749943524 +0.04921875 +0 + + +0.95156249943524 +0.04921875 +0.2954319565221 + + +1.0499999994352 +0.04921875 + + +1.05 +0.27890625 + + +0.9515625 +0.27890625 + + +0.8859375 +0.27890625 +0 +0 +0.49946975323462 +3 + + +0.77114623488563 +0.27084501407305 +0 + + +0.72187499941843 +0.2296875 +0 + + +0.52499999941843 +0.2296875 +0.20403779671252 + + + + + +0.52382812586429 +0.17730468749892 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.43945312586429 +0.17730468750108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.35507812586299 +0.18363281250108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.60820312586429 +0.17730468750108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.69257812586299 +0.18363281250108 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.01054687529823 +0.035859375 +0.02109375059646 +0.07171875 +0.01054687529823 +0.035859375 +0 + + +1 +0 +0 +0 + +0.02109375059646 +0.07171875 + + +0 +0.063281249999999 + + +0 +0 + + + + + +0.064453125564764 +0.21796875 +0.06328125 +0.0421875 +0.031640625 +0.02109375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.031640625 +0.02109375 +0.06328125 +0.0421875 +0.031640625 +0.02109375 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.06328125 +0 + + +0.06328125 +0.0421875 + + +0 +0.0421875 + + +0 +0 + + + + + +0.52500000056476 +0.11484375 +1.05 +0.065625 +0.525 +0.0328125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.0328125 +1.05 +0.065625 +0.525 +0.0328125 +0 + + +0 +0 +0 +0 + +0.52499999885366 +0.01640625 + + +0.32812499885366 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.27885376279307 +0.057527482097194 +0 + + +0.16406249943524 +0.065625 +0 + + +0.098437499435236 +0.065625 +0.2954319565221 + + +0 +0.065625 + + +0 +0.04921875 + + +0.098437500000001 +0.04921875 + + +0.1640625 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376423546 +0.041121232097194 +0 + + +0.328125 +0 +0 + + +0.525 +0 +0.20403779671252 + + +0.721875 +0 +0 +0 +0.49946975323462 +3 + + +0.77114623576454 +0.041121232097194 +0 + + +0.8859375 +0.04921875 +0 + + +0.9515625 +0.04921875 +0.2954319565221 + + +1.05 +0.04921875 + + +1.0499999994352 +0.065625 + + +0.95156249943524 +0.065625 + + +0.88593749943524 +0.065625 +0 +0 +0.49946975323462 +3 + + +0.77114623431962 +0.057128380362804 +0 + + +0.72187499885366 +0.01640625 +0 + + +0.52499999885366 +0.01640625 +0.20403779671252 + + + + + +0.52500000056476 +0.106640625 +1.05 +0.065625 +0.525 +0.0328125 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.525 +0.0328125 +1.05 +0.065625 +0.525 +0.0328125 +0 + + +0 +0 +0 +0 + +0.52499999885366 +0.01640625 + + +0.32812499885366 +0.01640625 +0 +0 +0.49946975323462 +3 + + +0.27885376279307 +0.057527482097194 +0 + + +0.16406249943524 +0.065625 +0 + + +0.098437499435236 +0.065625 +0.2954319565221 + + +0 +0.065625 + + +0 +0.04921875 + + +0.098437500000001 +0.04921875 + + +0.1640625 +0.04921875 +0 +0 +0.49946975323462 +3 + + +0.27885376423546 +0.041121232097194 +0 + + +0.328125 +0 +0 + + +0.525 +0 +0.20403779671252 + + +0.721875 +0 +0 +0 +0.49946975323462 +3 + + +0.77114623576454 +0.041121232097194 +0 + + +0.8859375 +0.04921875 +0 + + +0.9515625 +0.04921875 +0.2954319565221 + + +1.05 +0.04921875 + + +1.0499999994352 +0.065625 + + +0.95156249943524 +0.065625 + + +0.88593749943524 +0.065625 +0 +0 +0.49946975323462 +3 + + +0.77114623431962 +0.057128380362804 +0 + + +0.72187499885366 +0.01640625 +0 + + +0.52499999885366 +0.01640625 +0.20403779671252 + + + + + + +0 +0 +0.55579969718056 +0.25555555555556 +-0.24710015140972 +0.25555555555556 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.27789984859028 +0.12777777777778 +0.55579969718056 +0.25555555555556 +0.27789984859028 +0.12777777777778 +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +0.55579969718056 +0 + + +0.55579969718056 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Router + + + + + +6.0928571428571 +2.5107142857143 +1.5285714285714 +0.25 +0.76428571428571 +0.125 +-7.4014868308344E-17 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.76428571428571 +0.125 +1.5285714285714 +0.25 +0.76428571428571 +0.125 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0.0625 +0.125 +0 +0 +0 +0 + + + +1.5285714285714 +0.125 +0 +0 +0 +0 + + + +1 + + + +0.25481285714286 +0.5 +0.25481285714286 +0.125 +0 +0 +1 +Connect To Network Device + + +0.50947285714286 +-0.25 +0.50947285714286 +0.125 +0 +0 +1 +Connect To Network Device + + +1.0190985714286 +-0.25 +1.0190985714286 +0.125 +0 +0 +1 +Connect To Network Device + + +0.76428571428571 +0.5 +0.76428571428571 +0.125 +0 +0 +1 +Connect To Network Device + + +1.2738044285714 +0.5 +1.2738044285714 +0.125 +0 +0 +1 +Connect To Network Device + + +0.76428571428571 +0.125 +0.76428571428571 +0.125 +0 +0 +1 +Connect To Network Device + + +0.63690476190476 +0.125 +0.63690476190476 +0.125 +0 +0 +1 +Connect To Network Device + + +0.89166666666667 +0.125 +0.89166666666667 +0.125 +0 +0 +1 +Connect To Network Device + + +0 +0 +0 +0 + +0.0625 +0.015625 + + +0.0625 +0.234375 +0.015625 +0.125 +-1.5707963267949 +2.3 + + +0.0625 +0.015625 +0.109375 +0.125 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.0625 +0.25 + + +1.4660714285714 +0.25 + + +1.4660714285714 +0 +1.5285714285714 +0.125 +-1.5707963267949 +2 + + +0.0625 +0 + + +0.0625 +0.25 +0 +0.125 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +0.25481285714286 +0.5 + + +0.25481285714286 +0.125 + + +0.76428571428571 +0.125 + + + +1 +0 +0 +0 + +0.50947285714286 +-0.25 + + +0.50947285714286 +0.125 + + +0.76428571428571 +0.125 + + + +1 +0 +0 +0 + +1.0190985714286 +-0.25 + + +1.0190985714286 +0.125 + + +0.76428571428571 +0.125 + + + +1 +0 +0 +0 + +0.76428571428571 +0.5 + + +0.76428571428571 +0.125 + + +0.76428571428571 +0.125 + + + +1 +0 +0 +0 + +1.2738044285714 +0.5 + + +1.2738044285714 +0.125 + + +0.76428571428571 +0.125 + + + +1 +0 +0 +0 + +0.76428571428571 +0.125 + + +0.76428571428571 +0.125 + + +0.76428571428571 +0.125 + + + +1 +0 +0 +0 + +0.63690476190476 +0.125 + + +0.63690476190476 +0.125 + + +0.76428571428571 +0.125 + + + +1 +0 +0 +0 + +0.89166666666667 +0.125 + + +0.89166666666667 +0.125 + + +0.76428571428571 +0.125 + + + + + +6.1571428571429 +4.4178571428571 +1.5 +0.25 +0.75 +0.125 +-7.4014868308344E-17 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.75 +0.125 +1.5 +0.25 +0.75 +0.125 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0.25005 +0.5 +0.25005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.49995 +-0.25 +0.49995 +0.125 +0 +0 +1 +Connect To Network Device + + +1.00005 +-0.25 +1.00005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +0.5 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +1.249995 +0.5 +1.249995 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +-0.024999999999998 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +0.625 +0.125 +0.625 +0.125 +0 +0 +1 +Connect To Network Device + + +0.875 +0.125 +0.875 +0.125 +0 +0 +1 +Connect To Network Device + + +1 + + + +0.0625 +0.125 +0 +0 +0 +0 + + + +1.5 +0.125 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.0625 +0.015625 + + +0.0625 +0.234375 +0.015625 +0.125 +-1.5707963267949 +2.3 + + +0.0625 +0.015625 +0.109375 +0.125 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.0625 +0.25 + + +1.4375 +0.25 + + +1.4375 +0 +1.5 +0.125 +-1.5707963267949 +2 + + +0.0625 +0 + + +0.0625 +0.25 +0 +0.125 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +0.25005 +0.5 + + +0.25005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.49995 +-0.25 + + +0.49995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.00005 +-0.25 + + +1.00005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +0.5 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.249995 +0.5 + + +1.249995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +-0.024999999999998 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.625 +0.125 + + +0.625 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.875 +0.125 + + +0.875 +0.125 + + +0.75 +0.125 + + + + + +4.8816964285714 +4.4214285714286 +1.1759145512697 +0 +0.58795727563484 +0 +-0.0060743368308667 +0 +0 +0 + + +4.29375 +4.425 +5.4696428571429 +4.4178571428571 + + +0 +0 +0 +0 +0 + + +5 + + +0.58795727563484 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.0060743368308667 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.58795727563484 +0 +0.58795727563484 +0 +0 +0 +0 +Curve Position + + +0.58795727563484 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +1.1759145512697 +0 +0.58795727563484 +0 +0 +1 + + + + + +6.1524553571429 +3.9448660714286 +0.69604528143003 +0 +0.34802264071502 +0 +-1.5842656853705 +0 +1 +0 + + +6.1571428571429 +4.2928571428571 +6.1477678571429 +3.596875 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +3 +2 +2 +0 + +0 +0 + + +0.34802264071502 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +-1.5842656853705 + + +0.34802264071502 +0 +0.34802264071502 +0 +0 +0 +0 +Curve Position + + +0.34802264071502 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.69604528143003 +0 +0.34802264071502 +0 +0 +1 + + + + + +6.0875 +2.9522321428571 +0.6331263787583 +0 +0.31656318937915 +0 +-1.5538726958485 +0 +0 +0 + + +6.0821428571429 +3.26875 +6.0928571428571 +2.6357142857143 + + +0 +0 +0 +0 +0 + + +5 + + +0.31656318937915 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +1.5538726958485 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.31656318937915 +0 +0.31656318937915 +0 +0 +0 +0 +Curve Position + + +0.31656318937915 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.6331263787583 +0 +0.31656318937915 +0 +0 +1 + + + + + +6.1 +4.8642857142857 +1.4 +0.5 +0.7 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4 +0 + + +1.4 +0.5 + + +0 +0.5 + + +0 +0 + + +192.168.1.0/24 + + + +3.59375 +4.4321428571428 +0.78762956498131 +0 +0.39381478249066 +0 +-0.018138600054222 +0 +0 +0 + + +3.2 +4.4392857142857 +3.9875 +4.425 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.39381478249066 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.018138600054222 + + +0.39381478249066 +0 +0.39381478249066 +0 +0 +0 +0 +Curve Position + + +0.39381478249066 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.78762956498131 +0 +0.39381478249066 +0 +0 +1 + + + + + +6.0571428571429 +1.9357142857143 +1.4 +0.5 +0.7 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4 +0 + + +1.4 +0.5 + + +0 +0.5 + + +0 +0 + + +192.168.2.0/24 + + + +3.7 +4.6 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth0 + + + +4.7571428571429 +4.5928571428571 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth1 + + + +6.1 +5.2428571428571 +1.8 +0.6 +0.9 +0.3 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8 +0 + + +1.8 +0.6 + + +0 +0.6 + + +0 +0 + + +LOC1 Zone + + + +6.0785714285714 +1.6 +1.4428571428571 +0.4 +0.72142857142857 +0.2 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4428571428571 +0 + + +1.4428571428571 +0.4 + + +0 +0.4 + + +0 +0 + + +LOC2 Zone + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + + + + + + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/MultiZone1B.vsd b/Shorewall-docsN/images/MultiZone1B.vsd new file mode 100755 index 000000000..4e309031f Binary files /dev/null and b/Shorewall-docsN/images/MultiZone1B.vsd differ diff --git a/Shorewall-docsN/images/MultiZone2.png b/Shorewall-docsN/images/MultiZone2.png new file mode 100755 index 000000000..ec3b74cac Binary files /dev/null and b/Shorewall-docsN/images/MultiZone2.png differ diff --git a/Shorewall-docsN/images/MultiZone2.vdx b/Shorewall-docsN/images/MultiZone2.vdx new file mode 100755 index 000000000..45e62c48c --- /dev/null +++ b/Shorewall-docsN/images/MultiZone2.vdx @@ -0,0 +1,11017 @@ + + + + + +MultiZone1 +TEastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAGwAAABbAAAAOgEAAPkCAABYAgAAAAAAAAAAAABzbQAApVQAACBFTUYAAAEAVEkAAG0BAAAEA +AAAAAAAAAAAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMARgAAACwAAA +AgAAAARU1GKwFAAQAcAAAAEAAAAAEQwNsBAAAAYAAAAGAAAABGAAAAhAAAAHgAAABFTUYrMEACABA +AAAAEAAAAAACAPx9ABAAMAAAAAAAAAB5AAQAMAAAAAAAAAB1AAAAUAAAACAAAAAIAAAB+AwAAHUAA +ABQAAAAIAAAAAgAAAJsDAAAKQACAJAAAABgAAAAA/wD/AQAAAPZA/EPt/J1DAAB+Q6XijEMhAAAAC +AAAAGIAAAAMAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAACcAAAAYAA +AAAQAAAAAAAAAA/wAAAAAAACUAAAAMAAAAAQAAACUAAAAMAAAACAAAgEwAAABkAAAA+QEAADwBAAD +2AgAAVQIAAIkfAADAEwAA4A8AAJwRAAAhAPAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAcAAIAlAAAADAAAAAAAAIAkAAAAJAAAA +AAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAABGAAAApAAAAJgAAABFTUYrCEAAAjwAAAAwAAAAAR +DA2wAAAABOAAAAAAAAAEoMgj8CAAAAAgAAAAIAAAACAAAAARDA2wAAAAAAAAD/CEABA0gAAAA8AAA +AARDA2wUAAAAAAAAA9kD8Q8lvFUR7oD1EyW8VRHugPUTt/J1D9kD8Q+38nUP2QPxDyW8VRAABAQGB +AAAAFUABABAAAAAEAAAAAAAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAAF8AA +AA4AAAAAgAAADgAAAAAAAAAOAAAAAAAAAAAAAEAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAA +wAAAACAAAAJQAAAAwAAAAFAACAVgAAADAAAAD3AQAAOgEAAPkCAABYAgAABQAAAIkfXCVpL1wlaS/ +AE4kfwBOJH1wlJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAIBB +AAAAAAAAAAACAAAAKAAAAAwAAAACAAAARgAAADQAAAAoAAAARU1GKwpAAIAkAAAAGAAAAP//AP8BA +AAAYh8ARMmv9EOQwm5DBLmXQigAAAAMAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAA +AAAAAAAgAAACcAAAAYAAAAAQAAAAAAAAAA//8AAAAAACUAAAAMAAAAAQAAACUAAAAMAAAACAAAgEw +AAABkAAAAAQIAAOkBAADuAgAANAIAAAggAACWHgAA7A4AAL4EAAAhAPAAAAAAAAAAAAAAAIA/AAAA +AAAAAAAAAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAcAAIAlAAAAD +AAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAABGAAAApAAAAJgAAABFTU +YrCEAAAjwAAAAwAAAAARDA2wAAAABOAAAAAAAAAEoMgj8CAAAAAgAAAAIAAAACAAAAARDA2wAAAAA +AAAD/CEABA0gAAAA8AAAAARDA2wUAAAAAAAAAYh8ARAVPDUQG0DtEBU8NRAbQO0TJr/RDYh8ARMmv +9ENiHwBEBU8NRAABAQGBAAAAFUABABAAAAAEAAAAAAAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAP +QAAAAAAAAAAAgAAAF8AAAA4AAAAAgAAADgAAAAAAAAAOAAAAAAAAAAAAAEAEAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAJQAAAAwAAAACAAAAJQAAAAwAAAAFAACAVgAAADAAAAD/AQAA5wEAAPECAAA3AgA +ABQAAAAggVCP0LlQj9C6WHggglh4IIFQjJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAA +AIBBAAAAAAAAAAAAAIBBAAAAAAAAAAACAAAAKAAAAAwAAAACAAAARgAAAPQBAADoAQAARU1GKwhAA +QPUAQAAyAEAAAEQwNsxAAAAAAAAAMrI/kJK1vND4RcOQ/FfBUT+jC9DA4YJRBsfSkNaLwNEgthMQ/ +uIAkThb09DYMkBRBDeUUOZ8gBEhJJpQ3IhCURXFoZDmHoHRKuTj0NAhPpDvYyQQ7tr+EPwapFDsy/ +2Q98rkkNQ1vNDn4WZQz4c90PzBKFDq3zvQ9HqokNXz+JDAzWjQ7/f4EOOWqND9eHeQ49ao0Md4txD +j1qjQ1rKz0MTM51DNC3FQ56blUM0LcVD1XKUQzMtxUM+S5ND9G3FQ+ErkkPp7cVDIdKKQ1QEr0MmL +3RDMLimQwqdWUOFZbNDouNWQ0GytENETFRDeDG2QxXeUUMH37dDoSk6Q1SBp0N2jxdDCM+qQ9CUBE +P5P79DqqICQ35YwUNF5gBDhpTDQ9HI/kLo7cVD02HhQvmnwkOBZMNCjEfKQwvNu0Lh9NZDQqS6Qnn +k2EMUDrpCQ+LaQxQOukIb4txDEg66Qt756UMCrNJCA5f0Q9cJ8UIEl/RD+qz1QgSX9ENYS/pCRFb0 +Q8jI/kJO1vNDAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDg +wAAABRAAYAQAAAABAAAAP////8oAAAADAAAAAEAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAA +AAAAAAAAIAAAAnAAAAGAAAAAEAAAAAAAAA////AAAAAAAlAAAADAAAAAEAAAATAAAADAAAAAEAAAA +7AAAACAAAAFUAAADgAAAAAAAAAAAAAAD//////////zEAAAD3B3se4ghYIfkKYiKiDMwgzgyjIPcM +cyAeDT0gmg5JIsMQ3yHzEVEfEhIOHy4Sxh5GEnseMRPkHiEU8B1eFFocZxQcHGwU3RtsFJ0bbBT6G +acTphi0EqYYjxKmGGoSrhhGEr4YWxHhFUMP1xSaDW0Wbw2XFkUNxxYeDfwWowvxFHkJWhVKCOgXKw +gsGA8Icxj3B74YDAdVGBwGSRnfBd8a1gUdG9EFXRvRBZ0b0QVAHZYGkx6JB5MergeTHtMHix73B3s +ePAAAAAgAAAA+AAAAGAAAAF0AAABNAQAARwEAACcCAAATAAAADAAAAAEAAAAlAAAADAAAAAAAAIAk +AAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAABGAAAAXAAAAFAAAABFTUYrCEAAAjwAA +AAwAAAAARDA2wAAAABOAAAAAAAAAEoMgj8CAAAAAgAAAAIAAAACAAAAARDA2wAAAAAAAAD/FUABAB +AAAAAEAAAAAAAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAAF8AAAA4AAAAAgA +AADgAAAAAAAAAOAAAAAAAAAAAAAEAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAwAAAACAAAA +JQAAAAwAAAAFAACAVQAAAOAAAABbAAAASwEAAEkBAAAoAgAAMQAAAPcHex7iCFgh+QpiIqIMzCDOD +KMg9wxzIB4NPSCaDkkiwxDfIfMRUR8SEg4fLhLGHkYSex4xE+QeIRTwHV4UWhxnFBwcbBTdG2wUnR +tsFPoZpxOmGLQSphiPEqYYahKuGEYSvhhbEeEVQw/XFJoNbRZvDZcWRQ3HFh4N/BajC/EUeQlaFUo +I6BcrCCwYDwhzGPcHvhgMB1UYHAZJGd8F3xrWBR0b0QVdG9EFnRvRBUAdlgaTHokHkx6uB5Me0weL +HvcHex4lAAAADAAAAAcAAIAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAA +AAAAAIAAAAoAAAA +DAAAAAIAAABGAAAA6AAAANwAAABFTUYrKkAAACQAAAAYAAAAMzPLQgAAAAAAAAAAJb/YQhQOukJMe +K1DCEACBjAAAAAkAAAAARDA26uqKj4AAAAAAAAAAAAAAAAFAAAAQQBSAEkAQQBMAAAANkACgIQAAA +B4AAAAAAAA/wEAAAABAAAACAAAAEkAbgB0AGUAcgBuAGUAdABmDl4/zcxsPxHpaT/NzGw/3tGAP83 +MbD8zv4Y/zcxsP4mckj/NzGw/M7eZP83MbD+JlKU/zcxsP95xsT/NzGw/AACAPwAAAAAAAAAAAACA +PwAAAAAAAAAAEgAAAAwAAAABAAAAGAAAAAwAAAAAAAAAFgAAAAwAAAAYAAAAUgAAAHABAAACAAAA7 +v///wAAAAAAAAAAAAAAAJABAAAAAAAABwAEAEEAcgBpAGEAbAAAAAAATQBvAG4AbwB0AHkAcABlAD +oAQQByAGkAYQBsACAAUgBlAGcAdQBsAGEAcgA6AFYAZQAAAAAABAAAAAEAAAA82xIAAAAAABDdEgA +KOdd3OJvZd/////+ZWNR3kjU0d6gEIwCCAAAAAAAAAAAAAAAAAAAAKzQ0dwAAAAArNDR3AAAAAAQA +BQCoBCMAQ75ydHR/1Hfc2xIAAACzAOYX9XcdAAAA+AuzAAAAswBgVm8ytNsSAAAAAAD83RIABZD3d +/DV9nf/////5hf1d3gX9XeyF/V3hOESAOAAAABYOG8yFwAAAMgfJTNQWdR3EakAABGpAAAAANR3QC +ttABGpAAAAAAAA2T7Hdxg/x3fLCxDFDAAAAPTgEgDgh3IyywsQxQwAAAD04BIAsIYlMwEAAADw1fZ +3ZHYACAAAAAAlAAAADAAAAAIAAABUAAAAfAAAALUAAACuAQAA7AAAAMIBAAABAAAAAADIQQCAu0G1 +AAAAvwEAAAgAAABMAAAAAAAAAAAAAAAAAAAA//////////9cAAAASQBuAHQAZQByAG4AZQB0AAUAA +AAJAAAABQAAAAkAAAAGAAAACQAAAAkAAAAAAAAAJQAAAAwAAAANAACARgAAAHQAAABoAAAARU1GKy +tAAAAMAAAAAAAAAAhAAQNIAAAAPAAAAAEQwNsFAAAAAAAAAMLNz0P3GvpDXAfmQw9m4kNcB+ZDs9a ++Q8LNz0Obi9ZDws3PQ/ca+kMAAQEBgQAAABRAAYAQAAAABAAAAE9i0P8oAAAADAAAAAEAAAAkAAAA +JAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAAAnAAAAGAAAAAEAAAAAAAAA0GJPAAAAAAAlA +AAADAAAAAEAAAATAAAADAAAAAEAAAAlAAAADAAAAAgAAIBWAAAAMAAAAJ8BAAB9AQAAzQEAAPUBAA +AFAAAA+hlEH8EcTRzBHNsX+hnSGvoZRB8lAAAADAAAAAcAAIATAAAADAAAAAEAAAAlAAAADAAAAAA +AAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAABGAAAAXAAAAFAAAABFTUYrCEAA +AjwAAAAwAAAAARDA2wAAAABOAAAAAAAAAEoMgj8CAAAAAgAAAAIAAAACAAAAARDA2wAAAADNzc3/F +UABABAAAAAEAAAAAAAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAAF8AAAA4AA +AAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEAEAAAAAAAAADNzc0AAAAAAAAAAAAAAAAAJQAAAAwAAAA +DAAAAJQAAAAwAAAAFAACAVgAAADAAAACeAQAAfAEAAM4BAAD2AQAABQAAAPoZRB/BHE0cwRzbF/oZ +0hr6GUQfJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAIBBAAAAA +AAAAAACAAAAKAAAAAwAAAADAAAARgAAAOgEAADcBAAARU1GKwhAAAI4AAAALAAAAAEQwNsAAAAAFg +AAAAAAAABKDII/AQAAAAEAAAAAAABAARDA2wAAAADNzc3/CEABA5AEAACEBAAAARDA238AAAAAAAA +A11vLQ9V43EPCzc9D1XjcQ/aU0kM4gtlD9pTSQziC2UMpXNVDm4vWQylc1UObi9ZDXCPYQ/6U00Nc +I9hD/pTTQ4/q2kNhntBDj+raQ2Ge0EPCsd1DxKfNQ8Kx3UPEp81D9njgQyexykP2eOBDJ7HKQylA4 +0OKusdD11vLQw9m4kPCzc9DD2biQ/aU0kNyb99D9pTSQ3Jv30MpXNVD1XjcQylc1UPVeNxDXCPYQz +iC2UNcI9hDOILZQ4/q2kObi9ZDj+raQ5uL1kPCsd1D/pTTQ8Kx3UP+lNND9njgQ2Ge0EP2eOBDYZ7 +QQylA40PEp81DKUDjQ8SnzUNcB+ZDJ7HKQ9dby0NJU+hDws3PQ0lT6EP2lNJDrFzlQ/aU0kOsXOVD +KVzVQw9m4kMpXNVDD2biQ1wj2ENyb99DXCPYQ3Jv30OP6tpD1XjcQ4/q2kPVeNxDwrHdQziC2UPCs +d1DOILZQ/Z44EObi9ZD9njgQ5uL1kMpQOND/pTTQylA40P+lNNDXAfmQ2Ge0EPXW8tDg0DuQ8LNz0 +ODQO5D9pTSQ+ZJ60P2lNJD5knrQylc1UNJU+hDKVzVQ0lT6ENcI9hDrFzlQ1wj2EOsXOVDj+raQw9 +m4kOP6tpDD2biQ8Kx3UNyb99DwrHdQ3Jv30P2eOBD1XjcQ/Z44EPVeNxDKUDjQziC2UMpQONDOILZ +Q1wH5kObi9ZD11vLQ70t9EPCzc9DvS30Q/aU0kMgN/FD9pTSQyA38UMpXNVDg0DuQylc1UODQO5DX +CPYQ+ZJ60NcI9hD5knrQ4/q2kNJU+hDj+raQ0lT6EPCsd1DrFzlQ8Kx3UOsXOVD9njgQw9m4kP2eO +BDD2biQylA40Nyb99DKUDjQ3Jv30NcB+ZD1XjcQ/aU0kM4gtlD9pTSQ/6U00P2lNJDrFzlQ/aU0kN +yb99D9pTSQyA38UP2lNJD5knrQylc1UO9LfRDKVzVQ4NA7kMpXNVD1XjcQylc1UObi9ZDKVzVQ0lT +6EMpXNVDD2biQ1wj2EP+lNNDXCPYQ8SnzUNcI9hDcm/fQ1wj2EM4gtlDXCPYQ+ZJ60NcI9hDrFzlQ +4/q2kODQO5Dj+raQ0lT6EOP6tpDm4vWQ4/q2kNhntBDj+raQw9m4kOP6tpD1XjcQ8Kx3UPEp81Dwr +HdQ4q6x0PCsd1DOILZQ8Kx3UP+lNNDwrHdQ6xc5UPCsd1Dcm/fQ/Z44ENJU+hD9njgQw9m4kP2eOB +DYZ7QQ/Z44EMnscpD9njgQ9V43EP2eOBDm4vWQylA40P+lNNDKUDjQ8SnzUMpQONDcm/fQylA40M4 +gtlDKUDjQ4q6x0MpQONDUM3BQylA40OKusdDXAfmQ+3DxEMAAQEAAQABAAEAAQABAAEAAQEAAQABA +AEAAQABAAEAAQABAQABAAEAAQABAAEAAQABAAEBAAEAAQABAAEAAQABAAEAAQEAAQABAAEAAQABAA +EAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABVAAQAQAAAABAA +AAAAAAAA6AAAADAAAAAIAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAA +OAAAAAMAAAA4AAAAAAAAADgAAAAAAAAAACEBABAAAAAAAAAAzc3NAAAAAAAAAAAAAAAAACUAAAAMA +AAAAwAAACUAAAAMAAAABQAAgFoAAAAQAwAAkgEAAH8BAADRAQAA7QEAAD0AAAB/AAAAAwAAAAIAAA +ACAAAAAgAAAAIAAAACAAAAAgAAAAMAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAwAAAAI +AAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAADAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAA +AAMAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAA +gAAAAIAAAACAAAA +AgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAGwZkBv6G +ZAbUxoxG1MaMRusGtIarBrSGgUbcxoFG3MaXhsUGl4bFBq3G7UZtxu1GRAcVxkQHFcZaBz4GGwZTR +z6GU0cUxruG1Ma7husGpAbrBqQGwUbMRsFGzEbXhvSGl4b0hq3G3MatxtzGhAcFBoQHBQaaBy1GWg +ctRnBHFcZbBkLHfoZCx1TGqwcUxqsHKwaTRysGk0cBRvuGwUb7hteG5AbXhuQG7cbMRu3GzEbEBzS +GhAc0hpoHHMaaBxzGsEcFBpsGckd+hnJHVMaah1TGmodrBoLHawaCx0FG6wcBRusHF4bTRxeG00ct +xvuG7cb7hsQHJAbEByQG2gcMRtoHDEbwRzSGmwZhh76GYYeUxonHlMaJx6sGskdrBrJHQUbah0FG2 +odXhsLHV4bCx23G6wctxusHBAcTRwQHE0caBzuG2gc7hvBHJAbUxoxG1MacxpTGqwcUxruG1MaJx5 +TGmodrBqGHqwayR2sGpAbrBrSGqwaCx2sGk0cBRtzGgUbtRkFG+4bBRsxGwUbah0FG6wcXhvJHV4b +Cx1eG9IaXhsUGl4bTRxeG5Abtxu1Gbcb+Bi3GzEbtxtzGrcbrBy3G+4bEBwLHRAcTRwQHBQaEBxXG +RAckBsQHNIaaBxzGmgctRloHO4baBwxG2gc+BhoHDoYaBz4GMEcmRglAAAADAAAAAcAAIAlAAAADA +AAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAAAoAAAADAAAAAMAAAA6AAA +ADAAAAAoAAABGAAAANAAAACgAAABFTUYrCkAAgCQAAAAYAAAAX37c/wEAAADXW8tDm4vWQ2A9DkFw +PY5CKAAAAAwAAAABAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAJwAAABgAA +AABAAAAAAAAANx+XwAAAAAAJQAAAAwAAAABAAAAJQAAAAwAAAAIAACATAAAAGQAAACXAQAArQEAAJ +8BAADzAQAAbBkAANIaAACOAAAAcgQAACEA8AAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAABwAAgCUAAAAMAAAAAAAAgCQAAAAkAAAA +AACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAAEYAAACoAAAAnAAAAEVNRisIQAACQAAAADQAAAABE +MDbAAAAAF4AAAAAAAAASgyCPwIAAAACAAAAAgAAAAAAAEACAAAAARDA2wAAAADm5ub/CEABA0gAAA +A8AAAAARDA2wUAAAAAAAAA11vLQ/ca+kPXW8tDm4vWQ8LNz0Obi9ZDws3PQ/ca+kPXW8tD9xr6QwA +BAQGBAAAAFUABABAAAAAEAAAAAAAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAA +AF8AAAA4AAAAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEAEAAAAAAAAADm5uYAAAAAAAAAAAAAAAAAJ +QAAAAwAAAADAAAAJQAAAAwAAAAFAACAVgAAADAAAACVAQAAqwEAAKIBAAD2AQAABQAAAGwZRB9sGd +Ia+hnSGvoZRB9sGUQfJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAA +AAIBBAAAAAAAAAAACAAAAKAAAAAwAAAADAAAARgAAAGgAAABcAAAARU1GKwhAAQNIAAAAPAAAAAEQ +wNsFAAAAAAAAALgG0kObi9ZDUkDoQ7PWvkNSQOhDz3e8Q7gG0kO3LNRDuAbSQ5uL1kMAAQEBgQAAA +BRAAYAQAAAABAAAAJqamv8oAAAADAAAAAEAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAA +AAAAIAAAAnAAAAGAAAAAEAAAAAAAAAmpqaAAAAAAAlAAAADAAAAAEAAAATAAAADAAAAAEAAAAlAAA +ADAAAAAgAAIBWAAAAMAAAAKQBAAB4AQAA0QEAAK4BAAAFAAAAQRrSGgkd2xcJHY8XQRqGGkEa0hol +AAAADAAAAAcAAIATAAAADAAAAAEAAAAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAg +EEAAAAAAAAAAAIAAABGAAAAYAAAAFQAAABFTUYrCEAAAkAAAAA0AAAAARDA2wAAAABeAAAAAAAAAL +dlrT4CAAAAAgAAAAIAAAAAAABAAgAAAAEQwNsAAAAAAAAA/xVAAQAQAAAABAAAAAAAAAAkAAAAJAA +AAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAAAAAMAAAA4AAAAAAAAADgAAAAAAAAA +AAABAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAAAwAAACUAAAAMAAAABQAAgFYAAAAwA +AAAogEAAHcBAADSAQAArwEAAAUAAABBGtIaCR3bFwkdjxdBGoYaQRrSGiUAAAAMAAAABwAAgCUAAA +AMAAAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAAAAMAAAAAwAAAEY +AAAA0AAAAKAAAAEVNRisKQACAJAAAABgAAADAwMD/AQAAAOEiyUO3LNRDcD2OQQC5l0AoAAAADAAA +AAEAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAAAnAAAAGAAAAAEAAAAAAAAAw +MDAAAAAAAAlAAAADAAAAAEAAAAlAAAADAAAAAgAAIBMAAAAZAAAAJIBAACoAQAAowEAAKwBAAAlGQ +AAhhoAABwBAABMAAAAIQDwAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAA +AAAAAIBBAAAAAAAAAAACAAAARgAAAKgAAACcAAAARU1GKwhAAAJAAAAANAAAAAEQwNsAAAAAXgAAA +AAAAAC3Za0+AgAAAAIAAAACAAAAAAAAQAIAAAABEMDbAAAAAAAAAP8IQAEDSAAAADwAAAABEMDbBQ +AAAAAAAADhIslDtyzUQ+EiyUObi9ZDuAbSQ5uL1kO4BtJDtyzUQ+EiyUO3LNRDAAEBAYEAAAAVQAE +AEAAAAAQAAAAAAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXwAAADgAAAAD +AAAAOAAAAAAAAAA4AAAAAAAAAAAAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAMAA +AAlAAAADAAAAAUAAIBWAAAAMAAAAJEBAACnAQAApgEAAK8BAAAFAAAAJRmGGiUZ0hpBGtIaQRqGGi +UZhholAAAADAAAAAcAAIAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAA +AAAIAAAAoAAAADAAAAAMAAABGAAAAaAAAAFwAAABFTUYrCEABA0gAAAA8AAAAARDA2wUAAAAAAAAA +4SLJQ7cs1EN7XN9Dz3e8Q1JA6EPPd7xDuAbSQ7cs1EPhIslDtyzUQwABAQGBAAAAFEABgBAAAAAEA +AAA5ubm/ygAAAAMAAAAAQAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAACcAAA +AYAAAAAQAAAAAAAADm5uYAAAAAACUAAAAMAAAAAQAAABMAAAAMAAAAAQAAACUAAAAMAAAACAAAgFY +AAAAwAAAAkgEAAHgBAADRAQAAqQEAAAUAAAAlGYYa7BuPFwkdjxdBGoYaJRmGGiUAAAAMAAAABwAA +gBMAAAAMAAAAAQAAACUAAAAMAAAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAA +gAAAEYAAABgAAAA +VAAAAEVNRisIQAACQAAAADQAAAABEMDbAAAAAF4AAAAAAAAAt2WtPgIAAAACAAAAAgAAAAAAAEACA +AAAARDA2wAAAAAAAAD/FUABABAAAAAEAAAAAAAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAA +AAAAAAAgAAAF8AAAA4AAAAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEABQAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAJQAAAAwAAAADAAAAJQAAAAwAAAAFAACAVgAAADAAAACRAQAAdwEAANIBAACqAQAABQAA +ACUZhhrsG48XCR2PF0EahholGYYaJQAAAAwAAAAHAACAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBA +AAAAAAAAAAAAIBBAAAAAAAAAAACAAAAKAAAAAwAAAADAAAARgAAAMwAAADAAAAARU1GKwhAAAI4AA +AALAAAAAEQwNsAAAAAFgAAAAAAAABKDII/AQAAAAEAAAAAAABAARDA2wAAAADm5ub/CEABA3QAAAB +oAAAAARDA2woAAAAAAAAAws3PQ9V43EPXW8tD1XjcQ8LNz0MPZuJD11vLQw9m4kPCzc9DSVPoQ9db +y0NJU+hDws3PQ4NA7kPXW8tDg0DuQ8LNz0O9LfRD11vLQ70t9EMAAQABAAEAAQABAAAVQAEAEAAAA +AQAAAAAAAAAOgAAAAwAAAACAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXw +AAADgAAAADAAAAOAAAAAAAAAA4AAAAAAAAAAAhAQAQAAAAAAAAAObm5gAAAAAAAAAAAAAAAAAlAAA +ADAAAAAMAAAAlAAAADAAAAAUAAIBaAAAAXAAAAJIBAAC0AQAApQEAAO0BAAAFAAAACgAAAAIAAAAC +AAAAAgAAAAIAAAACAAAA+hmQG2wZkBv6GU0cbBlNHPoZCx1sGQsd+hnJHWwZyR36GYYebBmGHiUAA +AAMAAAABwAAgCUAAAAMAAAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAAC +gAAAAMAAAAAwAAADoAAAAMAAAACgAAAEYAAADcAAAA0AAAAEVNRisIQAACQAAAADQAAAABEMDbAAA +AAF4AAAAAAAAAJb/YPwIAAAACAAAAAgAAAAAAAEACAAAAARDA2wAAAAAAAAD/CEABA3wAAABwAAAA +ARDA2wsAAAAAAAAA11vLQ/ca+kPXW8tDm4vWQ+EiyUObi9ZD4SLJQ7cs1EN7XN9Dz3e8Q1JA6EPPd +7xDUkDoQ7PWvkNcB+ZDlzXBQ1wH5kMPZuJDws3PQ/ca+kPXW8tD9xr6QwABAQEBAQEBAQEBABVAAQ +AQAAAABAAAAAAAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAAAAAM +AAAA4AAAAAAAAADgAAAAAAAAAAAABABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAAAwAA +ACUAAAAMAAAABQAAgFcAAABIAAAAkAEAAHcBAADTAQAA9wEAAAsAAABsGUQfbBnSGiUZ0holGYYa7 +BuPFwkdjxcJHdsXwRwnGMEcTRz6GUQfbBlEHyUAAAAMAAAABwAAgCUAAAAMAAAAAAAAgCQAAAAkAA +AAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAAAAMAAAAAwAAAEYAAADoAAAA3AAAAEVNRis +qQAAAJAAAABgAAAAzM8tCAAAAAAAAAAAlv9hCcLXRQ9EE/kMIQAIGMAAAACQAAAABEMDbq6oqPgAA +AAAAAAAAAAAAAAUAAABBAFIASQBBAEwAAAA2QAKAhAAAAHgAAAAAAAD/AQAAAAEAAAAIAAAARgBpA +HIAZQB3AGEAbABsADmO4zxhCzY+x7EEPmELNj5ynCo+YQs2PsdxYz5hCzY+OS6hPmELNj45zt4+YQ +s2PschBz9hCzY+cpwQP2ELNj4AAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAASAAAADAAAAAEAAAAYAAA +ADAAAAAAAAAAWAAAADAAAABgAAAAlAAAADAAAAAIAAABUAAAAfAAAAKYBAAD+AQAA3gEAABICAAAB +AAAAAADIQQCAu0GmAQAADwIAAAgAAABMAAAAAAAAAAAAAAAAAAAA//////////9cAAAARgBpAHIAZ +QB3AGEAbABsAAoAAAAEAAAABgAAAAkAAAAMAAAACQAAAAQAAAAAAAAAJQAAAAwAAAANAACARgAAAG +QBAABYAQAARU1GKytAAAAMAAAAAAAAAAhAAQM4AQAALAEAAAEQwNsgAAAAAAAAAJ6ZCkSV+OND2O4 +JRIfs40NlZglEeDvhQ9poCUSH9d1DQmsJRJbA2kNP8glE8inYQ56ZCkQiHthDZUQLRDAq2EPYzAtE +P9vaQ2PKC0QwId5D+8cLRCFW4UPuQAtExezjQ5+ZCkSV+ONDn5kKRGNF10Nshi1EY0XXQ95mLkRiR +ddD0hwvRLVN2kPSHC9EWwveQ9IcL0QAyeFD3mYuRFTR5ENshi1EVdHkQ2yGLURV0eRDa4YtRFXR5E +Nrhi1EVdHkQ2yGLURV0eRDn5kKRFXR5EMsuQlEVdHkQzgDCUQCyeFDOAMJRFwL3kM4AwlEt03aQyy +5CURjRddDnpkKRGJF10MAAwMDAwMDAwMDAwODAAEDAwMDAwMDAwMBAQMDAwMDgxRAAYAQAAAABAAA +AMDAwP8oAAAADAAAAAEAAAAkAAAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAAAnAAAAG +AAAAAEAAAAAAAAAwMDAAAAAAAAlAAAADAAAAAEAAAATAAAADAAAAAEAAAA7AAAACAAAABsAAAAQAA +AApyIAAIAcAABYAAAATAAAAAAAAAAAAAAA//////////8MAAAAfCJ+HFoiKBxbIr8bWyJZG30iBhu +nIgQb0iIGG/QiXBvzIsUb8iIrHNEifhynIoAcPQAAAAgAAAAbAAAAEAAAAKciAADpGgAANgAAABAA +AABiKwAA6RoAAFgAAABAAAAAAAAAAAAAAAD//////////wkAAACaK+kayCtKG8grwhvIKzocmiubH +GIrmxxiK5scYiubHGIrmxxZAAAAJAAAAAAAAAAAAAAA//////////8CAAAAYiubHKcimxxYAAAANA +AAAAAAAAAAAAAA//////////8GAAAAbyKbHEEiOhxBIsIbQSJKG28i6RqnIukaPQAAAAgAAAA8AAA +ACAAAAD4AAAAYAAAAJAIAAK4BAAC9AgAAygEAABMAAAAMAAAAAQAAACUAAAAMAAAAAAAAgCQAAAAk +AAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAAEYAAABMAgAAQAIAAEVNRisIQAACQAAAADQAA +AABEMDbAAAAAF4AAAAAAAAAt2WtPgIAAAACAAAAAgAAAAAAAEACAAAAARDA2wAAAAAAAAD/CEABA+ +wBAADgAQAAARDA2zQAAAAAAAAAnpkKRJX440PY7glEh+zjQ2VmCUR4O+FD2mgJRIf13UNCawlElsD +aQ0/yCUTyKdhDnpkKRCIe2ENlRAtEMCrYQ9jMC0Q/29pDY8oLRDAh3kP7xwtEIVbhQ+5AC0TF7OND +n5kKRJX440OfmQpEY0XXQ2yGLURjRddD3mYuRGJF10PSHC9EtU3aQ9IcL0RbC95D0hwvRADJ4UPeZ +i5EVNHkQ2yGLURV0eRDbIYtRFXR5ENrhi1EVdHkQ2uGLURV0eRDbIYtRFXR5EOfmQpEVdHkQyy5CU +RV0eRDOAMJRALJ4UM4AwlEXAveQzgDCUS3TdpDLLkJRGNF10OemQpEYkXXQyZdD0RxuclDJl0PRFw +L3kMGEBxEXAveQxm2FURIXfJDGbYVRFwL3kMGEBxEXAveQ/NpIkRIXfJD82kiRFwL3kMGEBxEXAve +QwYQHERxuclDBhAcRFwL3kMxwyhEcbnJQzHDKERcC95DBhAcRFwL3kMGEBxEISzmQwYQHERcC95DO +eMYRFwL3kMGEBxE +XAveQ9I8H0RcC95DBhAcRFwL3kMAAwMDAwMDAwMDAwMDAAEDAwMDAwMDAwMBAQMDAwMDAwABAQABA +QABAQABAAEBAAEAAQABFUABABAAAAAEAAAAAAAAACQAAAAkAAAAAACAPQAAAAAAAAAAAACAPQAAAA +AAAAAAAgAAAF8AAAA4AAAAAwAAADgAAAAAAAAAOAAAAAAAAAAAAAEABQAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAJQAAAAwAAAADAAAAJQAAAAwAAAAFAACAOwAAAAgAAAAbAAAAEAAAAKciAACAHAAAWAAA +AEwAAAAAAAAAAAAAAP//////////DAAAAHwifhxaIigcWyK/G1siWRt9IgYbpyIEG9IiBhv0Ilwb8 +yLFG/IiKxzRIn4cpyKAHBsAAAAQAAAApyIAAOkaAAA2AAAAEAAAAGIrAADpGgAAWAAAAEAAAAAAAA +AAAAAAAP//////////CQAAAJor6RrIK0obyCvCG8grOhyaK5scYiubHGIrmxxiK5scYiubHFkAAAA +kAAAAAAAAAAAAAAD//////////wIAAABiK5scpyKbHFgAAAA0AAAAAAAAAAAAAAD//////////wYA +AABvIpscQSI6HEEiwhtBIkobbyLpGqci6RobAAAAEAAAANgjAAA4GQAAWQAAACQAAAAAAAAAAAAAA +P//////////AgAAANgjwhsEJ8IbGwAAABAAAABuJQAATB4AAFkAAAAkAAAAAAAAAAAAAAD/////// +///wIAAABuJcIbBCfCGxsAAAAQAAAAmygAAEweAABZAAAAJAAAAAAAAAAAAAAA//////////8CAAA +AmyjCGwQnwhsbAAAAEAAAAAQnAAA4GQAANgAAABAAAAAEJwAAwhsAABsAAAAQAAAAMSoAADgZAABZ +AAAAJAAAAAAAAAAAAAAA//////////8CAAAAMSrCGwQnwhsbAAAAEAAAAAQnAADGHAAANgAAABAAA +AAEJwAAwhsAABsAAAAQAAAAOSYAAMIbAAA2AAAAEAAAAAQnAADCGwAAGwAAABAAAADQJwAAwhsAAD +YAAAAQAAAABCcAAMIbAAA8AAAACAAAAEAAAAAYAAAAIgIAAJIBAAC+AgAA5gEAACUAAAAMAAAABwA +AgCUAAAAMAAAAAAAAgCQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAAAAMAAAA +AwAAAEYAAAA0AAAAKAAAAEVNRisKQACAJAAAABgAAADAwMD/AQAAABxgFkTtPdlDQP01QmCui0EkA +AAAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAAAlAAAADAAAAAEAAAAlAAAADAAAAAgAAI +BMAAAAZAAAAFoCAACzAQAAhgIAAMMBAACYJQAAKBsAANgCAAAYAQAAIQDwAAAAAAAAAAAAAACAPwA +AAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAwAAAAHAACAJQAA +AAwAAAAAAACAJAAAACQAAAAAAIBBAAAAAAAAAAAAAIBBAAAAAAAAAAACAAAARgAAAOgAAADcAAAAR +U1GKypAAAAkAAAAGAAAADMzy0JH4dOrMqPGKyW/2EI5AwlEY0XXQwhAAgYwAAAAJAAAAAEQwNs5ju +M9AAAAAAAAAAAAAAAABQAAAEEAUgBJAEEATAAAADZAAoCEAAAAeAAAAAAAAP8BAAAAAQAAAAgAAAB +FAHQAaABlAHIAbgBlAHQAcjwKPyIiIj5VNR0/IiIiPnIcJT8iIiI+Oe40PyIiIj4AwEQ/IiIiPuQ4 +Tj8iIiI+qwpePyIiIj5y3G0/IiIiPgAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAABIAAAAMAAAAAQAAA +BgAAAAMAAAAAAAAABYAAAAMAAAAGAAAACgAAAAMAAAAAgAAAFIAAABwAQAAAgAAAPT///8AAAAAAA +AAAAAAAACQAQAAAAAAAAcABABBAHIAaQBhAGwAAAAAAE0AbwBuAG8AdAB5AHAAZQA6AEEAcgBpAGE +AbAAgAFIAZQBnAHUAbABhAHIAOgBWAGUAAABtMgkAAAAUAAAAgAUAAAAAAABQ////uAIAAEICAACA +BQAABAUAAAIAAACAqgAAn7fgcAAEDwABAAAAAQAAAP////8ASQMAQAAAAP////98AAAAIAAAAAQAA +AAgAAAA5NsSAJCvbTJfiNNwDAABAAAAFAAY2xIAAJ5tMgzcEgAAAPd3yNX2d/////9qFvV3y2Dndw +AAFAAAAAAA3mDnd4kECo+Y728zIMDKd8CQswDwsW0yGgAAAAEAAADo2xIAAAAAAATmEgAJSOl3iDL +od//////eYOd3Ha3Hd5jvbzOwhiUzmO9vMxAAAABU3BIA3nTIdyDAynfWCSHcAgAAAGR2AAgAAAAA +JQAAAAwAAAACAAAAVAAAAHwAAABbAgAAtAEAAIQCAADCAQAAAQAAAAAAyEEAgLtBWwIAAMABAAAIA +AAATAAAAAAAAAAAAAAAAAAAAP//////////XAAAAEUAdABoAGUAcgBuAGUAdAAIAAAAAwAAAAYAAA +AGAAAABAAAAAYAAAAGAAAAAAAAACUAAAAMAAAADQAAgEYAAACYAAAAjAAAAEVNRisrQAAADAAAAAA +AAAAIQAACQAAAADQAAAABEMDbAAAAAF4AAAAAAAAAt2WtPgIAAAACAAAAAgAAAAAAAEACAAAAARDA +2wAAAAAAAAD/CEABAywAAAAgAAAAARDA2wIAAAAAAAAAj+raQ0eo3UOfmQpEXAveQwABAAAVQAEAE +AAAAAQAAAAAAAAAJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXwAAADgAAAADAA +AAOAAAAAAAAAA4AAAAAAAAAAAAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAMAAAA +lAAAADAAAAAUAAIBXAAAAJAAAALQBAAC6AQAALAIAAL4BAAACAAAAXhu2G6ciwhslAAAADAAAAAcA +AIAlAAAADAAAAAAAAIAkAAAAJAAAAAAAgEEAAAAAAAAAAAAAgEEAAAAAAAAAAAIAAAAoAAAADAAAA +AMAAABGAAAAJAEAABgBAABFTUYrKkAAACQAAAAYAAAAMzPLQgAAAAAAAAAAJb/YQiACC0Qm/LVDCE +ACBjAAAAAkAAAAARDA26uqKj4AAAAAAAAAAAAAAAAFAAAAQQBSAEkAQQBMAAAANkACgMAAAAC0AAA +AAAAA/wEAAAABAAAADgAAADEAOQAyAC4AMQA2ADgALgAxAC4AMAAvADIANAAiYhM+mpmZPs1Mcj6a +mZk+vJuoPpqZmT4REdg+mpmZPmbG7z6amZk+3p0PP5qZmT6JWCc/mpmZPjMTPz+amZk+3u1KP5qZm +T6JqGI/mpmZPjODbj+amZk+7x6DP5qZmT5EDIk/mpmZPprplD+amZk+AACAPwAAAAAAAAAAAACAPw +AAAAAAAAAAEgAAAAwAAAABAAAAGAAAAAwAAAAAAAAAFgAAAAwAAAAYAAAAKAAAAAwAAAACAAAAUgA +AAHABAAACAAAA7v///wAAAAAAAAAAAAAAAJABAAAAAAAABwAEAEEAcgBpAGEAbAAAAAAATQBvAG4A +bwB0AHkAcABlADoAQQByAGkAYQBsACAAUgBlAGcAdQBsAGEAcgA6AFYAZQAAAG0yDgAAAAcAAAA0A +gAAABsAAJ7///+UAwAAVAMAADQCAADEAQAAAgAAAMAfAACft+BwAAQAAAEAAAABAAAA/////wAhAQ +BAAAAA/////9wAAABAAAAABAAAACAAAAAYsG0yYK9tMl+I03ABAAEAAAAUABjbEgAAnm0yDNwSAAA +A93fI1fZ3/////2oW9XfLYOd3AAAUAAAAAADeYOd3iQQKkJjvbzMgwMp3qD+zAGCzbTI0AAAAAgAA +AOjbEgAAAAAABOYSAAlI6XeIMuh3/////95g53cdrcd3mO9vM7CGJTOY728zEAAAAFTcEgDedMh3I +MDKd9YJIdwCAAAA +ZHYACAAAAAAlAAAADAAAAAIAAABUAAAAoAAAADsCAAB7AQAAqAIAAI8BAAABAAAAAADIQQCAu0E7A +gAAjAEAAA4AAABMAAAAAAAAAAAAAAAAAAAA//////////9oAAAAMQA5ADIALgAxADYAOAAuADEALg +AwAC8AMgA0AAkAAAAJAAAACQAAAAUAAAAJAAAACQAAAAkAAAAFAAAACQAAAAUAAAAJAAAABQAAAAk +AAAAAAAAAJQAAAAwAAAANAACARgAAAJgAAACMAAAARU1GKytAAAAMAAAAAAAAAAhAAAJAAAAANAAA +AAEQwNsAAAAAXgAAAAAAAAC3Za0+AgAAAAIAAAACAAAAAAAAQAIAAAABEMDbAAAAAAAAAP8IQAEDL +AAAACAAAAABEMDbAgAAAAAAAACPWqNDHOLcQ9dby0NHqN1DAAEAABVAAQAQAAAABAAAAAAAAAAkAA +AAJAAAAAAAgD0AAAAAAAAAAAAAgD0AAAAAAAAAAAIAAABfAAAAOAAAAAMAAAA4AAAAAAAAADgAAAA +AAAAAAAABAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAMAAAAAwAAACUAAAAMAAAABQAAgFcA +AAAkAAAARQEAALgBAACYAQAAvQEAAAIAAABsFJ0bbBm2GyUAAAAMAAAABwAAgCUAAAAMAAAAAAAAg +CQAAAAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAACgAAAAMAAAAAwAAAEYAAADAAAAAtA +AAAEVNRisqQAAAJAAAABgAAAAzM8tCAAAAAAAAAAAlv9hCCm+oQ/ILzEMIQAIGMAAAACQAAAABEMD +bq6oqPgAAAAAAAAAAAAAAAAUAAABBAFIASQBBAEwAAAA2QAKAXAAAAFAAAAAAAAD/AQAAAAEAAAAE +AAAAZQB0AGgAMABEhHM+zcxMPnc3qT7NzEw+zezAPs3MTD4iYvA+zcxMPgAAgD8AAAAAAAAAAAAAg +D8AAAAAAAAAABIAAAAMAAAAAQAAABgAAAAMAAAAAAAAABYAAAAMAAAAGAAAACUAAAAMAAAAAgAAAF +QAAABkAAAAaQEAAJ0BAACIAQAAsQEAAAEAAAAAAMhBAIC7QWkBAACuAQAABAAAAEwAAAAAAAAAAAA +AAAAAAAD//////////1QAAABlAHQAaAAwAAkAAAAFAAAACQAAAAAAAAAlAAAADAAAAA0AAIBGAAAA +zAAAAMAAAABFTUYrK0AAAAwAAAAAAAAAKkAAACQAAAAYAAAAMzPLQgAAAAAAAAAAJb/YQvgi3kMIb +8xDCEACBjAAAAAkAAAAARDA26uqKj4AAAAAAAAAAAAAAAAFAAAAQQBSAEkAQQBMAAAANkACgFwAAA +BQAAAAAAAA/wEAAAABAAAABAAAAGUAdABoADEARIRzPs3MTD53N6k+zcxMPs3swD7NzEw+ImLwPs3 +MTD4AAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAASAAAADAAAAAEAAAAYAAAADAAAAAAAAAAWAAAADAAA +ABgAAAAlAAAADAAAAAIAAABUAAAAZAAAANQBAACeAQAA8QEAALIBAAABAAAAAADIQQCAu0HUAQAAr +wEAAAQAAABMAAAAAAAAAAAAAAAAAAAA//////////9UAAAAZQB0AGgAMQAJAAAABQAAAAkAAAAAAA +AAJQAAAAwAAAANAACARgAAAJQBAACIAQAARU1GKytAAAAMAAAAAAAAACpAAAAkAAAAGAAAADMzy0I +AAAAAAAAAACW/2ELBkAVEmZ/qQwhAAgYwAAAAJAAAAAEQwNurqio+AAAAAAAAAAAAAAAABQAAAEEA +UgBJAEEATAAAADZAAoAkAQAAGAEAAAAAAP8BAAAAAQAAABgAAAAxADkAMgAuADEANgA4AC4AMQAuA +DgALQAxADkAMgAuADEANgA4AC4AMQAuADEANQA5jmM9MzOzPjnOFz4zM7M+5Lh2PjMzsz7H0ao+Mz +OzPhyHwj4zM7M+cvzxPjMzsz7kuBA/MzOzPo5zKD8zM7M+OU40PzMzsz7kCEw/MzOzPo7jVz8zM7M ++OZ5vPzMzsz6O030/MzOzPhzHij8zM7M+cqSWPzMzsz7HgaI/MzOzPhxvqD8zM7M+cky0PzMzsz7H +KcA/MzOzPhwHzD8zM7M+cvTRPzMzsz7H0d0/MzOzPhy/4z8zM7M+cpzvPzMzsz4AAIA/AAAAAAAAA +AAAAIA/AAAAAAAAAAASAAAADAAAAAEAAAAYAAAADAAAAAAAAAAWAAAADAAAABgAAAAlAAAADAAAAA +IAAABUAAAA3AAAABwCAADqAQAA2AIAAP4BAAABAAAAAADIQQCAu0EcAgAA+wEAABgAAABMAAAAAAA +AAAAAAAAAAAAA//////////98AAAAMQA5ADIALgAxADYAOAAuADEALgA4AC0AMQA5ADIALgAxADYA +OAAuADEALgAxADUACQAAAAkAAAAJAAAABQAAAAkAAAAJAAAACQAAAAUAAAAJAAAABQAAAAkAAAAGA +AAACQAAAAkAAAAJAAAABQAAAAkAAAAJAAAACQAAAAUAAAAJAAAABQAAAAkAAAAAAAAAJQAAAAwAAA +ANAACARgAAAPQAAADoAAAARU1GKytAAAAMAAAAAAAAACpAAAAkAAAAGAAAADMzy0IAAAAAAAAAACW +/2ELX7wFE7fydQwhAAgYwAAAAJAAAAAEQwNtyHEc+AAAAAAAAAAAAAAAABQAAAEEAUgBJAEEATAAA +ADZAAoCEAAAAeAAAAAAAAP8BAAAAAQAAAAgAAABMAE8AQwAgAFoAbwBuAGUABvsZP97dnT4iqjU/3 +t2dPiJiXD/e3Z0+ZiqAP97dnT6fFIc/3t2dPp9Ilj/e3Z0+LiCkP97dnT6897E/3t2dPgAAgD8AAA +AAAAAAAAAAgD8AAAAAAAAAABIAAAAMAAAAAQAAABgAAAAMAAAAAAAAABYAAAAMAAAAGAAAACgAAAA +MAAAAAgAAAFIAAABwAQAAAgAAAOv///8AAAAAAAAAAAAAAACQAQAAAAAAAAcABABBAHIAaQBhAGwA +AAAAAE0AbwBuAG8AdAB5AHAAZQA6AEEAcgBpAGEAbAAgAFIAZQBnAHUAbABhAHIAOgBWAGUAAABtM +g4AAAAlAAAAIAoAAAAAAADM/v//VAQAAIQDAAAgCgAARgkAAAIAAACQDAIAn7fgcABpLgABAAAAAQ +AAAP////8AxAkAQAAAAP/////aAAAAQAAAAAQAAAAgAAAAVLBtMpCvbTJfiNNwEgABAAAAFAAY2xI +AAJ5tMgzcEgAAAPd3yNX2d/////9qFvV3y2DndwAAFAAAAAAA3mDnd4kECpGY728zIMDKd9h9cTIw +s20yLgAAAAIAAADo2xIAAAAAAATmEgAJSOl3iDLod//////eYOd3Ha3Hd5jvbzOwhiUzmO9vMxAAA +ABU3BIA3nTIdyDAynfWCSHcAgAAAGR2AAgAAAAAJQAAAAwAAAACAAAAVAAAAHwAAABFAgAASgEAAJ +4CAABhAQAAAQAAAAAAyEEAgLtBRQIAAF0BAAAIAAAATAAAAAAAAAAAAAAAAAAAAP//////////XAA +AAEwATwBDACAAWgBvAG4AZQALAAAADwAAAA4AAAAFAAAADAAAAAsAAAALAAAAAAAAACUAAAAMAAAA +DQAAgEYAAAAAAQAA9AAAAEVNRisrQAAADAAAAAAAAAAqQAAAJAAAABgAAAAzM8tCAAAAAAAAAAAlv +9hC1+8BRKl4AkQIQAIGMAAAACQAAAABEMDbchxHPgAAAAAAAAAAAAAAAAUAAABBAFIASQBBAEwAAA +A2QAKAkAAAAIQAAAAAAAD/AQAAAAEAAAAJAAAATABPAEMAMQAgAFoAbwBuAGUAdyMMP97dnT6U0ic +/3t2dPpSKTj/e3Z0+P31yP97dnT4uFoc/3t2dPmYAjj/e3Z0+ZjSdP97dnT71C6s/3t2dPoPjuD/e +3Z0+AACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAAASAAAADAAAAAEAAAAYAAAADAAAAAAAAAAWAAAAD +AAAABgAAAAlAAAA +DAAAAAIAAABUAAAAhAAAAD8CAAAYAgAAowIAAC8CAAABAAAAAADIQQCAu0E/AgAAKwIAAAkAAABMA +AAAAAAAAAAAAAAAAAAA//////////9gAAAATABPAEMAMQAgAFoAbwBuAGUAAgALAAAADwAAAA4AAA +ALAAAABQAAAAwAAAALAAAACwAAAAAAAAAlAAAADAAAAA0AAIBGAAAAHAAAABAAAABFTUYrK0AAAAw +AAAAAAAAATAAAAGQAAABcAAAAOwEAAPcCAABXAgAAXAAAADsBAACcAgAAHQEAACkAqgAAAAAAAAAA +AAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAMAAAA/ +////0YAAAAcAAAAEAAAAEVNRisCQAAADAAAAAAAAAAOAAAAFAAAAAAAAAAQAAAAFAAAAA== +2003-11-09T10:53:13 +2003-12-23T08:58:38 +2003-11-09T13:14:48 +2003-11-09T10:53:13 + + +9 +295 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +18 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +20 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +3 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +3 +1 +0 +2 +0 +0 +1 +2 +0 + + + + +1 +1 +1 +0 + + +1 +#8a8aff +31 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0016666666666667 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + + +2 +0 +1 +0 + + +2 + + + +Visio Network Solutions +
http://officeupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + + +11 +8.5 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Apple +255 +0 +1 +1 +0 +0 +1 +1 +Apple +0 + + +Digital +255 +0 +1 +1 +0 +0 +1 +1 +Digital +0 + + +Cray +255 +0 +1 +1 +0 +0 +1 +1 +Cray +0 + + +IBM +255 +0 +1 +1 +0 +0 +1 +1 +IBM +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +6.2 +4.3 +2.5 +2.6 +1.25 +1.3 +0 +0 +0 +0 + + +3 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.5 +0 + + +2.5 +2.6 + + +0 +2.6 + + +0 +0 + + + + + + +6.2035714285714 +3.65 +2.35 +0.7 +1.175 +0.35 +0 +0 +0 +0 + + +7 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.35 +0 + + +2.35 +0.7 + + +0 +0.7 + + +0 +0 + + + + + +2.05 +4.4392857142857 +2.3 +1.75 +1.15 +0.875 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0.875 +0 +0 +0 +0 + + + +0.8117643 +1.75 +0 +0 +0 +0 + + + +1.48833 +1.75 +0 +0 +0 +0 + + + +0.8117643 +0 +0 +0 +0 +0 + + + +1.4882357 +0 +0 +0 +0 +0 + + + +2.3 +0.875 +0 +0 +0 +0 + + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.33823529411765 +0.45139244650857 + + +1.15 +0.19195334392518 +0.70682204248263 +0.01660909406747 +0 +0.61848739495799 + + +1.9617647058824 +0.45139244650857 +1.5931779575174 +0.016609094067465 +0 +0.61848739495799 + + +2.3 +0.875 +2.1951125414236 +0.52912588091909 +0 +0.61848739495799 + + +1.9617647058824 +1.2986075534914 +2.1951125414236 +1.2208741190809 +0 +0.61848739495799 + + +1.15 +1.5580466560748 +1.5931779575174 +1.7333909059325 +0 +0.61848739495799 + + +0.33823529411765 +1.2986075534914 +0.70682204248263 +1.7333909059325 +0 +0.61848739495799 + + +0 +0.875 +0.10488745857643 +1.2208741190809 +0 +0.61848739495799 + + +0.33823529411765 +0.45139244650857 +0.10488745857643 +0.52912588091909 +0 +0.61848739495799 + + +Internet + + + +4.03125 +4.25 +0.0875 +0.7 +0.04375 +0.35 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.125 +-0.2 +0.04375 +0.35 +4 +2 +0 +Reposition Text + + +0 +0 +0 +1 +0 +0 + + +0.30625 +0.21875 +0 +0 +0 +0 + + + +0.30625 +0.525 +0 +0 +0 +0 + + + +0 +0.525 +0 +0 +0 +0 + + + +0.04921875 +0 +0 +0 +0 +0 + + + +0.2625 +0.91875 +0 +0 +0 +0 + + + + + +0.30625 +0.546875 +0.4375 +1.09375 +0.21875 +0.546875 +0 +0 +0 +0 + + +0 + + +#d0624f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.21875 +0.546875 +0.4375 +1.09375 +0.21875 +0.546875 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.4375 +1.09375 + + +0 +0.65625 + + +0 +0 + + + + + +0.2625 +0.57421875 +0.525 +0.9296875 +0.2625 +0.46484375 +0 +0 +0 +0 + + +0 + + +0.2625 +0.46484375 +0.525 +0.9296875 +0.2625 +0.46484375 +0 + + +1 +0 +0 +0 + +0 +0.4375 + + +0.0875 +0.4375 + + +0.1421875 +0.4921875 + + + +1 +0 +0 +0 + +0.1421875 +0.4921875 + + +0.196875 +0.546875 + + + +1 +0 +0 +0 + +0.196875 +0.546875 + + +0.2515625 +0.6015625 + + + +1 +0 +0 +0 + +0.2515625 +0.6015625 + + +0.30625 +0.65625 + + + +1 +0 +0 +0 + +0.30625 +0.65625 + + +0.3609375 +0.7109375 + + + +1 +0 +0 +0 + +0.3609375 +0.7109375 + + +0.415625 +0.765625 + + + +1 +0 +0 +0 + +0.415625 +0.765625 + + +0.4703125 +0.8203125 + + + +1 +0 +0 +0 + +0 +0.328125 + + +0.0875 +0.328125 + + +0.1421875 +0.3828125 + + + +1 +0 +0 +0 + +0.1421875 +0.3828125 + + +0.196875 +0.4375 + + + +1 +0 +0 +0 + +0.196875 +0.4375 + + +0.2515625 +0.4921875 + + + +1 +0 +0 +0 + +0.2515625 +0.4921875 + + +0.30625 +0.546875 + + + +1 +0 +0 +0 + +0.30625 +0.546875 + + +0.3609375 +0.6015625 + + + +1 +0 +0 +0 + +0.3609375 +0.6015625 + + +0.415625 +0.65625 + + + +1 +0 +0 +0 + +0.415625 +0.65625 + + +0.4703125 +0.7109375 + + + +1 +0 +0 +0 + +0.4703125 +0.7109375 + + +0.525 +0.765625 + + + +1 +0 +0 +0 + +0 +0.21875 + + +0.0875 +0.21875 + + +0.1421875 +0.2734375 + + + +1 +0 +0 +0 + +0.1421875 +0.2734375 + + +0.196875 +0.328125 + + + +1 +0 +0 +0 + +0.196875 +0.328125 + + +0.2515625 +0.3828125 + + + +1 +0 +0 +0 + +0.2515625 +0.3828125 + + +0.30625 +0.4375 + + + +1 +0 +0 +0 + +0.30625 +0.4375 + + +0.3609375 +0.4921875 + + + +1 +0 +0 +0 + +0.3609375 +0.4921875 + + +0.415625 +0.546875 + + + +1 +0 +0 +0 + +0.415625 +0.546875 + + +0.4703125 +0.6015625 + + + +1 +0 +0 +0 + +0.4703125 +0.6015625 + + +0.525 +0.65625 + + + +1 +0 +0 +0 + +0 +0.109375 + + +0.0875 +0.109375 + + +0.1421875 +0.1640625 + + + +1 +0 +0 +0 + +0.1421875 +0.1640625 + + +0.196875 +0.21875 + + + +1 +0 +0 +0 + +0.196875 +0.21875 + + +0.2515625 +0.2734375 + + + +1 +0 +0 +0 + +0.2515625 +0.2734375 + + +0.30625 +0.328125 + + + +1 +0 +0 +0 + +0.30625 +0.328125 + + +0.3609375 +0.3828125 + + + +1 +0 +0 +0 + +0.3609375 +0.3828125 + + +0.415625 +0.4375 + + + +1 +0 +0 +0 + +0.415625 +0.4375 + + +0.4703125 +0.4921875 + + + +1 +0 +0 +0 + +0.4703125 +0.4921875 + + +0.525 +0.546875 + + + +1 +0 +0 +0 + +0 +0 + + +0.0875 +0 + + +0.1421875 +0.0546875 + + + +1 +0 +0 +0 + +0.1421875 +0.0546875 + + +0.196875 +0.109375 + + + +1 +0 +0 +0 + +0.196875 +0.109375 + + +0.2515625 +0.1640625 + + + +1 +0 +0 +0 + +0.2515625 +0.1640625 + + +0.30625 +0.21875 + + + +1 +0 +0 +0 + +0.30625 +0.21875 + + +0.3609375 +0.2734375 + + + +1 +0 +0 +0 + +0.3609375 +0.2734375 + + +0.415625 +0.328125 + + + +1 +0 +0 +0 + +0.415625 +0.328125 + + +0.4703125 +0.3828125 + + + +1 +0 +0 +0 + +0.4703125 +0.3828125 + + +0.525 +0.4375 + + + +1 +0 +0 +0 + +0.1421875 +0.4921875 + + +0.1421875 +0.6015625 + + + +1 +0 +0 +0 + +0.1421875 +0.2734375 + + +0.1421875 +0.3828125 + + + +1 +0 +0 +0 + +0.1421875 +0.0546875 + + +0.1421875 +0.1640625 + + + +1 +0 +0 +0 + +0.196875 +0 + + +0.196875 +0.109375 + + + +1 +0 +0 +0 + +0.196875 +0.4375 + + +0.196875 +0.546875 + + + +1 +0 +0 +0 + +0.196875 +0.21875 + + +0.196875 +0.328125 + + + +1 +0 +0 +0 + +0.2515625 +0.6015625 + + +0.2515625 +0.7109375 + + + +1 +0 +0 +0 + +0.2515625 +0.3828125 + + +0.2515625 +0.4921875 + + + +1 +0 +0 +0 + +0.2515625 +0.1640625 + + +0.2515625 +0.2734375 + + + +1 +0 +0 +0 + +0.30625 +0.109375 + + +0.30625 +0.21875 + + + +1 +0 +0 +0 + +0.30625 +0.546875 + + +0.30625 +0.65625 + + + +1 +0 +0 +0 + +0.30625 +0.328125 + + +0.30625 +0.4375 + + + +1 +0 +0 +0 + +0.3609375 +0.7109375 + + +0.3609375 +0.8203125 + + + +1 +0 +0 +0 + +0.3609375 +0.4921875 + + +0.3609375 +0.6015625 + + + +1 +0 +0 +0 + +0.3609375 +0.2734375 + + +0.3609375 +0.3828125 + + + +1 +0 +0 +0 + +0.415625 +0.21875 + + +0.415625 +0.328125 + + + +1 +0 +0 +0 + +0.415625 +0.65625 + + +0.415625 +0.765625 + + + +1 +0 +0 +0 + +0.415625 +0.4375 + + +0.415625 +0.546875 + + + +1 +0 +0 +0 + +0.4703125 +0.6015625 + + +0.4703125 +0.7109375 + + + +1 +0 +0 +0 + +0.4703125 +0.3828125 + + +0.4703125 +0.4921875 + + + +1 +0 +0 +0 + +0.4703125 +0.8203125 + + +0.4703125 +0.9296875 + + + +1 +0 +0 +0 + +0.4703125 +0.8203125 + + +0.525 +0.875 + + + + + +0.04375 +0.328125 +0.0875 +0.65625 +0.04375 +0.328125 +0 +0 +0 +0 + + +0 + + +#dc7e5f +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.04375 +0.328125 +0.0875 +0.65625 +0.04375 +0.328125 +0 + + +0 +0 +0 +0 + +0 +0 + + +0 +0.65625 + + +0.0875 +0.65625 + + +0.0875 +0 + + +0 +0 + + + + + +0.35 +0.896875 +0.4375 +0.48125 +0.21875 +0.240625 +0 +0 +0 +0 + + +0 + + +0.21875 +0.240625 +0.4375 +0.48125 +0.21875 +0.240625 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.4375 +0.48125 + + +0 +0.04375 + + +0 +0 + + + + + +0.04375 +0.678125 +0.175 +0.04375 +0.0875 +0.021875 +0 +0 +0 +0 + + +0 + + +0.0875 +0.021875 +0.175 +0.04375 +0.0875 +0.021875 +0 + + +0 +0 +0 +0 + +0 +0.04375 + + +0 +0 + + +0.175 +0 + + +0.175 +0.04375 + + +0 +0.04375 + + + + + +0.2625 +0.91875 +0.6125 +0.4375 +0.30625 +0.21875 +0 +0 +0 +0 + + +0 + + +0.30625 +0.21875 +0.6125 +0.4375 +0.30625 +0.21875 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.4375 +0.4375 + + +0.6125 +0.4375 + + +0.175 +0 + + +0 +0 + + + + + +0.04375 +0.328125 +0.0875 +0.4375 +0.04375 +0.21875 +0 +0 +0 +0 + + +0 + + +0.04375 +0.21875 +0.0875 +0.4375 +0.04375 +0.21875 +0 + + +1 +0 +0 +0 + +0.0875 +0.4375 + + +0 +0.4375 + + + +1 +0 +0 +0 + +0.0875 +0.328125 + + +0 +0.328125 + + + +1 +0 +0 +0 + +0.0875 +0.21875 + + +0 +0.21875 + + + +1 +0 +0 +0 + +0.0875 +0.109375 + + +0 +0.109375 + + + +1 +0 +0 +0 + +0.0875 +0 + + +0 +0 + + + + + +0.2625 +0.56875 +0.6125 +1.1375 +0.30625 +0.56875 +0 +0 +0 +0 + + +0 + + +0.30625 +0.56875 +0.6125 +1.1375 +0.30625 +0.56875 +0 + + +0 +0 +0 +0 + +0.04375 +0 + + +0.04375 +0.65625 + + +0 +0.65625 + + +0 +0.7 + + +0.4375 +1.1375 + + +0.6125 +1.1375 + + +0.6125 +1.09375 + + +0.56875 +1.05 + + +0.56875 +0.4375 + + +0.13125 +0 + + +0.04375 +0 + + + + + +0 +0 +0.62969292634722 +0.25555555555556 +-0.125 +0.32777777777778 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.31484646317361 +0.12777777777778 +0.62969292634722 +0.25555555555556 +0.31484646317361 +0.12777777777778 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +0.62969292634722 +0 + + +0.62969292634722 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Firewall + + + + + +6.1285714285714 +4.4178571428571 +1.5 +0.25 +0.75 +0.125 +-7.4014868308344E-17 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.75 +0.125 +1.5 +0.25 +0.75 +0.125 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0.25005 +0.5 +0.25005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.49995 +-0.25 +0.49995 +0.125 +0 +0 +1 +Connect To Network Device + + +1.00005 +-0.25 +1.00005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +0.5 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +1.249995 +0.5 +1.249995 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +-0.024999999999998 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +0.625 +0.125 +0.625 +0.125 +0 +0 +1 +Connect To Network Device + + +0.875 +0.125 +0.875 +0.125 +0 +0 +1 +Connect To Network Device + + +1 + + + +0.0625 +0.125 +0 +0 +0 +0 + + + +1.5 +0.125 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.0625 +0.015625 + + +0.0625 +0.234375 +0.015625 +0.125 +-1.5707963267949 +2.3 + + +0.0625 +0.015625 +0.109375 +0.125 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.0625 +0.25 + + +1.4375 +0.25 + + +1.4375 +0 +1.5 +0.125 +-1.5707963267949 +2 + + +0.0625 +0 + + +0.0625 +0.25 +0 +0.125 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +0.25005 +0.5 + + +0.25005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.49995 +-0.25 + + +0.49995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.00005 +-0.25 + + +1.00005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +0.5 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.249995 +0.5 + + +1.249995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +-0.024999999999998 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.625 +0.125 + + +0.625 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.875 +0.125 + + +0.875 +0.125 + + +0.75 +0.125 + + + + + +4.8674107142857 +4.4214285714286 +1.1473436629307 +0 +0.57367183146537 +0 +-0.0062256005017924 +0 +0 +0 + + +4.29375 +4.425 +5.4410714285714 +4.4178571428571 + + +0 +0 +0 +0 +0 + + +5 + + +0.57367183146537 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.0062256005017924 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.57367183146537 +0 +0.57367183146537 +0 +0 +0 +0 +Curve Position + + +0.57367183146537 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +1.1473436629307 +0 +0.57367183146537 +0 +0 +1 + + + + + +6.1571428571429 +4.9071428571429 +1.4 +0.5 +0.7 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4 +0 + + +1.4 +0.5 + + +0 +0.5 + + +0 +0 + + +192.168.1.0/24 + + + +3.59375 +4.4321428571428 +0.78762956498131 +0 +0.39381478249066 +0 +-0.018138600054222 +0 +0 +0 + + +3.2 +4.4392857142857 +3.9875 +4.425 + + +0 +0 +0 +0 +0 + + +5 + + +0 +0 +0 +1 +0 +0 +0 +3 +2 +2 +2 +0 + +0 +0 + + +0.39381478249066 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0.018138600054222 + + +0.39381478249066 +0 +0.39381478249066 +0 +0 +0 +0 +Curve Position + + +0.39381478249066 +0 +0 +0 +0 +0 + + + +1 +0 +0 +0 + +0 +0 + + +0.78762956498131 +0 +0.39381478249066 +0 +0 +1 + + + + + +3.7 +4.6 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth0 + + + +4.7571428571429 +4.5928571428571 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth1 + + + +6.8928571428571 +3.8857142857143 +3.3 +0.6 +1.65 +0.3 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0 +0 + + +3.3 +0 + + +3.3 +0.6 + + +0 +0.6 + + +0 +0 + + +192.168.1.8-192.168.1.15 + + + +6.15 +5.35 +2.1 +0.5 +1.05 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.1 +0 + + +2.1 +0.5 + + +0 +0.5 + + +0 +0 + + +LOC Zone + + + +6.15 +3.45 +2.1 +0.5 +1.05 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.1 +0 + + +2.1 +0.5 + + +0 +0.5 + + +0 +0 + + +LOC1 Zone + + + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + + + + + + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/MultiZone2.vsd b/Shorewall-docsN/images/MultiZone2.vsd new file mode 100755 index 000000000..e3a6a4113 Binary files /dev/null and b/Shorewall-docsN/images/MultiZone2.vsd differ diff --git a/Shorewall-docsN/images/MultiZone3.png b/Shorewall-docsN/images/MultiZone3.png new file mode 100755 index 000000000..d5fd9888e Binary files /dev/null and b/Shorewall-docsN/images/MultiZone3.png differ diff --git a/Shorewall-docsN/images/MultiZone3.vdx b/Shorewall-docsN/images/MultiZone3.vdx new file mode 100755 index 000000000..b36c333f8 --- /dev/null +++ b/Shorewall-docsN/images/MultiZone3.vdx @@ -0,0 +1,13850 @@ + + + + + +MultiZone1 +TEastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAABcBAADXAAAAAAAAAAAAAAA/GwAArxMAACBFTUYAAAEA7MUCAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAATMUCAAAAAAAAAAAAFwEAANcAAAAAAAAAAAAAABg +BAADYAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADAxAIAKAAAABgBAADYAAAAAQAYAAAAAADAxAIAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////+fn57+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v9/f3///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////1dgVwooChBAEBBAEBBAEBBAEBBAEBBAEBBAEBBA +EBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAE +BBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEB +BAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEAwwDDRANP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////f397+/v7+/v7+/v/f39// +//////////////////////////////////////////+fn57+/v7+/v8fHx/////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////8fHx1hYWBAQEEBAQEBAQEBAQBgYGGBgYNfX1////////////////////////////4 ++PjzAwMBgYGEBAQEBAQDg4OCAgIIeHh/f39////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAC/ADBAMP///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////f393h4eDg4OKenp/f39////////////+/v75+fnzAwMJe +Xl////////////////9fX1zg4OHBwcM/Pz////////////////9/f33h4eDAwMM/Pz/////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////f391BQU +IeHh/////////////////////////////////f392hoaGBgYP///////8/Pzzg4OMfHx///////// +///////////////////////9fX1zg4OLe3t////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////1hYWKenp/////////////////////////////////// +/////////5eXl2hoaN/f30BAQN/f3/////////////////////////////////////////f390hIS +L+/v///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////////////2hoaJeXl//////////// +////////////////////////////////////////3BwcCAgINfX1///////////////////////// +///////////////////////+/v7zg4ONfX1////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////1RgVACf +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAC/ADBAMP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////7+/v0BAQP////////////////////////////////////////////////// +/////////9/f3////////////////////////////////////////////////////////8/PzzAwM +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////f39zg4OM/Pz///////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////2hoaJeXl/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////4+Pj3BwcP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///+fn5yAgIPf39////////////////////////////////////////////////////////////// +//////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////xgYGOfn5///////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////3BwcI+Pj/////////////////////////////////// +/////////////////////////////////////////////////////////////////////1RgVACfA +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAC/ADBAMP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////6+vr1BQUP/////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////9 +/f3yAgIP///////////////////////////////////////////////////////////////////// +//////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////// +//////////////////////////////5+fn////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////7e3t39/f4eHh0hISK+vr////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////0hISHBwcH9/f4eHh9/f3//////////// +////////////////////////////////////////////////////////////////////////////1 +RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////////////////////////////////////w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/ +//wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/// +wAAAP///wAAAP///9/f3///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////f39 +1BQUEhISH9/f3h4eGBgYP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////7+/v2BgYH9/f3h4eCgoKJ+fn/////////////////////////////////////////// +/////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD3AADnAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AADnAAD3AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////////// +//////////////////////5+fn////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////1BQUKenp////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////f391hYWKenp//////////// +////////////////////////////////////////////////////////////////////1RgVACfAA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAC/ADBAMP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//9/f36+vr39/f39/f39/f0BAQEBAQEBAQEBAQEBAQHBwcH9/f39/f7e3t7+/v/f39/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////3BwcI+Pj//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////+/v7ygoKOfn5/////////////////////////////////////////// +/////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////// +/////////////////////////////////////////////////////////////////////zs7OwAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZGUBAQGhoaGpqamtra6SkpKenp6mpqa +ysrKurq35+fm5ubmxsbDw8PDU1NQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAACkpKe/v7/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////8fHxzg4OP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////7e3t0hISP +///////////////////////////////////////////////////////////////////////////1R +gVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////////////////////////////////////// +//////////////////////////////4+PjwICAikpKS0tLS0tLS0tLS0tLS0tLRwcHAAAAB0dHTw8 +PHNzc62trcrKys3NzdDQ0NTU1NfX19vb29/f3+Li4uXl5eTk5ODg4N3d3dnZ2dbW1tLS0s/Pz8zMz +KmpqY2NjWBgYDU1NSMjIwAAAAAAACIiIi0tLS0tLS0tLS0tLSUlJRAQENnZ2f//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////2BgYJ+fn//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////0BAQL+/v/////////////////////////////////////////////// +/////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////////////// +/////////////////////////////////////////////////////////z8/Pzs7O3h4eHt7e319f +X9/f4KCgoWFhZmZmbi4uLy8vL+/v8LCwsbGxsrKys3NzdDQ0NTU1NfX19vb29/f3+Li4uXl5eTk5O +Dg4N3d3dnZ2dbW1tLS0s/Pz8zMzMjIyMTExMHBwb29vbq6ure3t7Ozs4+Pj4GBgX9/f3x8fHl5eXZ +2dh8fHyYmJu/v7/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////f39xAQEPf39/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////39/f39/f///// +///////////////////////////////////////////////////////////////////1RgVACfAAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AACfAABgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAC/ADBAMP///////////////////////////////////////////////////////// +//////////////////////z8/P05OTqCgoKSkpKenp6qqqq2trbGxsbW1tbi4uLy8vL+/v8LCwsbG +xsrKys7OztbW1tnZ2dvb2+Dg4Nvb29vb29zc3Nzc3Nra2tzc3N/f39ra2tfX19TU1MzMzMjIyMTEx +MHBwb29vbq6ure3t7Ozs7CwsKysrKmpqaWlpaKiop6eniwsLF5eXjMzM+/v7///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////6enp1hYWP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////7+/v0BAQP/////////////////////////////////////// +////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAABgAAD/AAD/AAD/AAD/AAD/AACPAAD +/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////////// +////////////////////////////////////////////////////////////////z8/P05OTqCgoK +SkpKenp6qqqq2trbGxsbW1tbi4uLy8vMHBwc3NzdXV1dXV1c/Pz8vLy8XFxbm5ucXFxcfHx8jIyMn +JycnJycjIyMbGxsLCwr29vcfHx8rKytPT09bW1tLS0szMzL29vbq6ure3t7Ozs7CwsKysrKmpqaWl +paKiop6eniwsLHNzc319fTMzM+/v7//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////39/f39/f//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////xA +QEO/v7////////////////////////////////////////////////////////////////////1Rg +VACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD3AA1MDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw8DADvAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////////////////////////////////////////// +/////////////////////////////z8/P5qamsPDw8XFxcbGxsbGxsfHx8nJycrKytbW1tDQ0M/Pz +729vbi4uMTExM3N +zdDQ0NTU1NDY0Nvb29/f3+Li4t7m3uTk5ODg4Nbe1tnZ2dbW1tLS0s/Pz8zMzL6+vri4uMDAwNPT0 +87OztPT08nJycjIyMfHx8bGxsXFxcTExMLCwnFxcXNzc5qamn19fTMzM+/v7///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////2BgYJ+fn///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////0BAQL+/v//////////////////////////////////////////// +////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAOGAwgdCAg1CI +SEhMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwHh4eExMTMDAwMDAwMDAwMDAwMDAwDAwMMDAwMDAwMD +AwMDAwMDAwE9PT3h4eMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwGhtaAplCgD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////////////////// +////////////////////////////////////////////////////////z8/P5GRkbCwsLGxsbKysr +Ozs7GxsaWlpaenp7Gxsba2tr+/v8LCwsbGxrHRsVrpWtDQ0NTU1FjvWJbmlt/f383lzSv6K+Tk5OD +g4FrxWpXlldbW1sXVxU7tTszMzMjIyMTExMHBwby8vLKysq2traampqenp7S0tLOzs7GxsbCwsK+v +r29vb3p6epqampqamn19fTMzM+/v7//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////0BAQL+/v//////////////////////////////////////////////////////////// +////////////////39/f////39/f////39/f////39/f////39/f////39/f////39/f///////// +///////////////////////////////////////////////////////////////////0hISLe3t// +//////////////////////////////////////////////////////////////////1RgVACfAAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAw8DAldCQCXAEdRR8DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw +Hh4eFdXV8DAwJCQkMDAwJCQkMDAwJCQkMDAwJCQkMDAwJCQkMDAwGZmZnh4eMDAwMDAwMDAwMDAwM +DAwMDAwMDAwMDAwMDAwMDAwKKiogolCgD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAC/ADBAMP////////////////////////////////////////////////////////// +/////////////////////z8/P05OTqCgoKSkpKenp6qqqq2trbGxsbW1tbi4uLy8vL+/v8LCwsbGx +pfXlzPyM9DQ0NTU1FHwUYnpid/f38bmxh38HeTk5ODg4FPyU4fnh9bW1rjYuBr5GszMzMjIyMTExM +HBwb29vbq6ure3t7Ozs7CwsKysrKmpqaWlpaKiop6eniwsLGpqaqOjo5qampqamltbW2NjY////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////ygoKNfX1////////////////// +//////////////////////////////////////////////////////yAgIP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///5+fn//////////////////////////////////////// +////////////////////////////////zw8PCgoKEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE +BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBUYFQAoAABAAABAAABAAABAAABAAABAAABAAABAAAECAQA +gAAB9ACQ0JMDAwMDAwHJycjAwMDAwMDAwMDAwMDAwMB4eHigoKDAwMMDAwAAAAMDAwAAAAMDAwAAA +AMDAwAAAAMDAwBgYGD09PR4eHjAwMDAwMDAwMDAwMDAwMGBgYMDAwMDAwMDAwMDAwMDAwAAAAABAA +ABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAAAwAAwQDEBAQEBAQEBAQEBAQE +BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBAQEDc3Ny0tLSk +pKSoqKnV1da2trbGxsbW1tbi4uLy8vL+/v8LCwsbGxpfXlzPyM9DQ0NTU1FHwUXTsdK6urpS0lBD3 +EKCwoKioqEblRnPrc9bW1rjYuBr5GszMzMjIyMTExMHBwb29vbq6ure3t7Ozs7CwsKysrKmpqaWlp +aKiop6enisrK3Nzc42NjaOjo5qammBgYFtbW///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////zAwMM/Pz///////////////////////////////////////////////////// +///////////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/ +//////////////////////////////////////////////////////////////////////////0ND +Q4mJib+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/vz9IP +wB3AAC/AAC/AAC/ +AAC/AAC/AAC/AAC/AAC/AAghCARSBACiADhGOMDAwMDAwEhISFpaWpCQkJCQkJCQkJCQkJCQkJaWl +sDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAwAAAAMDAwJycnJCQkJCQkJCQkJCQkJCQkGxsbDAwMM +DAwMDAwMDAwMDAwK6urgYTBgC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC +/AACPACQwJL+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/ +v7+/v7+/v7+/vy8vL0RERBUREb+NjWA6OlVVVa2trbGxsbW1tbi4uLy8vL+/v7a2toiIiFNjUw3MD +QR0BAAAAAAwAACnADE5MTo6Oh2dHSSEJDo6Oh1NHQCnAAAIAAAIAAfGByGRIWpqapmZmcHBwb29vb +q6ure3t7Ozs7CwsKysrKmpqaWlpaKiop6eniwsLHNzc5qamo2NjaOjo2BgYFtbW////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////0BAQL+/v////////////////////////// +//////////////////////////////////////////////1hYWP///0BAQP///0BAQP///0BAQP// +/0BAQP///0BAQP///0BAQP///7e3t//////////////////////////////////////////////// +////////////////////////ygoKNfX1///////////////////////////////////////////// +///////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAVuBQs0CwdmB3J +ycsDAwMDAwEhISHh4eMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDA +wMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwJCQkDAwMMDAwMDAwMDAwMDAwISEhAtMCwD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP//////////////////////// +///////////////////////////////////////////////////////z8/P0lJSRgXFwAAAAAAAFd +XV4KCgoWFhYiIiG1tbVhYWCoqKgwMDEhISIGBgaysrN/f3+bm5ubm5ubm5ubm5ubm5ubm5ubm5ubm +5ubm5ubm5ubm5ubm5snJyaWlpWxsbDMzMwwMDDs7O11dXX5+foaGhoSEhIGBgY6OjqWlpaKiop6en +iwsLHNzc5qampqamo2NjWZmZltbW///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////1hYWKenp///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////wgICPf39/// +/////////////////////////////////////////////////////////////////1RgVACfAAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AADfAAUOBQAAACAuICQ0JCQ0JA4UDhchFyQ0JCQ0JCQ0JCQ0JC +Q0JCQ0JCQ0JCQ0JCQ0JCQ0JCQ0JAAAACQ0JCQ0JCQ0JCQ0JCQ0JCQ0JCQ0JCQ0JCQ0JCQ0JCQ0JBs +nGwkNCSQ0JCQ0JCQ0JCQ0JBQpFADPAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAC/ADBAMP///////////////////////////////////////7e3t////0BAQP///0BAQ +P///0BAQP///1hYWP///3h4eAAAAAAAAAAAAAAAADo6Ojo6Ojo6Ojo6Ol5eXnp6erOzs+bm5ubm5u +bm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5tj +Y2J6ennNzc0hISDo6Ojo6Ojo6OiQkJAAAAAAAAAAAAA0NDY+Pj5qampqampqamlhYWFVVVf////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////5+fn2BgYP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////+fn5xgYGP///////////////////////////////////////// +//////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADn +AAC/AAC/AAC/AAC/AABIAAB4AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAAAAAC/A +AC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AACPAAAwAAC/AAC/AAC/AAC/AADfAAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////// +//////////////////////////wAAAP///wAAAP///wAAAP///wAAAP///////////56enlhYWObm +5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5 +ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5u +bm5ubm5ubm5ufn56SkpJqampqammBgYFtbW////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// ++/v7xAQEP//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////5+fn2BgYP////////////// +/////////////////////////////////////////////////////////1RgVACfAAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AABAAAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAC/ADBAMP///////////////////////////////////////5+fn////wAAAP///wAAAP///wAAA +P///yAgIP///////////56enlhYWObm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5u +bm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ub +m5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ufn56SkpJqammBgYFtbW/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////zg4OMfHx/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////0BAQL+/v////////////////////////////////////////////////// +//////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AABAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////////////// +//////////////////39/f////39/f////39/f////39/f////////////////////56enlhYWObm +5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5 +ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5u +bm5ubm5ubm5ufn56SkpGBgYFtbW////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////5eXl2hoaP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////9/f3yAgIP/////////// +////////////////////////////////////////////////////////////////1RgVACfAAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ +AABAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAC/ADBAMP//////////////////////////////////////////////////////////// +///////////////////////////////////56enlhYWObm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ub +m5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm +5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ufn52ZmZltbW//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////0BAQL+/v//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////2BgYJ+fn/////////////////////////////////////////////// +/////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AABAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////////// +///////////////////////////////////////////////////////////////////////////// +////56eni0tLTs7 +Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O +zs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Oz +s7Ozs7Ozs7OyUlJVxcXP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////9/f3ygoKO/v7////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////4eHh3h4eP/////////////////////// +////////////////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABgAACfAAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AABAAAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AC/ADBAMP//////////////////////////////////////////////////////////////////// +///////////////////////////////////8/Pz7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v+fn5//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////7e3t0BAQKenp////9/f38/Pz +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////+/v77+/v/f +398/Pz3BwcGBgYP////////////////////////////////////////////////////////////// +/////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AACvAADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACPAAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADnAACnAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////8/Pz1hYWAAAACAgIBAQEN/f3/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////2hoaDAwMAgICDAwMI+Pj///////////////////////// +///////////////////////////////////////////////////////////////1RgVACfAAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AAC/AAD/AAC/AAD/ +AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/A +AD/AAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAC/ADBAMP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///39/f39/f////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////f39xgY +GO/v7//////////////////////////////////////////////////////////////////////// +/////////////// +/////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AAgAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAA +D/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////9/f3yAgIP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////5+fn2BgYP//////////////////////////////////////////////// +///////////////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/ +AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAA +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +C/ADBAMP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////1 +BQUK+vr////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////zAwMM/Pz/////// +///////////////////////////////////////////////////////////////////////////// +////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAAgAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD +/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////9/f3ygoKPf39//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////6enp1hYWP///////////////////////////////////////////// +//////////////////////////////////////////////////////////////1RgVACfAAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAC/ADBAMP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////3BwcI ++Pj////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////+/v7ygoKOfn5/////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////f39zAwMNfX1//////////////////////////// +////////////////////////7e3t1BQUPf39///////////////////////////////////////// +///////////2BgYJ+fn////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC +/ADBAMP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////9/f3zg4OOfn5////////////////////////////////////////////8/Pz0BAQI+Pj2Bg +YP///////////////////////////////////////////////4eHh3h4eP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////8/Pzzg4ON/f3///////////// +///////////////////////8fHxzg4OOfn5////39/f2BgYPf39////////////////////////// +//////////5eXl2BgYP////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////1RgVACfAAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAC/ADBAMP/////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////8fHxzAwMKenp////////////////////////////39/fzg4ON/f3////////////5+fnzAw +ML+/v////////////////////////+fn50hISGhoaP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////+/v71hYWBgYGGhoaL+/v7+/v6 +enp2BgYBAQEH9/f////////////////////////9fX10BAQCgoKIeHh7+/v7+/v5eXl0hISBgYGLe +3t/////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ +ADBAMP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////+fn55eXl0BAQEBAQFhYWJ+fn+/v7//////////////////////// +////////////9fX13h4eEBAQEBAQGhoaLe3t///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AADnAAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/A +AC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AA +AAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AACfAAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AACfAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/A +AAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAA +AAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AACfAAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/A +DBAMP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AADPAAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AA +B/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AD +BAMP///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADB +AMP////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////1RgVACfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/ADBAMP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////1RgVABQAAB/AAB/AAB/AAB/AAB/A +AB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AA +B/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB +/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AAB/AABgADBA +MP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////8 +/Pz39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39 +/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/ +f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f +39/f39/f39/f39/f39/f39/f6+vr///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////w4AAAAUAAAAAAAAABAAAAAUAAAA +2003-11-09T10:53:13 +2004-02-07T10:27:56 +2004-02-07T10:27:48 +2003-11-09T10:53:13 + + +9 +295 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +18 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +20 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +3 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +3 +1 +0 +2 +0 +0 +1 +2 +0 + + + + +1 +1 +1 +0 + + +1 +#8a8aff +31 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0016666666666667 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + + +2 +0 +1 +0 + + +2 + + + +Visio Network Solutions +
http://officeupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + + + +11 +8.5 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Apple +255 +0 +1 +1 +0 +0 +1 +1 +Apple +0 + + +Digital +255 +0 +1 +1 +0 +0 +1 +1 +Digital +0 + + +Cray +255 +0 +1 +1 +0 +0 +1 +1 +Cray +0 + + +IBM +255 +0 +1 +1 +0 +0 +1 +1 +IBM +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +2.55 +3.85 +2.1 +1.7 +1.05 +0.85 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +0 +0.85 +0 +0 +0 +0 + + + +0.7411761 +1.7 +0 +0 +0 +0 + + + +1.35891 +1.7 +0 +0 +0 +0 + + + +0.7411761 +0 +0 +0 +0 +0 + + + +1.3588239 +0 +0 +0 +0 +0 + + + +2.1 +0.85 +0 +0 +0 +0 + + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.30882352941176 +0.43849551946547 + + +1.05 +0.18646896267017 +0.6453592561798 +0.016134548522685 +0 +0.58131487889274 + + +1.7911764705882 +0.43849551946547 +1.4546407438202 +0.01613454852268 +0 +0.58131487889274 + + +2.1 +0.85 +2.0042331899954 +0.51400799860712 +0 +0.58131487889274 + + +1.7911764705882 +1.2615044805345 +2.0042331899954 +1.1859920013929 +0 +0.58131487889274 + + +1.05 +1.5135310373298 +1.4546407438202 +1.6838654514773 +0 +0.58131487889274 + + +0.30882352941176 +1.2615044805345 +0.6453592561798 +1.6838654514773 +0 +0.58131487889274 + + +0 +0.85 +0.095766810004566 +1.1859920013929 +0 +0.58131487889274 + + +0.30882352941176 +0.43849551946547 +0.09576681000457 +0.51400799860712 +0 +0.58131487889274 + + +Internet + + + +7.46 +4 +0.8 +0.3 +0.4 +0.15 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.8 +0 + + +0.8 +0.3 + + +0 +0.3 + + +0 +0 + + +eth0 + + + +5.6 +4.0228571428571 +2.5 +2.6 +1.25 +1.3 +0 +0 +0 +0 + + +3 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.5 +0 + + +2.5 +2.6 + + +0 +2.6 + + +0 +0 + + + + + + +5.5 +4.3764285714286 +2.1 +1.3071428571429 +1.05 +0.65357142857144 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +8 + +0 +0 + + + + +1.0285714285714 +0.125 +1.5 +0.25 +0.75 +0.125 +-7.4014868308344E-17 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0.75 +0.125 +1.5 +0.25 +0.75 +0.125 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1 + + + +0.25005 +0.5 +0.25005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.49995 +-0.25 +0.49995 +0.125 +0 +0 +1 +Connect To Network Device + + +1.00005 +-0.25 +1.00005 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +0.5 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +1.249995 +0.5 +1.249995 +0.125 +0 +0 +1 +Connect To Network Device + + +0.75 +-0.024999999999998 +0.75 +0.125 +0 +0 +1 +Connect To Network Device + + +0.625 +0.125 +0.625 +0.125 +0 +0 +1 +Connect To Network Device + + +0.875 +0.125 +0.875 +0.125 +0 +0 +1 +Connect To Network Device + + +0.0625 +0.125 +0 +0 +0 +0 + + + +1.5 +0.125 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.0625 +0.015625 + + +0.0625 +0.234375 +0.015625 +0.125 +-1.5707963267949 +2.3 + + +0.0625 +0.015625 +0.109375 +0.125 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.0625 +0.25 + + +1.4375 +0.25 + + +1.4375 +0 +1.5 +0.125 +-1.5707963267949 +2 + + +0.0625 +0 + + +0.0625 +0.25 +0 +0.125 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +0.25005 +0.5 + + +0.25005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.49995 +-0.25 + + +0.49995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.00005 +-0.25 + + +1.00005 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +0.5 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +1.249995 +0.5 + + +1.249995 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.75 +-0.024999999999998 + + +0.75 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.625 +0.125 + + +0.625 +0.125 + + +0.75 +0.125 + + + +1 +0 +0 +0 + +0.875 +0.125 + + +0.875 +0.125 + + +0.75 +0.125 + + + + + +1.0571428571429 +0.61428571428573 +1.4 +0.5 +0.7 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.4 +0 + + +1.4 +0.5 + + +0 +0.5 + + +0 +0 + + +192.168.1.0/24 + + + +1.05 +1.0571428571429 +2.1 +0.5 +1.05 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.1 +0 + + +2.1 +0.5 + + +0 +0.5 + + +0 +0 + + +LOC Zone + + + + + +8.5660714285714 +3.7386607142857 +1.725 +0.43125 +0.8625 +0.215625 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +0.8625 +-0.12777777777778 +0.8625 +0.215625 +3 +2 +0 +Reposition Text + + +0 +0 +0.5 +1 +0 +0 + + +0.8625 +0.215625 +0 +0 +0 +0 + + + +1.8328125 +0.3234375 +0 +0 +0 +0 + + + +0 +0.3234375 +0 +0 +0 +0 + + + +0.8625 +0 +0 +0 +0 +0 + + + +0.9703125 +0.5390625 +0 +0 +0 +0 + + + + + +0.9837890625 +0.3234375 +1.913671875 +0.646875 +0.9568359375 +0.3234375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.9568359375 +0.3234375 +1.913671875 +0.646875 +0.9568359375 +0.3234375 +0 + + +0 +0 +0 +0 + +0 +0.05390625 + + +0 +0 + + +1.644140625 +0 + + +1.644140625 +0.05390625 + + +0 +0.05390625 + + + +0 +0 +0 +0 + +1.644140625 +0 + + +1.698046875 +0.05390625 + + +1.644140625 +0.05390625 + + +1.644140625 +0 + + + +0 +0 +0 +0 + +1.6980468763917 +0.43125 + + +1.913671875 +0.646875 + + +1.9136718740722 +0.26953125 + + +1.6980468754639 +0.05390625 + + +1.6980468763917 +0.43125 + + + + + +0.9703125004639 +0.47166652680699 +1.9406249990721 +0.35041694638603 +0.97031249953606 +0.17520847319301 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.97031249953606 +0.17520847319301 +1.9406249990721 +0.35041694638603 +0.97031249953606 +0.17520847319301 +0 + + +0 +0 +0 +0 + +1.9406249990721 +0.35041694638603 + + +0.21562499907217 +0.35041694638603 + + +0 +0.13479194638603 + + +0 +0.026979446386031 + + +1.7249999999999 +0.026979446386031 +0.83554687499998 +2.6321386030615E-5 +0 +0.99999999999999 + + +1.7249999999999 +0.13479194638603 + + +1.9406249990721 +0.35041694638603 + + + + + +1.8328125 +0.3369140625 +0.215625 +0.242578125 +0.1078125 +0.1212890625 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.1078125 +0.1212890625 +0.215625 +0.242578125 +0.1078125 +0.1212890625 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.215625 +0.215625 + + +0.215625 +0.242578125 + + +0 +0.026953125 + + +0 +0 + + + + + +1.8328125 +0.3234375 +0.215625 +0.242578125 +0.1078125 +0.1212890625 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.1078125 +0.1212890625 +0.215625 +0.242578125 +0.1078125 +0.1212890625 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.215625 +0.215625 + + +0.215625 +0.242578125 + + +0 +0.026953125 + + +0 +0 + + + + + +0.9703125 +0.3234375 +1.940625 +0.646875 +0.9703125 +0.3234375 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.9703125 +0.3234375 +1.940625 +0.646875 +0.9703125 +0.3234375 +0 + + +1 +0 +0 +0 + +0.026953125 +0 + + +0.026953125 +0.05390625 + + +0 +0.05390625 + + +0 +0.43125 + + +0.215625 +0.646875 + + +1.940625 +0.646875 + + +1.940625 +0.26953125 + + +1.67109375 +0 + + +0.026953125 +0 + + + + + +0.86250000092783 +0.2021484375 +1.725 +0.458203125 +0.8625 +0.2291015625 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.8625 +0.2291015625 +1.725 +0.458203125 +0.8625 +0.2291015625 +0 + + +0 +0 +0 +0 + +0.86249999904456 +0.37734375 + + +0.53906249904456 +0.37734375 +0 +0 +0.49946975323462 +3 + + +0.45811689694502 +0.44490005987396 +0 + + +0.26953125 +0.458203125 +0 + + +0.16171875 +0.458203125 +0.2954319565221 + + +0 +0.458203125 + + +0 +0.080859374999998 + + +0.16171874907218 +0.080859374999998 + + +0.26953124907217 +0.080859374999998 +0 +0 +0.49946975323462 +3 + + +0.458116897459 +0.06755630987396 +0 + + +0.53906249907217 +0 +0 + + +0.86249999907217 +0 +0.20403779671252 + + +1.1859375 +0.026953125 +0 +0 +0.49946975323462 +3 + + +1.2668831002143 +0.053870993515355 +0 + + +1.4554687490722 +0.080859374999998 +0 + + +1.5632812490722 +0.080859374999998 +0.2954319565221 + + +1.7249999990722 +0.080859374999998 + + +1.725 +0.458203125 + + +1.56328125 +0.458203125 + + +1.45546875 +0.458203125 +0 +0 +0.49946975323462 +3 + + +1.2668831001692 +0.44495966597715 +0 + + +1.1859374990446 +0.37734375 +0 + + +0.86249999904456 +0.37734375 +0.20403779671252 + + + + + +0.86057477820562 +0.29128627231965 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.017327009418521 +0.058911830357144 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 + + +1 +0 +0 +0 + +0.034654018837042 +0.11782366071429 + + +0 +0.10396205357143 + + +0 +0 + + + + + +0.72195870677705 +0.2912862723232 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.017327009418521 +0.058911830357144 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 + + +1 +0 +0 +0 + +0.034654018837042 +0.11782366071429 + + +0 +0.10396205357143 + + +0 +0 + + + + + +0.58334263534634 +0.30168247768035 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.017327009418521 +0.058911830357144 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 + + +1 +0 +0 +0 + +0.034654018837042 +0.11782366071429 + + +0 +0.10396205357143 + + +0 +0 + + + + + +0.9991908496342 +0.2912862723232 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.017327009418521 +0.058911830357144 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 + + +1 +0 +0 +0 + +0.034654018837042 +0.11782366071429 + + +0 +0.10396205357143 + + +0 +0 + + + + + +1.1378069210606 +0.30168247768035 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.017327009418521 +0.058911830357144 +0.034654018837042 +0.11782366071429 +0.017327009418521 +0.058911830357144 +0 + + +1 +0 +0 +0 + +0.034654018837042 +0.11782366071429 + + +0 +0.10396205357143 + + +0 +0 + + + + + +0.10588727771354 +0.35809151785714 +0.10396205357143 +0.069308035714288 +0.051981026785714 +0.034654017857144 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.051981026785714 +0.034654017857144 +0.10396205357143 +0.069308035714288 +0.051981026785714 +0.034654017857144 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.10396205357143 +0 + + +0.10396205357143 +0.069308035714288 + + +0 +0.069308035714288 + + +0 +0 + + + + + +0.86250000092783 +0.188671875 +1.725 +0.1078125 +0.8625 +0.05390625 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.8625 +0.05390625 +1.725 +0.1078125 +0.8625 +0.05390625 +0 + + +0 +0 +0 +0 + +0.86249999811673 +0.026953125 + + +0.53906249811673 +0.026953125 +0 +0 +0.49946975323462 +3 + + +0.45811689601719 +0.094509434873961 +0 + + +0.26953124907217 +0.1078125 +0 + + +0.16171874907217 +0.1078125 +0.2954319565221 + + +0 +0.1078125 + + +0 +0.080859375 + + +0.16171875 +0.080859375 + + +0.26953125 +0.080859375 +0 +0 +0.49946975323462 +3 + + +0.45811689838683 +0.06755630987396 +0 + + +0.5390625 +0 +0 + + +0.8625 +0 +0.20403779671252 + + +1.1859375 +0 +0 +0 +0.49946975323462 +3 + + +1.2668831016132 +0.067556309873961 +0 + + +1.45546875 +0.080859375 +0 + + +1.56328125 +0.080859375 +0.2954319565221 + + +1.725 +0.080859375 + + +1.7249999990722 +0.1078125 + + +1.5632812490722 +0.1078125 + + +1.4554687490722 +0.1078125 +0 +0 +0.49946975323462 +3 + + +1.2668830992394 +0.093853767738893 +0 + + +1.1859374981167 +0.026953125 +0 + + +0.86249999811673 +0.026953125 +0.20403779671252 + + + + + +0.86250000092783 +0.1751953125 +1.725 +0.1078125 +0.8625 +0.05390625 +0 +0 +0 +0 + + +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0.8625 +0.05390625 +1.725 +0.1078125 +0.8625 +0.05390625 +0 + + +0 +0 +0 +0 + +0.86249999811673 +0.026953125 + + +0.53906249811673 +0.026953125 +0 +0 +0.49946975323462 +3 + + +0.45811689601719 +0.094509434873961 +0 + + +0.26953124907217 +0.1078125 +0 + + +0.16171874907217 +0.1078125 +0.2954319565221 + + +0 +0.1078125 + + +0 +0.080859375 + + +0.16171875 +0.080859375 + + +0.26953125 +0.080859375 +0 +0 +0.49946975323462 +3 + + +0.45811689838683 +0.06755630987396 +0 + + +0.5390625 +0 +0 + + +0.8625 +0 +0.20403779671252 + + +1.1859375 +0 +0 +0 +0.49946975323462 +3 + + +1.2668831016132 +0.067556309873961 +0 + + +1.45546875 +0.080859375 +0 + + +1.56328125 +0.080859375 +0.2954319565221 + + +1.725 +0.080859375 + + +1.7249999990722 +0.1078125 + + +1.5632812490722 +0.1078125 + + +1.4554687490722 +0.1078125 +0 +0 +0.49946975323462 +3 + + +1.2668830992394 +0.093853767738893 +0 + + +1.1859374981167 +0.026953125 +0 + + +0.86249999811673 +0.026953125 +0.20403779671252 + + + + + + +0 +0 +2.5196668846806 +0.25555555555556 +0.3973334423403 +0.25555555555556 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1.2598334423403 +0.12777777777778 +2.5196668846806 +0.25555555555556 +1.2598334423403 +0.12777777777778 +0 + + +1 +1 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +1 +0 +1 +0 + +0 +0 + + +2.5196668846806 +0 + + +2.5196668846806 +0.25555555555556 + + +0 +0.25555555555556 + + +0 +0 + + +Router (Shorewall Running Here) + + + + + +4.1955357142857 +3.8489285714286 +1.1910714285714 +-0.2 +0.5955357142857 +-0.1 +0 +0 +0 +0 + + +3.6 +3.85 +4.7910714285714 +3.8478571428572 + + +5 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +0.59446428571428 +-0.10107142857142 +0.55555555555555 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +-0.09892857142858 + + +0.1875 +-0.09892857142858 + + +0.1875 +-0.10107142857142 + + +1.1910714285714 +-0.10107142857142 + + + + + +6.9660714285714 +3.8471651785714 +-1.475 +0.2 +-0.73750000000001 +0.1 +0 +0 +0 +0 + + +7.7035714285714 +3.8464732142857 +6.2285714285714 +3.8478571428571 + + +5 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +-0.73680803571431 +0.10069196428571 +0.55555555555555 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0.099308035714294 + + +-0.1875 +0.099308035714294 + + +-0.1875 +0.10069196428571 + + +-1.475 +0.10069196428571 + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + + + + + + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/Netfilter.png b/Shorewall-docsN/images/Netfilter.png new file mode 100755 index 000000000..c4d393d98 Binary files /dev/null and b/Shorewall-docsN/images/Netfilter.png differ diff --git a/Shorewall-docsN/images/Netfilter.vdx b/Shorewall-docsN/images/Netfilter.vdx new file mode 100755 index 000000000..f8b5b2473 --- /dev/null +++ b/Shorewall-docsN/images/Netfilter.vdx @@ -0,0 +1,8844 @@ + + + + + +Netfilter +Tom Eastep + + +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAANcAAAAXAQAAAAAAAAAAAAD/FAAAixkAACBFTUYAAAEA7MUCAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAATMUCAAAAAAAAAAAA1wAAABcBAAAAAAAAAAAAANg +AAAAYAQAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADAxAIAKAAAANgAAAAYAQAAAQAYAAAAAADAxAIAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////0BAQP/// +0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP +///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0B +AQP///0BAQP///0BAQP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///7+/v////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////wAAAP///wAAAP///wAAAP///wAAAP/ +//wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///7+/v//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8fHx2BgYDAwMAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAABAQEEBAQIeHh+/v7///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////f393h4eDg4OJ+fn8/Pz//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////+/v77+/v3h4eCgoKLe3t//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+fn5zAwMIeHh/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+fn50hISIeHh/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//1hYWKenp/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////zg4OMfHx/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +6enp1hYWP//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////9fX1zAwMPf39///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////yAgIN/f3//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////2hoaJeXl//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////+/v7xAQEP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////5+fn2BgYP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////7e3t0hISP///////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////4WFhf///+bm5lFRUf///3R0dJSUlLGxsZSUlL+/v9nZ2WNjY6Ojo5SUlP///3R0d +IWFhbGxsYWFhf///4WFhfPz83R0dP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////8/PzzAwMP/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////5+fn2BgYP//// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////4WFhf///2NjY2NjY8zMzJSUlLGxsb+/v4WFhf///4WFhYWF +hXR0dHR0dMzMzMzMzP///4WFhYWFhf///4WFhVFRUfPz8//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////+/v7xAQEP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////8/PzzAwMP// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////4WFhZSUlL+/v3R0dP///3R0dKOjo7GxsXR0dObm5nR0dM +zMzGNjY6Ojo+bm5nR0dJSUlLGxsZSUlJSUlIWFhaOjo9nZ2f///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////7+/v0BAQP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////f39xAQEPf39/////////////////////////////////////////////////////////// +/////////////////////////////////////////////////4WFhXR0dP///3R0dP///////+bm5 +v///4WFhf///////////////////////////+bm5v///////+bm5oWFhf//////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////4+Pj3BwcP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////0hISLe3t////////////////////////////////////////// +///////////////////////////////////////////////////////////////////Pz8/////// +/+bm5v////////////////////////////////////////////////////////////////Pz8//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////0BAQL+/v////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////9/f3ygoKPf39///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////5+fn2BgYP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////5eXl2BgYP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////9fX1ygoK +O/v7/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////3h4eDg +4ONfX1/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////4eHhzAwMM/ +Pz/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////8fHxzAwMEBAQHh4eKenp7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v4eHh1 +hYWCgoKHh4ePf39////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////f397+/v4eHh1hYWEBAQEBAQEBAQEBAQEBAQEBAQE +BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB +AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQCEhIUBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA +QEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQHh4eKenp9fX1///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////2pqagEBAe/v7////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////2ZmZgkJCeDg4P/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////4+PjxAQEP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//4+PjxAQEP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////4+PjxAQEP///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////4+PjxAQEP//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////4+PjxAQEP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////4+PjxAQEP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////4+Pjx +AQEP///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////4+PjxAQEP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////4+PjxAQEP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////4+PjxAQEP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////4+PjxAQEP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////4+PjxAQEP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////+fn57+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/ +v7+/v2trawwMDL+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v+fn5// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/2BgYCgoKEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE +BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB +AQEBAQEBAQEBAQEBAQEBAQDw8PDIyMkBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA +QEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQEBA +QEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQCgoKGBgY +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///2BgYJ+fn////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////5+fn2BgYP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////2BgYJ+fn///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////5+fn2BgYP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////2BgYJ+fn//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////5+fn2BgYP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////2BgYJ+fn/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////5+fn2BgYP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////2BgYJ+ +fn/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////5+fn2BgYP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////7+/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////xAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM/Pz/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////5+fn2BgYP////////////////////////////// +/////////////////////////////////////////////////////////////////wAAAP/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////wAAAP//////////////////////// +///////////////////////////////////////////////////////////////////////0BAQL+ +/v/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////5+fn2BgYP///////////// +///////////////////////////////////////////////////////////////////////////// +/////wAAAP/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wAAAP/////// +///////////////////////////////////////////////////////////////////////////// +///////////0BAQL+/v////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////5+fn2 +BgYEBAQP///////////////////1hYWP///0BAQP///0BAQP///0BAQP///0BAQP///////////// +//////////////////////wAAAP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////wAAAP/////////////////////////////////////////////////////////////////// +////////////////////////////0BAQL+/v///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////5+f +n1RUVP///9/f3////////////////////wAAAP///wAAAP///wAAAP///wAAAP///5+fn//////// +////////////////////////wAAAP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////wAAAP///////////////////////////////////////////////////////////////// +//////////////////////////////0BAQL+/v/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////5+fn2BgYH9/f////////////////////4+Pj////39/f////39/f////39/f/// +/39/f////////////////////////////////////wAAAP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////wAAAP///39/f////////////////////wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///2BgYP///////////////////////0BAQL+/v////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////5+fn11dXf////f39////////////////////7+/v////7+ +/v////////////////////////////////////////////////////////wAAAP////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////wAAACAgIP///////////////////39/f//// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////0BAQL+/v///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////5+fn2BgYAAAAP//////////////// +///yAgIP///wAAAP///2BgYP///////////////////////////////////////////////////wA +AAP////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wAAAP///9/f3/////// +/////////////7+/v////7+/v////7+/v////7+/v////7+/v////9fX1//////////////////// +////0BAQL+/v///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////5+fn1dXV//// ++fn5////////////////////0BAQP///0BAQP//////////////////////////////////////// +///////////////wAAAP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////wA +AAI+Pj////////////////////7+/v////39/f////4+Pj/////////////////////////////// +/////////////////////0BAQL+/v//////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////5+fn2BgYP/ +///////////////////////////////////////////////////////////////////////////// +/////////////////wAAAP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +wAAAP///39/f////////////////////wAAAP///wAAAP//////////////////////////////// +///////////////////////0BAQL+/v////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////5+fn1RUVP///9/f3////////////////////wAAAP///wAAAP///wAAAP///////////// +//////////////////////////////////wAAAP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wAAAI+Pj////////////////////7+/v////39/f////4+Pj//////////// +////////////////////////////////////////0BAQL+/v///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////5+fn2BgYAAAAP///////////////////yAgIP///wAAAP///wAAAP +///39/f////////////////////////////////////////////wAAAP///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////wAAAP////////////////////////////////////// +/////////////////////////////////////////////////////////0BAQL+/v//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////5+fn11dXf////f39//////////////////// +7+/v////7+/v////7+/v////////////////////////////////////////////////wAAAP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////wAAAP///////////////////// +//////////////////////////////////////////////////////////////////////////0BA +QL+/v//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////5+fn2BgYP////////// +///////////////////////////////////////////////////////////////////////////// +////////wAAAP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////////wAAAP/////////////////// +////////////////////////////////////////////////////////////////////////////0 +BAQL+/v////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////5SUlBISEjQ0NDQ0ND +Q0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ +0NDQ0NDQ0NAUFBf////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wUFBTQ0 +NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0N +DQ0NDQ0NDQ0NDQ0NAsLC66urv//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +5+fnzg4OI+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4 ++Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+PjwAAAP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////wAAAI+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+P +j4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+PjyUlJb+/v//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////5+fn2BgYP///////////////////////////0BAQP///0BAQP///0BAQP/// +0BAQP///0BAQP///4eHh////////////////////////wAAAP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wAAAP///////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP/ +//0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///5+fn////0BAQL+/v/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////5+fn2BgYP///////////////////////wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////wAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////wAAAP///7+/v////wAAAP///wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////0BAQL+/v// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////5+fn2BgYP///////////////// +//////////7+/v////7+/v////7+/v////7+/v////7+/v////9fX1/////////////////////// +/wAAAP/////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////wAAAP///////7+/v////7+/v////7+/ +v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////9/f3////0BAQL+/v +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////8fHxwgICAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAACAgIP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////yAgIAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAgICNfX1//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////0hISI+Pj//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////6+vr0hISP///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////f39zAwMGhoaP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////2hoaDAwMP +f39////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//2BgYJ+fn/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////5+fn2BgYP//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////2BgYJ+fn///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////5+fn2BgYP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////2BgYJ+fn//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////5+fn2BgYP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////2BgYJ+fn/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////5+fn2BgYP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////2BgYJ+fn////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////5+fn2BgYP/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////2BgYJ ++fn////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/5+fn2BgYP/////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////2Bg +YJ+fn//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///5+fn2BgYP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////2BgYJ+fn/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////5+fn2BgYP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////2BgYJ+fn////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////5+fn2BgYP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////2BgYJ+fn///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////5+fn2BgYP////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////2BgYJ+fn//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////5+fn2BgYP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////2BgYJ+fn// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////5+fn +2BgYP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////9fX17+/v7+/v7+/v7 ++/v7+/v0hISHd3d7+/v7+/v7+/v7+/v7+/v+/v7////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////5+fn2BgYP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////9fX1 +yAgIEBAQEBAQEBAQEBAQEBAQCYmJjY2NkBAQEBAQEBAQEBAQEBAQEBAQPf39///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////5+fn2BgYP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////zg4OMfHx////////////////////////////////////////////////39/f39/f +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////5+fn2BgYP///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////4eHh3h4eP////////////////////////////////////////// +//////////f39zg4OM/Pz//////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////5+fn2BgYP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////9fX1zAwMPf39///////////////////////////////////////// +///////////////8/Pzzg4OPf39////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////5+fn2BgYP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////zg4OMfHx//////////////////////////// +////////////////////////////////////39/f39/f///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////5+fn2BgYP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////4eHh3h4eP////////////// +//////////////////////////////////////////////////////f39zg4OM/Pz//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////5+fn2BgYP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////9fX1zAwMPf +39////////////////////////////////////////////////////////////////////////8/P +zzg4OPf39//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////5+fn2BgYP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////////////////////////zg4OMfHx +////////////////////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP//////////////////// +///39/f39/f////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////5+fn2BgYP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////4eHh3h4eP///////////////////7+/v////wAAAP///wAAAP///wAAAP///wAAAP///yAgI +P////////////////////f39zg4OM/Pz///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////5+fn2BgYP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////9/f3ygoKPf39////////////////////////39/f////39/f////39/f/// +/39/f////39/f////////////////////////////8/PzzAwMP/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////5 ++fn2BgYP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////f39zAwMNfX1////////////////////////////9/ +f3////7+/v////7+/v////7+/v////////////////////////////////5eXl2hoaP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////5+fn2BgYP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8fHxzg4OP//////////// +///////////////////wAAAP///wAAAP///wAAAP///7+/v////////////////////////9/f3yg +oKPf39/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////5+fn2BgYP/////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////3h4eIeHh/////// +/////////////////5+fn////0BAQP///0BAQP///0BAQP///////////////////////////0BAQ +L+/v///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////5+fn2BgYP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///f39zAwMNfX1/////////////////////////////////////////////////////////////// +/////////5eXl2hoaP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////5+fn2BgYP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////8fHxzg4OP///////////////////////////////////////////// +//////////////////////9/f3ygoKPf39/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////5+fn2BgY +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////3h4eIeHh///////////////////////// +///////////////////////////////////////0BAQL+/v////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////5+fn2BgYP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////f39zAwMNfX1//// +////////////////////////////////////////////////////5eXl2hoaP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////5+fn2BgYP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////8fHxzg4OP/ +//////////////////////////////////////////////////9/f3ygoKPf39/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////5+fn2BgYP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////3h4eHh4eL+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v0BAQL+/v// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////5+fn2BgYP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////f391BQUEBAQEBAQEBAQEBAQEBAQDY2Nj4+PkBAQEBAQEBAQE +BAQEBAQIeHh////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////5+fn2BgYP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////0NDQ +4uLi///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//5+fn2BgYP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////0hISIGBgf/////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////5+fn2BgYP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////2BgYJ+fn////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////5+fn2BgYP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////2BgYJ+fn///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////5+fn2BgYP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////2BgYJ+fn//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////5+fn2BgYP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////2BgYJ+fn/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////5+fn2 +BgYP///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////2BgYJ+fn/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////5+f +n2BgYP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////2BgYJ+fn///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////5+fn2BgYP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////2BgYJ+fn//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////5+fn2BgYP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////2BgYJ+fn/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////5+fn2BgYP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////2BgYJ+fn////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////5+fn2BgYP/// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////2BgYJ+fn//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////5+fn2BgYP/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/2BgYJ+fn//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////5+fn2BgYP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////2BgYJ+fn/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////5+fn2BgYP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v0hISHd3d7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v8/Pz/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////8/Pz7+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v3d3d0hISL+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +6enpxgYGEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQCwsLDg4OEBAQEBAQEBAQEBAQE +BAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////wAAAE +BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQDg4OCwsLEBAQEBAQEBAQEBAQEBAQEBAQEB +AQEBAQEBAQEBAQEBAQBAQEL+/v/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//5+fn2BgYP////////////////////////////////////////////////////////////////// +/////////////////////////////wAAAP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////wAAAP//////////////////////////////////////////////////////////// +///////////////////////////////////0BAQL+/v////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////5+fn2BgYP///////////////////////////////////////////////// +//////////////////////////////////////////////wAAAP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////wAAAP/////////////////////////////////////////// +////////////////////////////////////////////////////0BAQL+/v///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////5+fn2BgYP//////////////////////////////// +///////////////////////////////////////////////////////////////wAAAP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////wAAAP////////////////////////// +/////////////////////////////////////////////////////////////////////0BAQL+/v +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////5+fn2BgYP/////////////// +///////////////////////////////////////////////////////////////////////////// +///wAAAP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////wAAAMfHx////// +//////////////9/f3////7+/v////7+/v////8/Pz/////////////////////////////////// +/////////0BAQL+/v//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////5+fn2Bg +YL+/v////////////////////8fHx////7+/v////7+/v////9/f3//////////////////////// +/////////////// +/////wAAAP/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wAAAP///39/f +////////////////////wAAAP///wAAAP///wAAAP//////////////////////////////////// +///////////0BAQL+/v////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////5+fn1 +RUVP///9/f3////////////////////wAAAP///wAAAP///wAAAP///////////////////////// +//////////////////////wAAAP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////wAAACAgIP///////////////////39/f////wAAAP///wAAAP///0BAQP/////////////// +////////////////////////////0BAQL+/v///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////5+fn2BgYAAAAP///////////////////yAgIP///wAAAP///wAAAP///39/f///// +///////////////////////////////////////wAAAP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////wAAAP////////////////////////////////////////////////// +/////////////////////////////////////////////0BAQL+/v//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////5+fn2BgYP/////////////////////////////////////// +////////////////////////////////////////////////////////wAAAP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wAAAFhYWP///////////////////5+fn////0B +AQP///0BAQP///0BAQP///0BAQP///////////////////////////////////0BAQL+/v/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////5+fn2BgYEBAQP////////////////// +/1hYWP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///////////////////////////wAAA +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////wAAAP///39/f///////// +///////////wAAAP///wAAAP///wAAAP///wAAAP///0BAQP///////////////////////////// +//0BAQL+/v/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////5+fn1RUVP///9/f3///////////// +///////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///7+/v////////////////////////wA +AAP////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wAAAMfHx/////////// +/////////9/f3////7+/v////7+/v////7+/v////7+/v//////////////////////////////// +////0BAQL+/v///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////5+fn2BgYL+/v +////////////////////8fHx////7+/v////7+/v////7+/v////7+/v////7+/v///////////// +///////////////wAAAP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////wA +AAP////////////////////////////////////////////////////////////////////////// +/////////////////////0BAQL+/v//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////5+fn2BgYP/////////////////////////////////////////////////////////////// +////////////////////////////////wAAAP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////wAAAP///////////////////////////////////////////////////////// +//////////////////////////////////////0BAQL+/v/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////5+fn2BgYP////////////////////////////////////////////// +/////////////////////////////////////////////////wAAAP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wAAAP//////////////////////////////////////// +///////////////////////////////////////////////////////0BAQL+/v////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////5WVlQQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoKCv////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////woKCgAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDA6+vr//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////5+fn2BgYP/////////////////////////// +////////////////////////////////////////////////////////////////////wAAAP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////wAAAP///////////////////// +//////////////////////////////////////////////////////////////////////////0BA +QL+/v//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////5+fn2BgYP////////// +/////////////////5+fn////wAAAP///wAAAP///wAAAP///wAAAP/////////////////////// +////////wAAAP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////wAAAP//// +///////////39/f////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///// +//////////////0BAQL+/v/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////5+ +fn2BgYP///////////////////////////////wAAAP///wAAAP///wAAAP///wAAAP////////// +/////////////////////////wAAAP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////wAAAP///////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP +///wAAAP///0BAQP///////////////0BAQL+/v////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////5+fn0hISL+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/vwAAAP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////9/f3////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////wAAAL+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/vzAwML+/v///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////9/f30hISEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE +BAQEBAQC4uLjo6OkBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQGBgYP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////+fn50BAQCgoKJ+fn//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////2BgYEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQD4 ++PjAwMEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEhISOfn5/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////yQkJGlpaf/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////7+/vzAwML+/v/f392BgYGBgYPf39/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////4aGhiQkJP///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////f390hISIGBgf////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////39/f0BAQOfn5////////////5+fnzAwMNfX1////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////3x8fEhISPf39///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////2BgYJ+fn////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////+/v70hISH9/f///////////////////// +///9fX1zg4OKenp////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////5+fn2BgYP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////2BgYJ+fn///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////8fHxygoKLe3t//////// +////////////////////////+/v71hYWGhoaPf39///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////5+fn2BgYP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +2BgYJ+fn/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////4eHhzg4OOfn5////////// +//////////////////////////////////5eXlzg4ONfX1/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////5+fn2BgYP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//2BgYJ+fn/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////+/v70hISHh4eP +///////////////////////////////////////////////////////8/Pzzg4OKenp////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////5+fn2BgYP//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////2BgYJ+fn////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +8fHxygoKLe3t////////+fn5////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///////////+ +/v71hYWGhoaPf39////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////5+fn2BgYP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////2BgYJ+fn///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////4eHhzg4OOfn5////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///2BgYP///////////////5eXlzg4ONfX1///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////5+fn2BgYP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////2hoaCgoKEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE +BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB +AQEBAQEBAQEBAQEBAQEBAQEBAQCQkJGBgYP////////////////////f39////7+/v////7+/v/// +/7+/v////7+/v////7+/v////////////////////////8/PzxYWFjg4OEBAQEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE +BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQCgoKGhoaP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////+/v77+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v6ioqDAwMK+vr////////////////////6+vr////39/f////3 +9/f////39/f////39/f////+/v7////////////////+/v71BQUGlpab+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v+/v7//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////wAAAP///wAAAP///wAAAP////////////////////////////////////////////////// +/////////////////////////////////////////////////+/v71BQUHBwcPf39//////////// +////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////8fHxzAwMK+vr///////// +///////////////////////////////////////2BgYP///wAAAP///wAAAP///wAAAP///wAAAP/ +//wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///7+/v/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////7+/v////wAAAP///wAAAP///39/f////////////////////////////// +//////////////////////////////////////////////////////////////////////////4+P +j0BAQN/f3////////4eHh////0BAQP///0BAQP///0BAQP///0BAQP///+fn5////////4+Pj0BAQ +N/f3////////////////////////////////////////////////////////wAAAP///wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////8fHxzAwMK+vr/////////////////////////////////////////////// +/+/v71BQUHBwcPf39//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////+fn5////0BAQP///0BA +QP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP/// +0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///7e3t/ +///////////////////////////////////////+/v71BQUHBwcPf39////////////////////// +//////////////8fHxzAwMK+vr////////////////////////////////////0BAQP///0BAQP// +/0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQ +P///0BAQP///0BA +QP///0BAQP///0BAQP///0BAQP///0BAQP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/////////////////////////////////////////////////4+Pj0BAQN/f3//////////////// +////////////4+Pj0BAQN/f3////////////////////////////////////39/f////wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/ +//wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///9/f3/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// ++/v7////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f/ +///39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39 +/f////39/f////8/Pz////////////////////////////////////////////////////8fHxzAw +MK+vr////////////////+/v71BQUHBwcPf39//////////////////////////////////////// +////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////3 +9/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////+/v71BQUHBwcPf39////8fHxzAwMK+vr/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////4+Pj0BAQH9/f0BAQN/f3////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////8fHx1tbW/f39//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////6SkpBISEvf39/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//6GhoTAwMO/v7/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////7+/v0BAQP///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////7+/v0BAQP//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////7+/v0BAQP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////7+/v0BAQP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////7+/v0 +BAQP///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////9fX17+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v4+PjzAwML+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v/f39///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wgICEBAQEBAQEBAQEBA +QEBAQEBAQEBAQEBAQEBAQEBAQEBAQDo6OioqKkBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ +EBAQBgYGJ+fn///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////wAAAP//////////// +///////////////////////////////////////////////////////////////////////////// +//////2BgYJ+fn/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +wAAAP//////////////////////////////////////////////////////////////////////// +///////////////////////2BgYJ+fn////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wAAAP/////////////////////////////////////////////////////// +////////////////////////////////////////2BgYJ+fn///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////wAAAP///////////9fX1////////////////////+/v +7////7+/v////7+/v////////////////////////////////////////2BgYJ+fn//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////wAAAP///////////////0BAQP/ +//////////////////wAAAP///wAAAP///9/f3////////////////////////////////////2Bg +YJ+fn//////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////wAAAP///////////2BgYP/// +////////////////7+/v////wAAAP///wAAAP///////////////////////////////////////2 +BgYJ+fn////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wAAAP// +///////////////////////////////////////////////////////////////////////////// +////////////////2BgYJ+fn///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////wAAAP///////////4eHh////////////////////8/Pz////0BAQP///0BAQP///0BA +QP///0BAQP///////////////////////2BgYJ+fn//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wAAAP///////////////0BAQP///////////////////wAAAP/ +//wAAAP///wAAAP///wAAAP///wAAAP///////////////////2BgYJ+fn/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////wAAAP///////////9fX1////////////////////+/v7//// +7+/v////7+/v////7+/v////7+/v////////////////////////2BgYJ+fn///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////wAAAP////////////////////////// +/////////////////////////////////////////////////////////////////////2BgYJ+fn +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////wAAAP///////// +///////////////////////////////////////////////////////////////////////////// +/////////2BgYJ+fn//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///wAAAP///////////////////////////////////////////////////////////////////// +//////////////////////////2BgYJ+fn/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////xEREQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIODg////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////wAAAP////////////////////////////////////////////////// +/////////////////////////////////////////////2BgYJ+fn//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wAAAP///////////0BAQP///0BAQP///0BAQP/ +//0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///4eHh////////2BgYJ+fn/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////wAAAP///////9/f3////w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////// +//2BgYJ+fn/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////wAAA +L+/v7+/v7+/v19fX7+/v19fX7+/v19fX7+/v19fX7+/v19fX7+/v19fX7+/v19fX7+/v19fX7+/v1 +9fX7+/v4ODg7+/v7+/v0hISJ+fn////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////2BgYEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQC4uLkBAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQNfX1///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////6SkpBISEvf39// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///6GhoTAwMO/v7////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////7+/v0BAQP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////7+/v0BAQP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////7+/v0BAQP////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////7+/v0BAQP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////7+/v +0BAQP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////7+/v0BAQP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////7+/v0BAQP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////7+/v0BAQP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////7+/v0BAQP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////f397+/v4eHh39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39 +/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f19fXyAgIH9/ +f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f +39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f5+fn8/Pz///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////+/v72BgYAgICEBAQHh4eH9/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f3 +9/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39 +/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/ +f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f2BgYDAwM +BAQEJ+fn///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////7e3tygoKJ+fn//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////+/v72BgYEhISO/v7//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////7e3tzg4OOfn5////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////7e3tzg4OPf39////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////+/v7ygoKOfn5///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////4eHh3h4eP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////2BgYJ+fn//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////zAwMM/Pz +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wgICPf3 +9//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////4eHh3h4eP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////8/PzzAwMP////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////Pz8//////////////// +9nZ2dnZ2f///+bm5v///+bm5v///+bm5v///////8zMzObm5v////Pz8////+bm5v///9nZ2f//// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////7e3t0hISP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////5+fn2BgYP//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////4WFhf///1FRUczMzKO +jo7GxsaOjo+bm5mNjY////1FRUczMzDw8PP///4WFhdnZ2WNjY////4WFhf///3R0dJSUlL+/v/// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////+/v7xAQEP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////6+vr1BQUP/////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////4 +WFhZSUlJSUlMzMzIWFhbGxsZSUlNnZ2XR0dP///5SUlGNjY6Ojo6Ojo3R0dP///4WFhf///4WFhf/ +//1FRUWNjY/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////9/f3yAgIP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////+fn5xgYGP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////3R0dHR0dMzMzMzMzObm5nR0dIWFhfPz81FRUb+/v9nZ2XR0dP///5SUlKOjo4 +WFhYWFhf///2NjY7+/v3R0dLGxsfPz8////////////////////////////////////////////// +//////////////////////////////////////////////////////////////6+vr1BQUP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////xgYGOfn5////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////zw8PP///8zMzMzMzP///////////////4WFhf/////// +////////////////////////////////////3R0dP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//3h4eIeHh/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///5eXl2hoaP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// ++fn5zAwMOfn5///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////0BAQL+/v//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////1hYWKenp//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////9/f3ygoKLe3t/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////+/v72BgYGhoaP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn50hISGBgYL+/v/f39////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////9fX16enpygoKJ+fn////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////5+fn0 +BAQAgICCgoKEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB +AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA +QEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAgICCgoKFhYWOfn5///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////9fX17+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v/f39/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////w4AAAAUAAAAAAAAABAAAAAUAAAA +2003-05-22T18:53:55 +2003-12-23T08:59:58 +2003-10-13T11:27:41 +2003-05-22T18:53:55 + + +9 +295 +34 +1 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +0 +1 +0 +0 + + +0 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.083333333333333 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +0 +0 +1 +0 + + +0 +0 + +0 +0 +1 +0 +0.083333333333333 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +4 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + + +2 +0 +1 +0 + + + + + + + + + + + + + +8.5 +11 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +5 +1 +0 +1 +0 +0 +0 +0.125 +0.125 +1 +1 +0.5 +0.5 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Flowchart +255 +0 +1 +1 +0 +0 +1 +1 +Flowchart +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +4.375 +7.9791666666666 +1 +0.75 +0.5 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1 + + + +0.5 +0 +0 +0 +0 +0 + + + +0 +0.375 +0 +0 +0 +0 + + + +1 +0.375 +0 +0 +0 +0 + + + +0.5 +0.75 +0 +0 +0 +0 + + + + + +0.5 +0.75 +1 +0.18888888888889 +0.5 +0.18888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + + + +0.5 +0 +1 +0.56111111111111 +0.5 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + + + + + + +4.375 +6.875 +1 +0.75 +0.5 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +0 +0.375 +0 +0 +0 +0 + + + +1 +0.375 +0 +0 +0 +0 + + + +0.5 +0.75 +0 +0 +0 +0 + + + +0.5 +0 +0 +0 +0 +0 + + + + + +1.875 +6.125 +1 +0.75 +0.5 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +0.625 +0.65625 +1 +0.1875 +0.5 +0.09375 +0 + + +1 + + + +0.5 +0 +0 +0 +0 +0 + + + +0 +0.375 +0 +0 +0 +0 + + + +1 +0.375 +0 +0 +0 +0 + + + +0.5 +0.75 +0 +0 +0 +0 + + + + + +0.5 +0.75 +1 +0.18888888888889 +0.5 +0.18888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + +INPUT + + + +0.5 +0 +1 +0.56111111111111 +0.5 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + + + + + + +6.5 +6.125 +1 +0.75 +0.5 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1 + + + +0 +0.5625 +0 +0.5625 +1 +4 +1 +Move Line + + +0.5 +0 +0 +0 +0 +0 + + + +0 +0.375 +0 +0 +0 +0 + + + +1 +0.375 +0 +0 +0 +0 + + + +0.5 +0.75 +0 +0 +0 +0 + + + + + +0.5 +0.75 +1 +0.18888888888889 +0.5 +0.18888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 + +0 +0 + + +1 +0 + + +1 +0.18888888888889 + + +0 +0.18888888888889 + + +0 +0 + + + FORWARD + + + +0.5 +0 +1 +0.56111111111111 +0.5 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1 +0 + + +1 +0.56111111111111 + + +0 +0.56111111111111 + + +0 +0 + + +Mangle +Filter + + + + + +1.875 +4.75 +1 +0.75 +0.5 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +0.5 +0.375 +1 +0.75 +0.5 +0.375 +0 + + +0 +0.375 +0 +0 +0 +0 + + + +1 +0.375 +0 +0 +0 +0 + + + +0.5 +0 +0 +0 +0 +0 + + + +0.5 +0.75 +0 +0 +0 +0 + + +Local +Process + + + +1.875 +3.375 +1 +0.75 +0.5 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1 + + + +0.5 +0 +0 +0 +0 +0 + + + +0 +0.375 +0 +0 +0 +0 + + + +1 +0.375 +0 +0 +0 +0 + + + +0.5 +0.75 +0 +0 +0 +0 + + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +0.5 +0.75 +1 +0.18888888888889 +0.5 +0.18888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + +OUTPUT + + + +0.5 +0 +1 +0.56111111111111 +0.5 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + +Filter +Nat +Mangle + + + + + +6.5 +3.375 +1 +0.75 +0.5 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1 + + + +0.5 +0 +0 +0 +0 +0 + + + +0 +0.375 +0 +0 +0 +0 + + + +1 +0.375 +0 +0 +0 +0 + + + +0.5 +0.75 +0 +0 +0 +0 + + + + + +0.5 +0.75 +1 +0.18888888888889 +0.5 +0.18888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 + +0 +0 + + +1 +0 + + +1 +0.18888888888889 + + +0 +0.18888888888889 + + +0 +0 + + +POSTROUTING + + + +0.5 +0 +1 +0.56111111111111 +0.5 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1 +0 + + +1 +0.56111111111111 + + +0 +0.56111111111111 + + +0 +0 + + +Nat +(Mangle) + + + + + +4.375 +1.8125 +3.25 +0.625 +1.625 +0.3125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1.625 +0.3125 +3.25 +0.625 +1.625 +0.3125 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1.625 +0 +0 +0 +0 +0 + + + +1.625 +0.625 +0 +0 +0 +0 + + + +0 +0.31249999999999 +0 +0 +0 +0 + + + +3.25 +0.31249999999999 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.3125 +0 + + +2.9375 +0 + + +2.9375 +0.625 +3.25 +0.31249999999999 +0 +1 + + +0.3125 +0.625 + + +0.3125 +0 +0 +0.31249999999999 +0 +1 + + + + + +4.375 +8.6041666666667 +0.25 +-0.5000000000001 +0.125 +-0.25000000000005 +0 +0 +0 +0 + + +4.375 +8.8541666666667 +4.375 +8.3541666666666 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +0.125 +-0.25000000000005 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0.125 +0 + + +0.125 +-0.5000000000001 + + + + + +4.375 +7.4270833333333 +0.25 +-0.35416666666661 +0.125 +-0.1770833333333 +0 +0 +0 +0 + + +4.375 +7.6041666666666 +4.375 +7.25 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +0.125 +-0.1770833333333 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0.125 +0 + + +0.125 +-0.35416666666661 + + + + + +2.875 +6.6875 +-2 +-0.375 +-1 +-0.1875 +0 +0 +0 +0 + + +3.875 +6.875 +1.875 +6.5 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +-1.1875 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +-2 +0 + + +-2 +-0.375 + + + + + +5.6875 +6.6875 +1.625 +-0.375 +0.8125 +-0.1875 +0 +0 +0 +0 + + +4.875 +6.875 +6.5 +6.5 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +1 +0 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +1.625 +0 + + +1.625 +-0.375 + + + + + +1.875 +5.4375 +0.25 +-0.625 +0.125 +-0.3125 +0 +0 +0 +0 + + +1.875 +5.75 +1.875 +5.125 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +0.125 +-0.3125 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0.125 +0 + + +0.125 +-0.625 + + + + + +1.875 +4.0625 +0.25 +-0.625 +0.125 +-0.3125 +0 +0 +0 +0 + + +1.875 +4.375 +1.875 +3.75 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +0.125 +-0.3125 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0.125 +0 + + +0.125 +-0.625 + + + + + +6.5 +4.75 +0.25 +-2 +0.125 +-1 +0 +0 +0 +0 + + +6.5 +5.75 +6.5 +3.75 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +0.125 +-1 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0.125 +0 + + +0.125 +-2 + + + + + +3.125 +2.5625 +2.5 +-0.875 +1.25 +-0.4375 +0 +0 +0 +0 + + +1.875 +3 +4.375 +2.125 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +1.4375 +-0.25 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +0 +-0.25 + + +2.5 +-0.25 + + +2.5 +-0.875 + + + + + +5.4375 +2.5625 +-2.125 +-0.875 +-1.0625 +-0.4375 +0 +0 +0 +0 + + +6.5 +3 +4.375 +2.125 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +-1.25 +-0.25 +0.55555555555556 +0.24444444444444 +0.27777777777778 +0.12222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +0 +-0.25 + + +-2.125 +-0.25 + + +-2.125 +-0.875 + + + + + +4.375 +8.2708333333333 +1 +0.125 +0.5 +0.0625 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1 +0 + + +1 +0.125 + + +0 +0.125 + + +0 +0 + + +PREROUTING + + + +4.375 +6.875 +0.75 +0.25 +0.375 +0.125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +0.75 +0 + + +0.75 +0.25 + + +0 +0.25 + + +0 +0 + + +Routing +Decision + + + +4.375 +7.8854166666666 +0.75 +0.4375 +0.375 +0.21875 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +0.75 +0 + + +0.75 +0.4375 + + +0 +0.4375 + + +0 +0 + + +Mangle +Nat + + + +1.875 +6.0729166666667 +1 +0.375 +0.5 +0.1875 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1 +0 + + +1 +0.375 + + +0 +0.375 + + +0 +0 + + +(Mangle) +Filter + + + +4.375 +9.1666666666667 +3.25 +0.625 +1.625 +0.3125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +8 + +0 +0 + + + + +1.625 +0.3125 +3.25 +0.625 +1.625 +0.3125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1.625 +0.3125 +3.25 +0.625 +1.625 +0.3125 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1.625 +0 +0 +0 +0 +0 + + + +1.625 +0.625 +0 +0 +0 +0 + + + +0 +0.31249999999999 +0 +0 +0 +0 + + + +3.25 +0.31249999999999 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.3125 +0 + + +2.9375 +0 + + +2.9375 +0.625 +3.25 +0.31249999999999 +0 +1 + + +0.3125 +0.625 + + +0.3125 +0 +0 +0.31249999999999 +0 +1 + + + + + + + +4.4375 +9.1770833333334 +2.625 +0.625 +1.3125 +0.3125 +0 +0 +0 +0 + + + + +1.3125 +0.3125 +2.625 +0.625 +1.3125 +0.3125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.625 +0 + + +2.625 +0.625 + + +0 +0.625 + + +0 +0 + + +Network + + + + + +4.375 +1.8177083333333 +2.625 +0.625 +1.3125 +0.3125 +0 +0 +0 +0 + + + + +1.3125 +0.3125 +2.625 +0.625 +1.3125 +0.3125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.625 +0 + + +2.625 +0.625 + + +0 +0.625 + + +0 +0 + + +Network + + + + + +2.8125 +7.0208333333333 +1.875 +0.3125 +0.9375 +0.15625 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.875 +0 + + +1.875 +0.3125 + + +0 +0.3125 + + +0 +0 + + +Packet Destination is the Firewall itself + + + +5.71875 +7.0208333333333 +1.875 +0.25 +0.9375 +0.125 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.875 +0 + + +1.875 +0.25 + + +0 +0.25 + + +0 +0 + + +Packet Destination is not the Firewall System + + + +4.46875 +1 +2.3125 +0.5 +1.15625 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +2.3125 +0 + + +2.3125 +0.5 + + +0 +0.5 + + +0 +0 + + +Netfilter Packet Flow + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +1 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + + + + + + + + \ No newline at end of file diff --git a/Shorewall-docsN/images/Netfilter.vsd b/Shorewall-docsN/images/Netfilter.vsd new file mode 100755 index 000000000..4fc1eef73 Binary files /dev/null and b/Shorewall-docsN/images/Netfilter.vsd differ diff --git a/Shorewall-docsN/images/ORE.jpg b/Shorewall-docsN/images/ORE.jpg new file mode 100644 index 000000000..5dad3179f Binary files /dev/null and b/Shorewall-docsN/images/ORE.jpg differ diff --git a/Shorewall-docsN/images/P1000048.jpg b/Shorewall-docsN/images/P1000048.jpg new file mode 100755 index 000000000..16c75640d Binary files /dev/null and b/Shorewall-docsN/images/P1000048.jpg differ diff --git a/Shorewall-docsN/images/P1000049.jpg b/Shorewall-docsN/images/P1000049.jpg new file mode 100755 index 000000000..43d0a4ff9 Binary files /dev/null and b/Shorewall-docsN/images/P1000049.jpg differ diff --git a/Shorewall-docsN/images/P1000050.jpg b/Shorewall-docsN/images/P1000050.jpg new file mode 100755 index 000000000..23d91cd78 Binary files /dev/null and b/Shorewall-docsN/images/P1000050.jpg differ diff --git a/Shorewall-docsN/images/ProtectedBy.png b/Shorewall-docsN/images/ProtectedBy.png new file mode 100755 index 000000000..985a5de27 Binary files /dev/null and b/Shorewall-docsN/images/ProtectedBy.png differ diff --git a/Shorewall-docsN/images/QoS.png b/Shorewall-docsN/images/QoS.png new file mode 100644 index 000000000..029a4ebd1 Binary files /dev/null and b/Shorewall-docsN/images/QoS.png differ diff --git a/Shorewall-docsN/images/SY00079.gif b/Shorewall-docsN/images/SY00079.gif new file mode 100644 index 000000000..9d567b7ae Binary files /dev/null and b/Shorewall-docsN/images/SY00079.gif differ diff --git a/Shorewall-docsN/images/Shorewall_Banner.gif b/Shorewall-docsN/images/Shorewall_Banner.gif new file mode 100644 index 000000000..6450fe29c Binary files /dev/null and b/Shorewall-docsN/images/Shorewall_Banner.gif differ diff --git a/Shorewall-docsN/images/State_Diagram.png b/Shorewall-docsN/images/State_Diagram.png new file mode 100755 index 000000000..929b0e5f5 Binary files /dev/null and b/Shorewall-docsN/images/State_Diagram.png differ diff --git a/Shorewall-docsN/images/State_Diagram.vdx b/Shorewall-docsN/images/State_Diagram.vdx new file mode 100755 index 000000000..3b689fe85 --- /dev/null +++ b/Shorewall-docsN/images/State_Diagram.vdx @@ -0,0 +1,9757 @@ + + + + + +State_Diagram +TEastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAANcAAAAXAQAAAAAAAAAAAAA/GgAADyIAACBFTUYAAAEA7MUCAAMAAAABA +AAADwAAAGwAAAAAAAAAAAQAAAADAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAATMUCAAAAAAAAAAAA1wAAABcBAAAAAAAAAAAAANg +AAAAYAQAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADAxAIAKAAAANgAAAAYAQAAAQAYAAAAAADAxAIAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////7+/v////wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///7+/v////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////7+ +/v////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0B +AQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP// +/0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQ +P///8/Pz///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////f397+/v7+/v7 ++/v9fX1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9f +X1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1/// +/+fn5//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////6enp4SEhISE +hISEhJaWlrS0tKKiooSEhISEhISEhJaWlrS0tKKiooSEhISEhISEhJaWlrS0tKKiooSEhISEhISEh +JaWlrS0tKKiooSEhISEhISEhJaWlrS0tKKiooSEhISEhISEhJaWlrS0tKKiooSEhISEhISEhJaWlr +S0tKKios/Pz////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+f +n5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn +5+fn5+fn5+fn5+fn5+fn5+fn///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////9/f36Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6O +jo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Oj +o6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////39/f6enp6enp6enp6enp6enp6enp6enp6enp6 +enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6e +np6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////39/f6urq6urq6urq6urq +6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6 +urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////39/f6+vr6+vr6+vr6+ +vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+v +r6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////5 ++fn7S0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS +0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0 +tLS0tLS0tLS0tLS0tP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////7i4uLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uF +xcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi4uFxcXLi +4uFxcXLi4uFxcXLi4uHNzc7i4uLi4uLi4uP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////9/f37y8vEdHR7y8vAAAALy8vAAAALy8vAAAALy8vAAAA +Ly8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vA +AAALy8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vLy8vLy8vLy8vP///////////////////////// +//////////////////+fn5+fn5/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////39/f8DAwMDAwDAwMMDAwDAwMMDA +wDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwM +MDAwDAwMMDAwDAw +MMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwFRUVMDAwMDAwMDAwP/////////////////////// +////////5eXl0hISBgYGBgYGBgYGBgYGEhISJeXl///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////39/f8XFxcXFxcXFxcXFxcXFxc +XFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcX +FxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxf////// +/////////////////9fX1zg4OGhoaLe3t+fn5////////+fn57e3t2hoaDg4ONfX1//////////// +/////////////////////////f39///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////39/f8nJy +cnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQ +AAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyTIyMsn +JycnJycnJyf///////////////////4+PjzAwMMfHx////////////////////////////////8fH +xzAwMJ+fn////////////////////////////9/f3xkZGQAAAAAAACAgIGBgYOfn5//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////5+fn83NzU1NTc3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAA +M3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQ +AAAM3NzQAAAM3Nzc3Nzc3Nzc3Nzf///////////////7+/v0BAQPf39////////////////////// +///////////////////f390BAQL+/v////////////////////////////+/v7/f39////9/f35+f +nygoKJ+fn//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////9HR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR +0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 +dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0f////////////f39ygoKN/f3///////// +///////////////////////////////////////9/f3ygoKPf39////////////////////////// +//////////////////+/v71hYWIeHh/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////9/f39XV1ZKSktXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1W +pqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1dXV1dXV1dXV1dX +V1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1f///////////2hoaJeXl/////////// +/////////////////////////////////////////////5eXl2hoaP/////////////////////// +////////////////////////////zg4OMfHx////////////2BgYP///////////////////5+fn/ +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wA +AAP///wAAAP///wAAAP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////39/f9ra2tra2gAAANra2gAAANra2gAAA +Nra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2g +AAANra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2v///////////xA +QEO/v7/////////////////////////////////////////////////////////f39xAQEPf39/// +/////////////////////////////////////////////9fX1ygoKP///////////////2BgYP/// +////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////39/f97e3piYmN7e +3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb +97e3m9vb97e3m9vb97e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t +7e3v///////9fX1ygoKP///////////////////////////////////////////////////////// +//////1BQUK+vr////////////////////////////////////////////////////ygoKNfX1/// +/////9fX1////////////////////+fn5////7+/v////7+/v////7+/v////7+/v////7+/v//// +7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//39/f+Li4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi +4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4 +uLi4uLi4uLi4uLi4uLi4v///////6enp1hYWP//////////////////////////////////////// +///////////////////////2hoaJeXl////////////////////////////////////////////// +//////1hYWKenp////////////////////////////////////39/f////39/f////39/f////39/ +f////8/Pz//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////7 +S0tLS0tLS0tLS0tLS0tHBwcHBwcLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS +0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0 +tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP///////4eHh3h4eP/////////////////////// +////////////////////////////////////////39/f39/f///////////////////////////// +///////////////////////3BwcI+Pj////////////////////////////////5+fn////wAAAP/ +//wAAAP///wAAAP///wAAAP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////7e3t0hISP///////////////////// +//////////////////////////////////////////2BgYJ+fn/////////////////////////// +/////////////////////////0hISLe3t////////////////////////////////////39/f//// +39/f////39/f////39/f////8/Pz///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////9/f39/f36+vr////39/f////39/f////39/f/// +/39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f +////////////////////////////////////////////////////////////////+/v7xAQEP//// +///////////////////////////////////////////////////////////zAwMM/Pz////////// +//////////////////////////////////////////xAQEO/v7////////9fX1/////////////// +/////+fn5////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v//// +7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v/ +///7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////39/f39/f////wAAAP///wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///9/f3//////////////////////////////////////////////////////// +////////yAgIN/f3////////////////////////////////////////////////////////+fn5x +gYGP///////////////////////////////////////////////////5+fn2BgYP///////////// +//2BgYP///////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///2BgYP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////39/f3 +9/f2BgYP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP////////////////////////////////////////// +/////////////////////////6enp1hYWP/////////////////////////////////////////// +////////////1hYWKenp////////////////////////////////////////////////+fn5ygoKO +/v7////////////2BgYP///////////////////5+fn////wAAAP///wAAAP///wAAAP///wAAAP/ +//wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/// +wAAAP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////39/f39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f/ +///39/f////39/f////39/f////39/f////39/f////39/f////+/v7////////////////////// +//////////////////////////////////////////////1hYWKenp/////////////////////// +/////////////////////////6enp1hYWP/////////////////////////////////////////// +////5+fnygoKM/P +z//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////4+Pj4+Pj/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////+fn5zAwMMfHx///////////////// +///////////////////////8fHxzg4OOfn5////////////////////////2BgYEhISH9/f39/f2B +gYDAwMGBgYOfn5/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////9fX1zg4O +Hh4ePf39/////////////////////////f393h4eDg4ON/f3////////////////////////////9 +/f37e3t39/f39/f5+fn8/Pz////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////4eHhygoKGhoaLe3t7+/v7+/v6+vr2hoaCgoKIeHh//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////8fHx3h4eP///////////////////////////////////////////// +//////////////////////////////////////9/f35eXl0hISEBAQEBAQFBQUJeXl9/f3/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////5eXl0BAQOfn5//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//6KiokNDQ/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////f392hoaGhoaPf39/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////f393Z2dlhYWPf39////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////+fn50BAQJeXl////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////6enp0hISO/v7///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8fHxzAwMMfHx///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////7+/vzg4ON/f3 +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////5eXl0BAQ +Ofn5///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////9fX1zg4OM/Pz//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////3BwcGhoaPf +39/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////+fn5zg4OK+vr////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///39/f39/f////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////f391BQUJ+fn///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////39/f39/f///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////2BgYJ+fn//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////39/f39/f//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+/v7/f39////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////1BQUK+vr//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////39/f39/f/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////f397+/v////////////////////////////////////////////////////39/f4eHh///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////f390hISL+/v/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////39/f39/f///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////4mJiT8/P////////////////////////////////////////////////////5eXl2hoaP// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////+/v70BAQM/Pz///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////39/f39/f//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////39/f39/f////////////////////////////////////////////// +//////5+fn2BgYP////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////9/f30BAQN/f3//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////4eHh3h4eP// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////2hoaJeXl///////////////////////////// +///////////////////////7+/v0BAQP///////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////9fX1zg4 +OO/v7//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//6+vr1BQUP////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////0hISLe3t//////////// +////////////////////////////////////////7+/v0BAQP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////8/Pzzg4OPf39/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////9fX1zg4OO/v7////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////zAw +MM/Pz////////////////////////////////////////////////////9/f3yAgIP/////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////6+vr1BQUP//////////////////////////////////////////////// +///////////////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP/ +//0BAQP///0BAQP///0BAQP///0BAQP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////f39zAwMNfX1//////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////x +AQEO/v7////////////////////////////////////////////////////9/f3yAgIP///////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////2hoaJeXl//////////////////////////// +////////////////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////1BQUK+vr/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////+/v7xAQEP//////////////////////////////////////////////////////// +///wAAAP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////f39zAwMNfX1/////// +/////////////////////////////////////////////////39/f////39/f////39/f////39/f +////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////4eHh3h4eP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////9fX1ygoKP/////////////////////////////////////// +////////////////////wAAAP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//9fX1zAwMPf39////////////////////////////////////////////////7+/v////7+/v/// +/7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v +////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7 ++/v////7+/v////7+/v////7+/v////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////7e3t0hISP//////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////7e3t0hISP////////////////////// +/////////////////////////////////////yAgIN/f3//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////4+Pj3BwcP///////////////////////////////////////////// +//////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAA +P///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///9/f3///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////9/f3zAwM +O/v7/////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////5+fn2BgYP//////////////////// +///////////////////////////////////////zg4OMfHx////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////0hISLe3t//////////////////////////////////////// +////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0 +BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP/ +//0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////f39zg4OM/ +Pz/////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////3h4eIeHh//// +////////////////////////////////////////////////////////2hoaJeXl///////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////+fn5zAwMOfn5/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////4eHh3h4eP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////0BAQL+/v////////////////////////////////////////////////////////////4+Pj +3BwcP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////7e3t0hISP/ +//////////////yAgIP///////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///9/f3//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////9fX1zAwMPf39///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////wgICPf39/////////////////////////////////////////////// +/////////////7+/v0BAQP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////2BgYJ+fn////////5+fn////////////////////////////wAAAP///wAAAP///wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////0BAQL+/v//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////8/PzzAwMP///////////////////////////////// +//////////////////////////////+/v7xAQEP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////+fn5yAgIPf39////////8fHx////////////////////7+/v/ +///7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v/////f39////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////5+fn2BgYP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////4+Pj3BwcP/////////////////////////////// +////////////////////////////////////xgYGOfn5///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////39/f39/f////8/Pz/////////////////////////// +/39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////7+/v////////////////////9fX1////7+/v////7+/v////7+/v +////7+/v////7+/v////7+/v////7+/v////7+/v////////+fn5zAwMOfn5///////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////1hYWKenp/////////////// +/////////////////////////////////////////////////////0hISLe3t//////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////f39yAgIOfn5////yAgIP///// +//////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/0BAQP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////7+/v////////////////////wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///yAgIP///2BgYJ+fn//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////yAgIN/ +f3////////////////////////////////////////////////////////////////////3BwcI+P +j//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////5+fn2 +BgYM/Pz////////////////////////////39/f////39/f////39/f////39/f////39/f////39 +/f////39/f////39/f/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////wAAAP///////////// +//////2BgYP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP// +/7+/v0BAQP/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////9/f3yAgIP///////////////////////////////////////////////////////////// +//////////5eXl2hoaP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////zAwMM/Pz///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////f39zAwMNfX1/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////6enp1hYWP//////////////////////////////////////////// +///////////////////////////8/PzzAwMP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////7+/v0BAQP/////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////4+Pj3BwcP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////3BwcI+Pj/////////////////////////////////////////// +/////////////////////////////////yAgIN/f3//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////1BQUK+vr////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////f39yAgIOfn5//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////yAgIN/f3////////////////////////// +//////////////////////////////////////////////////2hoaJeXl/////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8/PzzAwMP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////6+vr1BQUP////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8fHxzg4OP//////////// +///////////////////////////////////////////////////////////////////7e3t0hISP/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +1BQUK+vr///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////zAwMM/Pz////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////2hoa +JeXl///////////////////////////////////////////////////////////////////////// +////////f39xAQEPf39////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////6+vr1BQUP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////6 ++vr1BQUP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////xgYGOfn5//////////////////////////////////////////////////////// +/////////////// +/////////////1BQUK+vr//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////yAgIN/f3////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/zAwMM/Pz//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////7e3t0hISP///////////////////////////////////////////////////////// +//////////////////////////////5+fn2BgYP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////4+Pj3BwcP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////6+vr1BQUP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////2BgYJ+fn///////////////////////////////////////// +///////////////////////////////////////////////+fn5xgYGP///////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////+/v7xgYGPf39//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////zAwMM/Pz////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////f39xAQEPf39//////////////////////// +////////////////////////////////////////////////////////////////////zg4OMfHx/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/2hoaJeXl//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////7e3t0hISP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////6enp1hYWP////////// +///////////////////////////////////////////////////////////////////////////// +////////39/f39/f///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////8/PzzAwMP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////2BgYJ+fn//////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////1BQUK+vr///////// +///////////////////////////////////////////////////////////////////////////// +//////////+fn5yAgIPf39/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////zg4OMfHx///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////f39xgYGO/v7////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////+fn5 +yAgIPf39///////////////////////////////////////////////////////////////////// +///////////////////////////////1BQUK+vr////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////5+fn2BgYP/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////6 ++vr1BQUP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////3BwcI+Pj//////////////////////////////////////////////////////// +////////////////////////////////////////////////8fHxzg4OP//////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////+fn5xgYGP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////1hYWKenp///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////+fn5yAgIPf39/////////////////////////////////////// +/////////////////////////////////////////////////////////////////////zAwMM/Pz +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//zg4OMfHx/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////f39xAQEPf39//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////3BwcI+Pj////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////5eXl2hoaP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////39/f39/f////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////6enp1hYWP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////f39xAQEPf39//////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////f39xgYGO/v7////////////////////////////////+fn5////0BAQP///0BAQP/ +//0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP////////////////////////////// +/////////////////////8/PzzAwMP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////0hISLe3t///////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////4+Pj3BwcP////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////3BwcI+Pj////////////////////////////////////w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///yAgIP///////// +//////////////////////////////////////////yAgIN/f3/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////+/v7xgYGPf39//// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////f39yA +gIOfn5/////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////9/f3yAgIP/////////////////// +////////////+/v7////39/f////39/f////39/f////39/f////39/f////39/f////39/f////3 +9/f////////////////////////////////////////////////////////2hoaJeXl////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/5eXl2hoaP/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////4+Pj3BwcP///////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////1BQUK+v +r////////8fHx////////////////////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v +////7+/v////////////////////////////////////////////////////////////////////7 +e3t0hISP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////2BgYJ+fn/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////f39yAgIOfn5///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////9/f3ygoKPf395+fn////////////////////9/f3////wAAAP///wAAAP///wAAAP// +/wAAAP///wAAAP///wAAAP///39/f//////////////////////////////////////////////// +/////////////// +//f39xAQEPf39//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////yAgIN/f3///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////4eHh3h4eP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////3BwcI+Pj////1hYWP///////////////////0BAQP///0BAQP///0BAQP///0 +BAQP///0BAQP///0BAQP///0BAQP///////////////////////////////////////////////// +//////////////////////1BQUK+vr/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////9/f3yAgIP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////9/f3ygoKPf39////////////////3BwcP///0B +AQP///0BAQP///0BAQP///0BAQP////////////////////////////////////////////////// +/////////////////////////////////+/v7ygoKOfn5//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////3h4eIeHh////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////5+fn2BgYP////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////0BAQL+/v///////////// +///////////wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////////// +//////////////////////////////////////////////////////4+Pj3BwcP////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////6enp1hYWP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////3BwcI+Pj// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////5+fn2BgY +P///////////////////////8/Pz////7+/v////7+/v////7+/v////7+/v///////////////// +////////////////////////////////////////////////////////////////////////f39zg +4OM/Pz/////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////8/Pz +zAwMP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////zAwMM/Pz////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////+fn5zAwMOfn5////////////////////////////39/f////39/f////39/f////39/f//// +39/f////39/f/// +/39/f////39/f////39/f////39/f////39/f////39/f////4+Pj//////////////////////// +6+vr1BQUP//////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////f +39wgICP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////+/v7xAQEP/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////2BgYJ+fn////////////////////////////0BAQP///wAAAP///wAAAP///wAAAP///wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP////////// +/////////////////////1BQUK+vr//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////ygoKNfX1////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////6+vr1BQUP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////7+/v0BAQP///////////////////////////////////0BAQP///0BAQP +///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0B +AQP///1hYWP///////////////////////////8/Pzzg4OPf39/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////1BQUK+vr///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////3h4eIeHh////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////f39zAwMNfX1//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////4+Pj3BwcP///////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////39/f39/f//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////0hISLe3t///////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////3BwcI+Pj////////9/f3////9/f +3////////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///5+fn///////// +///0BAQL+/v////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////6+vr1BQ +UP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////ygoK +NfX1/////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////6enp1hYWP///////////////wAAAP +///////////////////0BAQP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP////////// +/////+fn5zAwMOfn5//////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////9fX1y +goKP///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////xA +QEO/v7/////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////8/Pzzg4OPf39//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////6+vr1BQUP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////+fn5xgYGP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////+/v7xAQEP///////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////+/v +7zAwMN/f3////////////////////0BAQP///////////////////3BwcP///0BAQP///0BAQP/// +0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP//////////////////////////////// +///////////////////////////////////////////////3BwcI+Pj////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////wAAAP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8/PzzAwMP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////0BAQL+/v////////////////////9/f3////9/f3////////////////////wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/////////////////// +/////////////////////////////////////////////////////////////////f39zAwMNfX1/ +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////xAQEO/v7/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////7e3t0hISP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////3h4eIeHh////////////////////////////39/f////////// +//////////5+fn////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/ +f//////////////////////////////////////////////////////////////////////////// +////////9fX1zAwMPf39///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////yAgIN/f3// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////5eXl2hoaP///////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////6+vr1BQUP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////5+fn2BgYP////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////zAwMM/Pz +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////3h4eIeHh///// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////9fX1zAwMPf39/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////39/f39/f////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////0BAQL+/v//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////2BgYJ+fn///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////9/f30BAQN/f3////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////2hoaJeXl///////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////1BQUK+vr/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////0BAQL+/v//////////////////////////////////////////////// +////////////////////////////////////////////////////////////////9/f30BAQN/f3/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +1BQUK+vr///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////2BgYJ+fn////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////zk5OdjY2P////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +9/f30BAQN/f3///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////f390hISL+/v//////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////3BwcI+Pj//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////+/v7///////////////////////////////// +///////////////////////////////////////////////////////////////////////////9/ +f30BAQN/f3/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////+/v70BAQM/Pz////////////////////////////////////////// +//////////////////////////////////////////////////////////////6+vr6+vr/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////9/f30BAQN/f3////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////+fn5zg4ON/f3///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////9/f30BAQN/f3///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////9/f3zAwMNfX1 +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8/Pz0BAQN/f3//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////9/f3zg4OMfHx//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////6enpzg4ON/f3/////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////+/v70BAQKenp////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////3BwcFhYWPf39///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////f391hYWIeHh///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////+/v70BAQI+Pj//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////3h4eGhoaP/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////8/PzzAw +ML+/v//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////5eXl0hISPf39//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////6enpzg4ON/f3/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////8fHx7+/v9/f3///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////7e3tyYmJsnJyf////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////3BwcFhYWPf39///////////////////////////////////////////////////////////// +///////////////////////////////////////////////+/v77+/v4+Pj3BwcEBAQEBAQBgYGAA +AAAAAAAAAAAAAAAAAADg4OEBAQCAgIAAAAAAAAAAAACgoKEBAQEBAQEBAQHBwcJeXl7+/v/////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////6ampre3t///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////6+vr//////////////////////////////////////////////////// +////////////////////////////////////////////9/f34+Pj3BwcEBAQBAQEBAQEEBAQHBwcI ++Pj7+/v7+/v+fn5////////////////////////////////////////////9fX17+/v7+/v7+/v4+ +Pj2hoaEBAQAAAACgoKFBQUH9/f7e3t9/f3/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////7e3t3BwcCgoKCAgIHBwcI+Pj7+/v ++/v7///////////////////////////////////////////////////////////////////////// +///////////////////////////////9fX16+vr39/f0hISCAgICgoKHBwcMfHx////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////+fn5////0BAQP///0BAQP///0BAQP///0BAQP +///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0B +AQP///0BAQP///0BAQP///0BAQP///0BAQP////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////9/f35eXl1BQUAgICEhISI+Pj9fX +1//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////9fX14+Pjz +g4OBAQEGBgYKenp/f39////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////wAAAP///wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///2BgYP///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////5+fnzg4OCAgIGhoaK+ +vr/f39////////////////////////////////yAgIP///////////////////39/f////wAAAP// +/wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/////////////////////// +////////////////////+/v75+fn1hYWAgICFBQUJ+fn///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////f3 +9////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v//// +7+/v////7+/v/// +/7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////9/f33h4eBgYGGBgYMfHx//////// +////////////////////////////////////////////39/f////////////////////wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////// +//////////////////////////////////////6+vr2BgYBgYGIeHh+fn5/////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8/Pz///////////////// +///7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+ +/v////7+/v////7+/v/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////7e3t1hYWCAgIIeHh+fn +5////////////////////////////////////////////////////////8fHx//////////////// +////9/f3////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v///// +///////////////////////////////////////////////////////////////+fn53h4eCAgIGB +gYNfX1/////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////39/f//// +////////////////9/f3////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////4ODgygoKEh +ISKenp/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////f395+fnygoKEhISK+vr////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////3BwcP///////////////////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP/// +0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///+fn51dXV9DQ0P///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////7e3t1BQUHBwcP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////8/P +z9/f3//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////////////////////////9fX19fX1 +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////f3939/fygoKAAAAD +AwMCAgIAAAADg4OKenp////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////4+P +jzAwMAAAACgoKCgoKAAAADAwMI+Pj//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////8fHx +zAwMH9/f9fX1////////////////8fHx1hYWEhISOfn5///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////9fX1zg4OHBwcM/Pz////////////////8/Pz3BwcDg4ONfX1/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////3h4eDg4ONfX1+/v74eHh0hISBAQECAgIFhYWJeXl////7e3tygoKLe3t//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////4+PjzAwMMfHx////////////////////////////////8fHxzAwMJ+fn// +//////////////////////////9/f3yAgIAAAAAAAADAwMHh4eO/v7/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////5+fn1hYWP///7e3tygoKHh4eLe3t+/v79/f36enp2hoaDg4ONfX1+/v +7zAwMNfX1//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////7+/v0BAQPf39///////////////////////////////// +////////f390BAQL+/v////////////////////////////9fX1/f39////8/Pz4eHhygoKLe3t// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////+fn5ygoKO/v75eXl0BAQOfn5////////////////// +//////8fHxzAwMNfX18fHxzg4OP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////f39ygoKN/f3/////////////////////////////////// +/////////////9/f3ygoKPf39////////////////////////////////////////////+fn50hIS +IeHh///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////0hISLe3t9/f3ygoKPf39//////////////////// +////////////8/Pzzg4OPf393h4eIeHh///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////2hoaJeXl////////////////////// +//////////////////////////////////5eXl2hoaP////////////////////////////////// +//////////////f390BAQMfHx//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////+/v7xAQEP///0hISLe3t/////// +/////////////////////////////////3h4eIeHh9/f3yAgIP/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////f39xAQEPf39///// +///////////////////////////////////////////////////+/v7xAQEP///////////////// +//////////////////////////////////9fX1ygoKP////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////7e3t0hISO/ +v7xAQEP///////////////////////////////////////////8fHxzg4OP///zAwMM/Pz/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +6+vr1BQUP///////////////////////////////////////////////////////////////ygoKN +fX1////////////////////////////////////////////////////ygoKNfX1////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////4eHh3h4eL+/v0BAQP////////////////////////////////////////////f39wgICP/ +//0hISLe3t/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////5eXl2hoaP/////////////////////////////////////////////////// +////////////1hYWKenp////////////////////////////////////////////////////1hYWK +enp////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////2hoaJeXl5+fn2BgYP///////////////////////////////////////////////xgYG +Ofn52BgYJ+fn///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////39/f39/f////////////////////////////////////////////////// +//////////////3h4eIeHh////////////////////////////////////////////////////3Bw +cI+Pj//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////5eXl2hoaM/PzzAwMP////////////////////////////////// +/////////+fn5xgYGP///0BAQL+/v//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////5+fn2BgYP//////////////////////////////// +///////////////////////////////0hISLe3t////////////////////////////////////// +//////////////0hISLe3t/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////8/PzzAwMP///wgICPf39////////////// +//////////////////////////6+vr1BQUP///xAQEO/v7/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////8fHxzg4OP/////////////// +////////////////////////////////////////////////xAQEO/v7///////////////////// +///////////////////////////////xAQEO/v7////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////f39xAQEPf3939/f3 +9/f////////////////////////////////////////0BAQL+/v8fHxzg4OP///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////xgY +GOfn5////////////////////////////////////////////////////////9/f3yAgIP/////// +////////////////////////////////////////////5+fn2BgYP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////4eHh3h4ePf39zg4OMfHx////////////////////////////////4+Pj2hoaP///zg4OMfHx/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////6enp1hYWP////////////////////////////////////////////////////// +/1hYWKenp////////////////////////////////////////////////+fn5ygoKO/v7//////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////zg4OMfHx8/PzygoKIeHh////////////////////+/v72BgYFBQUPf394eHh3h4eP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////1hYWKenp////////////////////////////////////////////////6 +enp1hYWP///////////////////////////////////////////////7e3tygoKM/Pz////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////9fX1zAwMNfX1/f393h4eCAgIFBQUH9/f39/f0BAQCAgIJ+fn// +//7e3tzg4OPf39/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////+fn5zAwMMfHx//////////////////////////// +////////////8fHxzg4OOfn5////////////////////////3BwcFhYWIeHh6enp3h4eDg4OEhISO +fn5////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////8fHxzAwMIeHh////9/f36+vr39/f3 +9/f7+/v+/v7+/v72BgYEhISO/v7////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////9fX1zg4OHh4ePf39/// +//////////////////////f393h4eDg4ON/f3////////////////////////////9/f36enp3h4e +FhYWIeHh8fHx///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////f393h4e +CgoKFhYWIeHh7+/v7e3t39/f0hISCgoKJ+fn///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////4eHhygoKFBQUH9/f7+/v7+/v39/f1BQUCgoKIeHh/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////9fX16enp3h4eEBAQEhISH9/f7e3t+fn5//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////9/f36+vr39/f0BAQEBAQH9/f6+vr9/f3///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////7+/v+/v7/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////4+Pjxg +YGGhoaN/f3/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////9fX115eXhoaGu/v7////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////f395eXlyAgIEhISLe3t////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////6enp0BAQCgoKJeXl+jo6P//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////7e3t0hISCgoKJ+fn/f39///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////+fn54eHhxgYGFhYWL+/v//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////f397 ++/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+ +/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/ +v9fX1////+fn57+/v7+/v7+/v9fX1////+fn5////////////////////////////////9fX12BgY +CAgIGBgYKenp/f3 +9//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////f396+vr2BgYBgYGHh4eOfn5////////////////////// +///////////////////////////////////f397+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX +1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1////+fn57+/v7+/v7+/v9fX1//// ++fn5///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////6en +p0BAQEBAQEBAQIeHh////7e3t0BAQEBAQEBAQIeHh////7e3t0BAQEBAQEBAQIeHh////7e3t0BAQ +EBAQEBAQIeHh////7e3t0BAQEBAQEBAQIeHh////7e3t0BAQEBAQEBAQIeHh////7e3t0BAQEBAQE +BAQIeHh////7e3t0BAQEBAQEBAQIeHh////7e3t8/Pz////////////////////////////////// +//+fn55+fn1hYWAgICFBQUJeXl+fn5/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////9/f35eXl0hISAgICFBQUJ+fn///////////////// +///////////////////////////////////////////////////6enp0BAQEBAQEBAQIeHh////7e +3t0BAQEBAQEBAQIeHh////7e3t0BAQEBAQEBAQIeHh////7e3t0BAQEBAQEBAQIeHh////7e3t0BA +QEBAQEBAQIeHh////7e3t8/Pz//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////6GhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGh +oaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGho +aGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhof//////////////////// +///////////////////////////////////6+vr2hoaBgYGDAwMIeHh7+/v/f39////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////7e3t3BwcCgoKCAgIGhoaLe3t//////////// +////////////////////////////////////////////////////////////////////////5+fn5 ++fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+ +fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////9/f36enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6e +np6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6en +p6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp//// +////////////////////////////////////////////////////////////////8/Pz3h4eEBAQA +gICCAgIEhISH9/f6+vr9fX1////////////////////////////////////////////////////// +//////////////////////////////////9fX17e3t39/f1hYWDg4OAAAAEhISI+Pj9fX1/////// +///////////////////////////////////////////////////////////////////////////// +////////9/f36Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6 +Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo6Ojo////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////39/f62tra2tra2tra2tra2tra2tra +2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2 +tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra2t +ra2tra2tra2trf/////////////////////////////////////////////////////////////// +////////////////////9/f37e3t39/f1BQUCgoKAAAAEBAQEBAQGBgYH9/f39/f39/f6enp7+/v7 ++/v7+/v7+/v7+/v7+/v6enp39/f39/f39/f39/f1hYWDg4OAAAACgoKEhISH9/f6enp8fHx////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////39/f6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp +6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////39/f7S0tLS0t +LS0tLS0tLS0tLS0 +tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t +LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL +S0tLS0tLS0tLS0tP///////////////////////////////////////////////////////////// +//////////////////////////////////////////////7+/v7+/v5+fn39/f39/f39/f1hYWEBA +QEBAQEBAQEBAQEBAQEBAQFhYWH9/f39/f39/f39/f6enp8fHx//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////39/f6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6u +rq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////39/f7q6urq +6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6 +urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6urq6u +rq6urq6urq6urq6urq6urq6urq6urq6uv//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////39/f6+vr6+vr6+vr6+vr6+vr6+vr6+vr6 ++vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+ +vr6+vr6+vr6+vr/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////5+fn8DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD +AwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDA +wMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwP/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////4eHh////0BAQP///0BAQP///3BwcP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////5+fn7S0tLS0tLS0t +LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL +S0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8 +fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f +Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx/////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////wAAAP///wAAAP///wAAAP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////7i4uLi4uIqKiri4uIqKiri4uIqKiri4uIqKiri4uIqKiri4uIqKiri4uIqKiri4uIqKiri4u +Li4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////9/f383Nzc3NzWZmZs3NzWZmZs3NzWZmZs3Nz +WZmZs3NzWZmZs3NzWZmZs3NzWZmZs3NzWZmZs3NzWZmZs3NzWZmZs3NzWZmZs3NzWZmZs3NzWZmZs +3NzWZmZs3Nzaamps3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3 +Nzc3Nzf////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////6+vr////39/f////39/f////5+fn//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////9/f37y8vEdHR7y8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vAAAALy8vAAA +ALy8vAAAALy8vF5eXry8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vP/////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////39/f9PT009PT9PT0wAAANPT0wAAANPT0wA +AANPT0wAAANPT0wAAANPT0wAAANPT0wAAANPT0wAAANPT0wAAANPT0wAAANPT0wAAANPT0wAAANPT +0wAAANPT0wAAANPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0 +9PT09PT0///////////////////////////////////////////////////////////////////// +///////////////////////+fn5////////////////////7+/v////7+/v////7+/v////7+/v// +//7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////39/f8DAwMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMMDAwDAwMM +DAwDAwMMDAwDAwMMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////39/f9ra2tra2m1tbd +ra2m1tbdra2m1tbdra2m1tbdra2m1tbdra2m1tbdra2m1tbdra2m1tbdra2m1tbdra2m1tbdra2m1 +tbdra2m1tbdra2m1tbdra2m1tbdra2rGxsdra2tra2tra2tra2tra2tra2tra2tra2tra2tra2tra +2tra2tra2tra2tra2tra2tra2v/////////////////////////////////////////////////// +////////////////////////////////////wAAAP///////////////////2BgYP///wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/ +//39/f/////////////////////////////////////////////////////////////////////// +/////////////////////////////////////39/f8XFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFx +cXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxc +XFxcXFxf///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +39/f+Dg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4O +Dg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4OD +g4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4P////////////////////////////////// +/////////////////////////////////////////////////////////7e3t//////////////// +////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0 +BAQP///0BAQP///0BAQP///////////////////////////////////////////////////////// +//////////////////////////////////////////////////////39/f8nJycnJyQAAAMnJyQAA +AMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyQAAAMnJyWRkZMnJy +cnJycnJycnJycnJycnJycnJyf//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////5+fn56enubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5 +ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5u +bm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5v///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////5+fn83 +NzU1NTc3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAAAM3NzQAA +AM3NzQAAAM3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzf/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +9HR0dHR0Z2dndHR0Z2dndHR0Z2dndHR0Z2dndHR0Z2dndHR0Z2dndHR0Z2dndHR0Z2dndHR0Z2dnd +HR0Z2dndHR0be3t9HR0dHR0dHR0dHR0dHR0dHR0dHR0f///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////9/f39/f3////39/f////39/f////39/f////39/f/ +///39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39 +/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////9/f39XV1ZKSktXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1 +WpqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1WpqatXV1dXV1f//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////39/f39/f2BgYP///wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wA +AAP///wAAAP///5+fn/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////39/f9ra2tra2gAAANra2gAAANra2gAAANra2gAAANra2gAA +ANra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2gAAANra2jc3N9ra2 +v//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////39/f39/ +f////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////39/f97e3piYmN7e3m9vb97e3m9vb97 +e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9vb97e3m9v +b97e3m9vb97e3t7e3v/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////39/f39/f6+vr////39/f////39/f////39/f////39/f////39/f////39/f////39/ +f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f//// +39/f////39/f////39/f////39/f////39/f////39/f////8/Pz///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////39/f+Li4uLi4u +Li4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uL +i4uLi4uLi4uLi4uLi4uLi4uLi4uLi4uLi4v////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////4eHh4+Pj////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////5+fn56enubm +5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5 +ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5v//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////f39//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////9/f39/f36+vr////39/f////39/f////39/f////39/f////39/f// +//39/f////39/f////39/f////39/f////39/f////39/f////39/f/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////39/f39/f////wAAAP///wAAAP///wAAAP///w +AAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////39/f39/f2BgYP///wAAA +P///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///w +AAAP///wAAAP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////39/f39/f////39/f// +//39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/f////39/ +f////39/f//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////4 +eHh4+Pj////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////f39///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////w4AAAAUAAAAAAAAABAAAAAUAAAA +2003-12-23T10:01:54 +2004-05-03T14:58:25 +2004-05-03T14:58:01 +2003-12-23T10:01:54 + + +9 +295 +34 +1 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +4 +0 +2 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +1 +0 +0 +0 +1 +0 + + +0.013888888888889 +0.013888888888889 +0.013888888888889 +0.013888888888889 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +0 +0 +0 + + +0.0033333333333333 +0 +1 +0 +1 +0 +4 +0 +1 +0 + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +28 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + + +2 +0 +1 +0 + + + + + + + + + + + + + + +8.5 +11 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +5 +1 +0 +1 +0 +0 +0 +0.125 +0.125 +1 +1 +0.5 +0.5 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Flowchart +255 +0 +1 +1 +0 +0 +1 +1 +Flowchart +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +7.03125 +5.9855674544158 +2.3125 +0.75 +1.15625 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +2.3125 +0 + + +2.3125 +0.75 + + +0 +0.75 + + +0 +0 + + +“firewall stop” +Failed “firewall (restart|add|delete|refresh) with no /var/lib/shorewall/restore + + + +7.375 +8.375 +1.75 +0.75 +0.875 +0.375 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1.75 +0 + + +1.75 +0.75 + + +0 +0.75 + + +0 +0 + + +Successful “firewall (restart|refresh|reset|restore)” + + + +3.8125 +6.7896205357143 +6.625 +6.9207589285714 +3.3125 +3.4603794642857 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +8 + +0 +0 + + + + + +1.0200892857143 +5.6194196428571 +0.70982142857143 +0.70982142857143 +0.35491071428571 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +1 + + + +0.0871 +0 +0 +0 +0 +0 + + +0.0871 +0.35491071428571 +0.0871 +0.35491071428571 +2 +1 +1 +Move Inner Circle + + +0.35491071428571 +0.35491071428571 +0 +0 +0 +0 + + + +0.35491071428571 +0 +0 +0 +0 +0 + + + +0.70982142857143 +0.35491071428571 +0 +0 +0 +0 + + + +0.35491071428571 +0.70982142857143 +0 +0 +0 +0 + + + +0 +0.35491071428571 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0 +0.35491071428571 + + +0.70982142857143 +0.35491071428571 +-0.35491071428571 + + +0 +0.35491071428571 +-0.35491071428571 + + + +1 +0 +0 +0 + +0.0871 +0.35491071428571 + + +0.62272142857143 +0.35491071428571 +-0.26781071428571 + + +0.0871 +0.35491071428571 +-0.26781071428571 + + + + + +5.6785714285714 +5.6194196428571 +0.70982142857143 +0.70982142857143 +0.35491071428571 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0.35491071428571 +0 +0 +0 +0 + + + +0.35491071428571 +0 +0 +0 +0 +0 + + + +0.70982142857143 +0.35491071428571 +0 +0 +0 +0 + + + +0.35491071428571 +0.70982142857143 +0 +0 +0 +0 + + + +0.35491071428571 +0.35491071428571 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0 +0.35491071428571 + + +0.70982142857143 +0.35491071428571 +0.35491071428571 +0.70982142857143 +0 +1 + + +0 +0.35491071428571 +0.35491071428571 +0 +0 +1 + + + + + +3.4308035714286 +1.4787946428571 +0.70982142857143 +0.70982142857143 +0.35491071428571 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +0.35491071428571 +0 +0 +0 +0 + + + +0.35491071428571 +0 +0 +0 +0 +0 + + + +0.70982142857143 +0.35491071428571 +0 +0 +0 +0 + + + +0.35491071428571 +0.70982142857143 +0 +0 +0 +0 + + + +0.35491071428571 +0.35491071428571 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0 +0.35491071428571 + + +0.70982142857143 +0.35491071428571 +0.35491071428571 +0.70982142857143 +0 +1 + + +0 +0.35491071428571 +0.35491071428571 +0 +0 +1 + + + + + +6.1517857142857 +5.6194196428571 +0.94642857142857 +0.25 +0.47321428571429 +0 +1.8769053397437E-15 +0 +0 +0 + + +5.6785714285714 +5.6194196428571 +6.625 +5.6194196428571 + + +0 +0 +0 +0 +0 + + +1 + + +0.47321428571429 +0.125 +1.5 +0.25 +0.75 +0.125 +-1.8769053397437E-15 + + +1 + + + +0.5728359494296 +0.25 +0.50001281983565 +0.62501281983565 +0.50001281983565 +0.125 + + +1 +0 +0 +0 + +0.5728359494296 +0.25 + + +0.5728359494296 +-0.25 +-0.37359262199897 + + + + + +3.9040178571429 +1.4787946428571 +0.94642857142857 +0.25 +0.47321428571429 +0 +-2.3461316746796E-16 +0 +0 +0 + + +3.4308035714286 +1.4787946428571 +4.3772321428571 +1.4787946428571 + + +0 +0 +0 +0 +0 + + +1 + + +0.47321428571429 +0.125 +1.5 +0.25 +0.75 +0.125 +2.3461316746796E-16 + + +1 + + + +0.5728359494296 +0.25 +0.50001281983565 +0.62501281983565 +0.50001281983565 +0.125 + + +1 +0 +0 +0 + +0.5728359494296 +0.25 + + +0.5728359494296 +-0.25 +-0.37359262199897 + + + + + +0.94642857142857 +6.4475446428571 +1.8928571428571 +0.47321428571429 +0.94642857142857 +0.23660714285714 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +1 + + + +0.25 +0 +8 +2 +0 +0 + + +2 +0.5 +0 +0 +0 +0 + + + + +0 +0.47321428571429 +1.8928571428571 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +1.8928571428571 +0 +0 +0.2 +0 +0 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0 + + +0 +0 +0 +0 + +-0.25 +0 + + +1.8928571428571 +0 + + +1.8928571428571 +0.03125 + + +-0.25 +0.03125 + + +-0.25 +0 + + + + + +0.94642857142857 +0.23660714285714 +1.8928571428571 +0.47321428571429 +0.94642857142857 +0.23660714285714 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.47321428571429 +0.11111111111111 +0.24444444444444 +0 +0.24444444444444 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0.72321428571429 + + +0 +0 + + +1.8928571428571 +0 + + + + + +0 +0.47321428571429 +2 +0.2 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.03125 +1.9267035600278 +0.2 +0 +0 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0.25 +0 +8 +0 +0 +0 + +Clear State (Initial State) + + + +0.94642857142857 +0.23660714285714 +1.8928571428571 +0.47321428571429 +0.94642857142857 +0.23660714285714 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.47321428571429 +0.11111111111111 +0.24444444444444 +0 +0.24444444444444 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.8928571428571 +0 + + +1.8928571428571 +0.47321428571429 + + +0 +0.47321428571429 + + +0 +0 + + + + + +0 +0.47321428571429 +1.2533637162778 +0.24444444444444 +0 +0.24444444444444 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.24444444444444 +1.2533637162778 +0.24444444444444 +0 +0.24444444444444 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.2533637162778 +0 + + +1.2533637162778 +0.24444444444444 + + +0 +0.24444444444444 + + +0 +0 + + +System is “Wide Open” + + + + + +5.6785714285714 +6.5658482142857 +1.1830357142857 +0.70982142857143 +0.59151785714286 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +1 + + + +0.25 +0 +5 +3 +0 +0 + + +1.25 +0.75 +0 +0 +0 +0 + + + + +0 +0.70982142857143 +1.1830357142857 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +1.1830357142857 +0 +0 +0.2 +0 +0 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0 + + +0 +0 +0 +0 + +-0.25 +0 + + +1.1830357142857 +0 + + +1.1830357142857 +0.03125 + + +-0.25 +0.03125 + + +-0.25 +0 + + + + + +0.59151785714286 +0.35491071428571 +1.1830357142857 +0.70982142857143 +0.59151785714286 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.70982142857143 +0.11111111111111 +0.24444444444444 +0 +0.24444444444444 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0.95982142857143 + + +0 +0 + + +1.1830357142857 +0 + + + + + +0 +0.70982142857143 +1.25 +0.2 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.03125 +1.0839301225278 +0.2 +0 +0 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0.25 +0 +5 +0 +0 +0 + +Started State + + + +0.59151785714286 +0.35491071428571 +1.1830357142857 +0.70982142857143 +0.59151785714286 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.70982142857143 +0.11111111111111 +0.24444444444444 +0 +0.24444444444444 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.1830357142857 +0 + + +1.1830357142857 +0.70982142857143 + + +0 +0.70982142857143 + + +0 +0 + + + + + +0 +0.70982142857143 +1.1916775183611 +0.51111111111111 +0 +0.51111111111111 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.51111111111111 +1.1916775183611 +0.51111111111111 +0 +0.51111111111111 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.1916775183611 +0 + + +1.1916775183611 +0.51111111111111 + + +0 +0.51111111111111 + + +0 +0 + + +System filters packets +based on current +configuration + + + + + +2.1294642857143 +1.1238839285714 +1.65625 +0.70982142857143 +0.828125 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +1 + + + +0.25 +0 +7 +3 +0 +0 + + +1.75 +0.75 +0 +0 +0 +0 + + + + +0 +0.70982142857143 +1.65625 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +1.65625 +0 +0 +0.2 +0 +0 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0 + + +0 +0 +0 +0 + +-0.25 +0 + + +1.65625 +0 + + +1.65625 +0.03125 + + +-0.25 +0.03125 + + +-0.25 +0 + + + + + +0.828125 +0.35491071428571 +1.65625 +0.70982142857143 +0.828125 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.70982142857143 +0.11111111111111 +0.24444444444444 +0 +0.24444444444444 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0.95982142857143 + + +0 +0 + + +1.65625 +0 + + + + + +0 +0.70982142857143 +1.25 +0.2 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.03125 +1.1675075964861 +0.2 +0 +0 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0.25 +0 +5 +0 +0 +0 + +Stopped State + + + +0.828125 +0.35491071428571 +1.65625 +0.70982142857143 +0.828125 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.70982142857143 +0.11111111111111 +0.24444444444444 +0 +0.24444444444444 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.65625 +0 + + +1.65625 +0.70982142857143 + + +0 +0.70982142857143 + + +0 +0 + + + + + +0 +0.70982142857143 +1.5872938378056 +0.51111111111111 +0 +0.51111111111111 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0.51111111111111 +1.5872938378055 +0.51111111111111 +0 +0.51111111111111 +0 + + +1 +1 +1 +1 +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.5872938378056 +0 + + +1.5872938378056 +0.51111111111111 + + +0 +0.51111111111111 + + +0 +0 + + +System allows traffic +to and from destinations listed +in /etc/shorewall/routestopped + + + + + +3.3493303571429 +5.6194196428571 +3.9486607142857 +0.75 +1.9743303571429 +0 +0 +0 +0 +0 + + +1.375 +5.6194196428571 +5.3236607142857 +5.6194196428571 + + +0 +0 +0 +0 +0 + + +1 + + +1.9743303571429 +0.375 +1.5 +0.5 +0.75 +0.25 +0 + + +1 + + + +-0.75 +0 +1.9743303571429 +0.75 +0.5 +0.25 + + +1.9743303571429 +2.2236535727572 +-2.9736535727572 +0 +0.96819379992842 +0.25020145039579 + + +0.61915729542832 +0.4232543484926 +0 +0 +0.094580620478673 +-0.74401243687849 + + +0.61915729542832 +0.4232543484926 +0 +0.75 +0.5 +0.25 + + +0 +0 +0 +0 +0.96819379992842 +0.25020145039579 + + +0 +0 +0 +0 +0.094580620478673 +-0.74401243687849 + + +0.5 +0 +0.5 +0 +2 +2 +1 +Resize Shape + + +3.4486607142857 +0 +3.4486607142857 +0 +4 +4 +1 +Resize Shape + + +1 +0 +0 +0 + +0.61915729542832 +0.4232543484926 + + +3.3295034188574 +0.4232543484926 +-0.3267456515074 + + + + + +3.3493303571429 +5.6194196428571 +3.9486607142857 +0.75 +1.9743303571429 +0 +3.1415926535898 +0 +0 +0 + + +5.3236607142857 +5.6194196428571 +1.375 +5.6194196428571 + + +0 +0 +0 +0 +0 + + +1 + + +1.9743303571429 +0.375 +1.5 +0.5 +0.75 +0.25 +-3.1415926535898 + + +1 + + + +-0.75 +0 +1.9743303571429 +0.75 +0.5 +0.25 + + +1.9743303571429 +2.2236535727572 +-2.9736535727572 +0 +0.96819379992842 +0.25020145039579 + + +0.61915729542832 +0.4232543484926 +0 +0 +0.094580620478673 +-0.74401243687849 + + +0.61915729542832 +0.4232543484926 +0 +0.75 +0.5 +0.25 + + +0 +0 +0 +0 +0.96819379992842 +0.25020145039579 + + +0 +0 +0 +0 +0.094580620478673 +-0.74401243687849 + + +0.5 +0 +0.5 +0 +2 +2 +1 +Resize Shape + + +3.4486607142857 +0 +3.4486607142857 +0 +4 +4 +1 +Resize Shape + + +1 +0 +0 +0 + +0.61915729542832 +0.4232543484926 + + +3.3295034188574 +0.4232543484926 +-0.3267456515074 + + + + + +4.7321428571429 +3.3716517857143 +4.2325572431246 +0.75 +2.1162786215623 +0 +-2.0344439357957 +0 +0 +0 + + +5.6785714285714 +5.2645089285714 +3.7857142857143 +1.4787946428571 + + +0 +0 +0 +0 +0 + + +1 + + +2.1162786215623 +0.375 +1.5 +0.5 +0.75 +0.25 +2.0344439357957 + + +1 + + + +-0.75 +0 +2.1162786215623 +0.75 +0.5 +0.25 + + +2.1162786215623 +2.6107568027211 +-3.3607568027211 +0 +0.97509890997833 +0.2217704122715 + + +0.63168625694654 +0.40431729221599 +0 +0 +0.083686507685496 +-0.74531642168371 + + +0.63168625694654 +0.40431729221599 +0 +0.75 +0.5 +0.25 + + +0 +0 +0 +0 +0.97509890997833 +0.2217704122715 + + +0 +0 +0 +0 +0.083686507685496 +-0.74531642168371 + + +0.5 +0 +0.5 +0 +2 +2 +1 +Resize Shape + + +3.7325572431246 +0 +3.7325572431246 +0 +4 +4 +1 +Resize Shape + + +1 +0 +0 +0 + +0.63168625694654 +0.40431729221599 + + +3.6008709861781 +0.40431729221599 +-0.34568270778401 + + + + + +4.7321428571429 +3.3716517857143 +4.2325572431246 +0.75 +2.1162786215623 +0 +1.1071487177941 +0 +0 +0 + + +3.7857142857143 +1.4787946428571 +5.6785714285714 +5.2645089285714 + + +0 +0 +0 +0 +0 + + +1 + + +2.1162786215623 +0.375 +1.5 +0.5 +0.75 +0.25 +-1.1071487177941 + + +1 + + + +-0.75 +0 +2.1162786215623 +0.75 +0.5 +0.25 + + +2.1162786215623 +2.6107568027211 +-3.3607568027211 +0 +0.97509890997833 +0.2217704122715 + + +0.63168625694654 +0.40431729221599 +0 +0 +0.083686507685496 +-0.74531642168371 + + +0.63168625694654 +0.40431729221599 +0 +0.75 +0.5 +0.25 + + +0 +0 +0 +0 +0.97509890997833 +0.2217704122715 + + +0 +0 +0 +0 +0.083686507685496 +-0.74531642168371 + + +0.5 +0 +0.5 +0 +2 +2 +1 +Resize Shape + + +3.7325572431246 +0 +3.7325572431246 +0 +4 +4 +1 +Resize Shape + + +1 +0 +0 +0 + +0.63168625694654 +0.40431729221599 + + +3.6008709861781 +0.40431729221599 +-0.34568270778401 + + + + + +2.0479910714286 +3.3716517857143 +4.3078951910834 +0.75 +2.1539475955417 +0 +-1.0733104912307 +0 +0 +0 + + +1.0200892857143 +5.2645089285714 +3.0758928571429 +1.4787946428571 + + +0 +0 +0 +0 +0 + + +1 + + +2.1539475955417 +0.375 +1.5 +0.5 +0.75 +0.25 +1.0733104912307 + + +1 + + + +-0.75 +0 +2.1539475955417 +0.75 +0.5 +0.25 + + +2.1539475955417 +2.7179934962266 +-3.4679934962266 +0 +0.97661507494314 +0.21499533807457 + + +0.63472583370385 +0.39952861728411 +0 +0 +0.081098768006923 +-0.74560243416164 + + +0.63472583370385 +0.39952861728411 +0 +0.75 +0.5 +0.25 + + +0 +0 +0 +0 +0.97661507494314 +0.21499533807457 + + +0 +0 +0 +0 +0.081098768006923 +-0.74560243416164 + + +0.5 +0 +0.5 +0 +2 +2 +1 +Resize Shape + + +3.8078951910834 +0 +3.8078951910834 +0 +4 +4 +1 +Resize Shape + + +1 +0 +0 +0 + +0.63472583370385 +0.39952861728411 + + +3.6731693573796 +0.39952861728411 +-0.35047138271589 + + + + + +2.0479910714286 +3.3716517857143 +4.3078951910834 +0.75 +2.1539475955417 +0 +2.0682821623591 +0 +0 +0 + + +3.0758928571429 +1.4787946428571 +1.0200892857143 +5.2645089285714 + + +0 +0 +0 +0 +0 + + +1 + + +2.1539475955417 +0.375 +1.5 +0.5 +0.75 +0.25 +-2.0682821623591 + + +1 + + + +-0.75 +0 +2.1539475955417 +0.75 +0.5 +0.25 + + +2.1539475955417 +2.7179934962266 +-3.4679934962266 +0 +0.97661507494314 +0.21499533807457 + + +0.63472583370385 +0.39952861728411 +0 +0 +0.081098768006923 +-0.74560243416164 + + +0.63472583370385 +0.39952861728411 +0 +0.75 +0.5 +0.25 + + +0 +0 +0 +0 +0.97661507494314 +0.21499533807457 + + +0 +0 +0 +0 +0.081098768006923 +-0.74560243416164 + + +0.5 +0 +0.5 +0 +2 +2 +1 +Resize Shape + + +3.8078951910834 +0 +3.8078951910834 +0 +4 +4 +1 +Resize Shape + + +1 +0 +0 +0 + +0.63472583370385 +0.39952861728411 + + +3.6731693573796 +0.39952861728411 +-0.35047138271589 + + + + + +4.7631085853437 +3.6674107142857 +1.2237828293126 +0.65890236084152 +0.61189141465628 +0.32945118042076 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1.2237828293126 +0 + + +1.2237828293126 +0.65890236084152 + + +0 +0.65890236084152 + + +0 +0 + + +Successful “firewall start” + + + +3.4375 +4.0326483996507 +1.625 +0.73047537073002 +0.8125 +0.36523768536501 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1.625 +0 + + +1.625 +0.73047537073002 + + +0 +0.73047537073002 + + +0 +0 + + +“firewall stop” +Failed “firewall start” with no /var/lib/shorewall/restore + + + +3.4308035714286 +5.0512562819971 +1.1953135527897 +0.51992327827987 +0.59765677639486 +0.25996163913993 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1.1953135527897 +0 + + +1.1953135527897 +0.51992327827987 + + +0 +0.51992327827987 + + +0 +0 + + +“firewall clear” + + + +3.4700082073281 +6.5457589285714 +1.4400164146563 +0.65890236084152 +0.72000820732814 +0.32945118042076 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1.4400164146563 +0 + + +1.4400164146563 +0.65890236084152 + + +0 +0.65890236084152 + + +0 +0 + + +Successful “firewall start” + + + +1.0200892857143 +2.9107972894315 +1.1953135527897 +0.51992327827987 +0.59765677639486 +0.25996163913993 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +1.1953135527897 +0 + + +1.1953135527897 +0.51992327827987 + + +0 +0.51992327827987 + + +0 +0 + + +“firewall clear” + + + +3.6674107142857 +0.38448660714286 +3.1941964285714 +0.76897321428571 +1.5970982142857 +0.38448660714286 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.19444444444444 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +3.1941964285714 +0 + + +3.1941964285714 +0.76897321428571 + + +0 +0.76897321428571 + + +0 +0 + + +Shorewall State Diagram + + + +5.6852678571429 +1.4787946428571 +2.3794642857143 +0.70982142857143 +1.1897321428572 +0.35491071428571 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +-0.25 +0.25 +0 +-1.2 +0 +0 +0 +1 + + + +0 +0 +0 +0 + +0 +0 + + +2.3794642857143 +0 + + +2.3794642857143 +0.70982142857143 + + +0 +0.70982142857143 + + +0 +0 + + +“firewall stop” with no /var/lib/shorewall/restore +Failed “firewall start” + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +1 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + + + + + + + + \ No newline at end of file diff --git a/Shorewall-docsN/images/State_Diagram.vsd b/Shorewall-docsN/images/State_Diagram.vsd new file mode 100755 index 000000000..596bd870c Binary files /dev/null and b/Shorewall-docsN/images/State_Diagram.vsd differ diff --git a/Shorewall-docsN/images/ThreeNets.png b/Shorewall-docsN/images/ThreeNets.png new file mode 100755 index 000000000..d52c75cd0 Binary files /dev/null and b/Shorewall-docsN/images/ThreeNets.png differ diff --git a/Shorewall-docsN/images/ThreeNets.vdx b/Shorewall-docsN/images/ThreeNets.vdx new file mode 100755 index 000000000..b8300fb72 --- /dev/null +++ b/Shorewall-docsN/images/ThreeNets.vdx @@ -0,0 +1,6495 @@ + + + + + +TwoNets1 +teastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAAHwAAAChAAAAAAAAAAAAAAAcDAAAvQ4AACBFTUYAAAEAHO8AAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAAfO4AAAAAAAAAAAAAfAAAAKEAAAAAAAAAAAAAAH0 +AAACiAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADw7QAAKAAAAH0AAACiAAAAAQAYAAAAAADw7QAAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////wD///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////8A////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////AP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////wD//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////8A////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////AP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////wD//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8A//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////AP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////wD////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8A//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////AP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////wD////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////8A/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////AP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////wD//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////8A////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wD//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////8A///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////AP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wD/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////8A///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////AP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/wD////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8A/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///AP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////wD///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////8A/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////AAA +A////AAAA////AAAA////AAAA////AAAA////AAAA//////////////////////////////////// +////////////////////////////////////////////AP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP +///8/Pz////////////////////////////////////////////////////////////////////// +//////wD///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////+fn5/v7+/////////////////////////// +/////////////// +//////////////////////////////8A///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////ODg45+fn////////////////////////////////////////////QEBAv7+/// +//////////////////////////////////////////////////////////////////////AP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////yAgIN/f3/////////////// +/////////////////////////////0BAQL+/v//////////////////////////////////////// +////////////////////////////////wD/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////8gICDf39////////////////////////////////////////////9AQEC/v7/ +///////////////////////////////////////////////////////////////////////8A//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////ICAg39/f///////////// +///////////////////////////////QEBAv7+/////////////////////////////////////// +//////////////////////////////////AP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////yAgIN/f3////////////////////////////////////////////0BAQL+/ +v////////////////////////////////////////////////////////////////////////wD// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//Pz89/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f38QEBBwcHB/f39/f39/f3 +9/f39/f39/f39/f39/f39/f39/f39/f38gICBgYGB/f39/f39/f39/f39/f39/f39/f39/f39/f39 +/f39/f39/f39/f39/f3/f39////////////8A//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////7+/vGBgYGBgYKysrTExMTExMTExMTExMTExMTExM +TExMTExMTExMTExMTExMCgoKQ0NDTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMExMTO +jo6TExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMKCgo////////////AP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////6 ++vrwAAAKenpzg4OLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsRYWFpubm7GxsbGxsbG +xsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsSwsLIWFhbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGx +sbGxsbGxsbGxsbGxsbGxsR0dHdfX1////////wD////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////94eHgoKCjX19cfHx/IyMjIyMjIyMivr68yMjIyMjIyMjIyMjIyMjIy +MjIyMjIGBgYsLCwyMjIyMjIyMjIAAAAyMjIAAAAyMjIAAAAyMjINDQ0yMjINDQ0mJiYyMjIyMjIyM +jIyMjIyMjIyMjIyMjI/Pz/IyMjIyMjIyMjIyMjIyMjIyMhHR0enp6f///////8A////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////n5+fCAgIr6+vRk +ZG4ODg4ODg4ODgqKioKioqqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioVFRUqKioVFRUqKi +oSUlJFRUVVFRUqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioAAAA4ODg4ODg4ODg4ODg +4ODg4ODgKysrz8/P////////AP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////+fn5wgICDg4OF1dXbq6urq6urq6uouLiy8vL7q6urq6urq6urq6u +rq6urq6urq6urq6urq6urq6urq6urq6urq6urq6uqKiohcXF7q6urq6urq6urq6urq6urq6urq6ur +q6urq6urq6urq6urq6ugAAALq6urq6urq6urq6urq6urKysiAgIPf39////////wD//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////+fn59AQEB +AQEBAQEBAQEBAQEAwMDAQEBBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA +QEA4ODgICAhAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAAABAQEBAQEBAQEBAQ +EBAQEBAQEDPz8////////////8A////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////v7+/QEBA////////////// +//////////////////////////////////////////39/fICAg/////////////////////////// +/////////////////////AAAA////////////////////////////////////////AP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////7+/v0BAQP/////////////////////////////////////////////////// +////9/f3yAgIP///////////////////////////////////////////////wAAAP//////////// +///////////////////////////wD//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////+/v79AQED//////////// +////////////////////////////////////////////f398gICD///////////////////////// +//////////////////////8AAAD///////////////////////////////////////8A///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////v7+/QEBA////////////////////////////////////////////////// +//////39/fICAg////////////////////////////////////////////////AAAA/////////// +/////////////////////////////AP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////7+/v0hISP///////////////////////// +//////////////////////////////9/f3yAgIP////////////////////////////////////// +/////////wgICP///////////////////////////////////////wD////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////n5+f////////////////////////////////////////////////////////f398gIC +D///////+fn5////9/f3////9/f3////9/f3////9/f3/////n5+f//////////////////////// +///////////////8A//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////39/fICAg////////////AAAA////AAAA////AAAA////A +AAA////39/f////////////////////////////////////////////AP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////9/f3yA +gIP///////8/Pz////7+/v////7+/v////7+/v////7+/v/////////////////////////////// +/////////////////wD////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////f398gICD/////////////////////////////////// +////////////////////////////////////////////////////////8A/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////7+/v +UFBQ///////////////////////////////////////////////////////////////////////// +///////////////////AP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////////// +//////////////////////////////////////////////////////////wD///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////+Hh4f///9AQED///////////8AAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAC/v78AAAD/////////////////////////////////////////////////////// +////////////////////8A/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////AAAA////////////////AA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv7+/AAAA/////////////////////////////// +/////////////////////////////////////////////AP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////2BgYP///wAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAP//////////////////////////////////////////////////////////////// +///////wD//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///8AAAAA//8A//8A//8A//8A//8A//8A//8A//8A//8A//8AAAAAAAAAAAD///////////////// +//////////////////////////////////////////////8A///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////AAAAAAAAAAAAAAAAAP//AAAAAP//AP//AP +//AAAAAAAA////AAAA/////////////////////////////////////////////////////////// +/////////AP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/////////////////////////// +////////////////////////////////////////////////wD/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAD///////////////////////////////////////////////////////////////////// +//////////8A///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////AAAAAAAAAAAA////AAAA////////////////////////////////// +//////////////////////////////////////////////////AP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////0BAQP///0BAQP/ +//0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///0BAQP///////////////+fn5/// +///////////////////////////////////////////////////////////////////////////// +////////////wD/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +//////////////8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD// +//////////X19c6QEBscHD/////////////////////////////////////////////////////// +////////////////////////////////////8A/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////v7+/////v7+/////v7+/////v7+ +/////v7+/////v7+/////v7+/////v7+/////v7+/7+/vZXBwDRAQmp+f//////////////////// +////////////////////////////////////////////////////////////////////////////A +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////5 +KXlxAYGDpISOfn5////////////////////////////////////////////////////////////// +//////////////////////////////////////wD///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////Hx8chMDAJEBCan5/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +8A/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////5+fnSlhYAAAAOEh +I5+fn//////////////////////////////////////////////////////////////////////// +////////////////////////////////////////AP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////f393+HhwgQEAgQEJqfn///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//wD///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////+3t7cTICAAAAA4SEjn5+f///// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////8A////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////AAAAAAAAAAAA///// +///////AAAAAAAAAAAA////////////////////////////////////////////////////////// +//////39/fOEhIDkBAAggIZWho/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////AP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////wAAAAAAAP///////////wAAAP///wAAAP///////////wAAAAAAAP////////// +/////////////////////////////////////////////6KnpxAgIAh4eACnpxBAQDBAQN/f3//// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////wD/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////8AAAD///////////////////////8AAAD////////// +/////////////8AAAD////////////////////////////////////////////////////////v7+ +80ODgGKCgQSEg4SEjv7+///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////8A//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////AAAA/// +/////////////////////////////////////////////////////////AAAA//////////////// +////////////////////////////////5+fnOEhIAAAAGSgot7e3///////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////AP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wAAAP//////////////////////////////////////// +///////////////////wAAAP///////////////////////////////////////////5qfnwgQEAg +QEH+Hh/f39/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////wD////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////8AAAAAAAD///// +//////////////////////////////////////////////////////////////8AAAAAAAD////// +//////////////////////n5+c4SEgAAABKWFjn5+f/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////8A//////////////////////////////////////////// +////////////////////////////5+fn////QEBA///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////AAAA/////////////////////////////////////////////////// +/////////////////////////////////AAAA////////////////////mp+fCRAQITAwx8fH//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////AP//// +///////////////////////////////////////////////////////////////////////wAAAP/ +//5+fn/////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////wAAAP/////////// +////////////////////////////////////////////////////////////////////////wAAAP +///////////+fn5zpISAoQEJKXl////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////wD////////////////////////////////////////// +//////////////////////////////f39////8AAAD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8AAAD///////////////////////////////////////////////////// +//////////////////////////////////////8AAAD///+an58MEBBlcHDv7+/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////8A/// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////h4eH////QEBA////QEBA////QEBA////QEBA////QEBA////Q +EBA////QEBA////////////////////////////////////v7+/l5eXf39/AAAA////////////// +//////////////////AAAA////AAAA////AAAA////AAAA////39/f/////////////////////// +/AAAAMzU1OkBAz8/P//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +////////////////////AP/////////////////////////////////////////////////////// +////////////////////////////////////////////////////////wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///yAgIP///////8/Pz6enp39/fzhISBYgIAAAAA0QEEh +QUI+PjwAAAP///////////////////////////+fn5////0BAQP///0BAQP///0BAQP///0BAQP// +/////////////////////////wAAAEFBQa+vr//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////wD//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////v7++/v79/f39KW +FghMDAAAAAAAAAAAAAJEBBBUFCPj4/Pz8////////////8AAAD/////////////////////////// +////////////////////////////////////////////////////////////////8AAADPz88VGBj +39/f///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////8A////////////////////////////////////////////////////// +//////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////////// +/////////////////////////n5+fAAAAAHh4AAAADhgYSlhYl5eXz8/P//////////////////// +////////////AAAA///////////////////////////////////////////////////////////// +///////////////////////AAAA////////RlBQbXh4////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////AP////////////// +/////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAL+/vwAAAP///////////////////////////////////////////////////5WfnxJgYA +WvrzlQUPf39////////////////////////////////////////wAAAP///////////////////// +//////////////////////////////////////////////////////////////wAAAP///////8/P +zwUICNfX1//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////wD//////////////////////////////////////////////////// +///////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/v78AAAD///////////////////// +///////////////////v7++vr69pcHAhMDAAAAAAWFgJMDBNWFj////////////////////////// +/////////////////8AAAAAAAD/////////////////////////////////////////////////// +////////////////8AAAAAAAD///////////////9HWFg6SEj//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////8A///////////// +///////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAA////////////////////7+/vr6+vaXBwITAwAAAAAAAAAAAADhgYMEB +Af39/p6en39/f////////////////////////////////////////////////////AAAA//////// +////////////////////////////////////////////////////AAAA///////////////////// +///5+fnBQgIoqen////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////AP////////////////////////////////////////////////// +/////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////8fHx2lwc +CowMAAAAAAAACg4OFRgYIeHh7+/v+/v7///////////////////////////////////////////// +///////////////////////////wAAAP///////////////////////////////////////////// +//////////////wAAAP///////////////////////////2VwcA4YGPf39/////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////wD/////////// +////////////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAA//8A//8 +A//8A//8A//8AAAAAAAAAAAAAAAAAAAB7f39/f3+vr6/X19f///////////////////////////// +//////////////////////////////////////////////////////////////////////8AAAD// +/////////////////////8AAAD///////////////////////8AAAD/////////////////////// +/////////n5+cECAhlcHD//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////8A///////////////////////////////////////////////// +/////////////// +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//AAAAAAAA///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////AAAA////////////////AAAA////AAAA////////////////AAAA/// +/////////////////////////////////////ZXBwAwgIz8/P////5+fn9/f3//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////AP//////////////////////// +///////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAP////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wAAAAAAAAAAA +AAAAP///////////wAAAAAAAAAAAAAAAP///////////////////////////////////////////+ +fn5wwYGDBAQP///yIwMEdYWP///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////wD////////////////////////////////////////////////////////////// +/////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////+Lj48AAABVWFgPUFAPMDDPz8/////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////8A/////////////////////// +/////////////////////////////////////////////////////////AAAAn5+fAAAA////AAAA +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////9/f3DRgYAAAAAKenBCgoQVBQ//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////AP//////////////////////////////////////////////////////////// +///////////////////2BgYJ+fn////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////4uPjwlgYA9QUCAoKAAAAM/Pz///// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////wD///////////////////// +//////////////////////////////////////////////////////////9gYGCfn5/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////39/cSICAhMDDn5+cECAhBUFD////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////8A/////////////////////////////////////////////////////////// +/////////////////////YGBgn5+f//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////sbe3v7+/////i4+PAAAAr6+ +v////////////////////////////////////////////////////////39/f////f39///////// +////////////////////////////////////////////////////////AP/////////////////// +////////////////////////////////////////////////////////////2BgYJ+fn///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////f39x8wMCEwMP//////////////////////////////////// +///////////////////////wAAAP///9/f3////////////////////////////////////////// +//////////////////wD///////////////////////////////////////////////////////// +//////////////////////9gYGCfn5////////8AAAD///8AAAD///8AAAD///8AAAD///8AAAD// +/8AAAD////f39// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////+/v78AAACvr6///////// +///////////////////////////////////////////+/v7////8AAAD///////////////////// +//////////////////////////////////////////8A///////////////////////////////// +///////////////////////////////////////////////YGBgn5+f////WFhY////QEBA////QE +BA////QEBA////QEBA////QEBA////QEBA/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////UWBgIjAw////////////////////////////////////////////// +//////////v7+/////9/f3/////////////////////////////////////////////////////// +/////AP////////////////////////////////////////////////////////////////////// +/////////2BgYJ+fn//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+fn5woQEKKnp/// +/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/////////////////////////// +////////////////////////////////////////////wD/////////////////////////////// +////////////////////////////////////////////////9gYGCfn5///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////+Lj48QGBj39/f///8AAAAAAAAAAAAA/wAA/wAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAD///////////////////////////////////////////////////////// +//////8A///////////////////////////////////////////////////////////////////// +///////////YGBgn5+f////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////JTAwi +4+P////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv7+/AAAA////////////////// +//////////////////////////////////////////////AP///////////////////////////// +//////////////////////////////////////////////////2BgYJ+fn/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////8fHxxQYGPf39wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAP/////////////////////////////////////////////////////// +////////wD/////////////////////////////////////////////////////////////////// +////////////9gYGCfn5///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +9laGiPj4////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////// +///////////////////////////////////////////////8A//////////////////////////// +////////////////////////////////////////////////////YGBgn5+f///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////5+fnWFhYAAAAAAAAAAAAAAAAAAAAAP//AP//A +P//AP//AP//AP//AAAAAAAAAAAAAAAAAAAA////////////////////////////////////////// +//////////AP///////////////////////////////////////////////////////////////// +//////////////2BgYJ+fn/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////w +AAAAAAAAAAAAAAAAD//wD//wAAAAD//wAAAAAAAAAAAAAAAP///////////////////////////// +//////////////////////////////////wD///////////////////////////////////////// +//////////////////////////////////////9gYGCfn5/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AD///////////////////////////////////////////////////////////////////////8A// +///////////////////////////////////////////////////////////////////////////// +/YGBgn5+f//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////AAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////////////// +////////////////////////////////////AP/////////////////////////////////////// +////////////////////////////////////////2BgYJ+fn///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////2BgYP///wAAAP///wAAAP/// +wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////////wAAAP///wAAAAAAAA +AAAP///////////////////////////////////////////////////////////////////////wD +///////////////////////////////////////////////////////////////////////////// +//9gYGCfn5/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED////Pz8////// +//////////////////////////+3t7f39/f////////////////////////////////////////// +/////////////////////////////////////8A////////////////////////////////////// +//////////////////////////////////////////YGBgn5+f/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////QEBAv7+//// +///////////////////////////////////////////////////////////////////////////// +AP/////////////////////////////////////////////////////////////////////////// +////2BgYJ+fn///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////0BAQL+/v////39/f////39/f////39/f////39/f////7+/v/ +///////////////////////////////////////wD//////////////////////////////////// +///////////////////////////////////////////9gYGCfn5////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////9AQEC/v7+/ +v7////8AAAD///8AAAD///8AAAD///8AAAD////////////////////////////////////////// +/8A////////////////////////////////////////////////////////////////////////// +//////YGBgn5+f/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////QEBAv7+/////f39/////f39/////f39/////f39/////v7+/////////////// +//////////////////////////AP///////////////////////////////////////////////// +//////////////////////////////2BgYJ+fn/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////0BAQL+/v/////////////// +/////////////////////////////////////////////////////////////////wD////////// +/////////////////////////////////////////////////////////////////////9gYGCfn5 +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////9AQEC/v7///////////////////////////////////////////////////// +///////////////////////////8A//////////////////////////////////////////////// +////////////////////////////////YGBgn5+f///////////////////////////////////// +///////////////////n5+fn5+f////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////QEBAv7+////////////// +///////////////////////////////////////////////////////////////////AP//////// +///////////////////////////////////////////////////////////////////////2BgYJ+ +fn////////////////////////////////////////////////////////39/f39/f/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////0BAQL+/v/////////////////////////////////////////////////// +/////////////////////////////wD////////////////////////////////////////////// +/////////////////////////////////9gYGCfn5//////////////////////////////////// +////////////////////9/f39/f3///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////9AQEC/v7//////////// +////////////////////////////////////////////////////////////////////8A/////// +/////////////////////////////////////////////////////////////////////////YGBg +n5+f////////////////////////////////////////////////////////f39/f39////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////QEBAv7+////////////////////////////////////////////////// +///////////////////////////////AP//////////////////////////////////////////// +///////////////////////////////////2BgYJ+fn////////////////////////////////// +//////////////////////39/f39/f/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////0BAQL+/v////////// +//////////////////////////////////////////////////////////////////////wD///// +///////////////////////////Hx8d/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f38wM +DBQUFB/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39AQEBAQEB/f39/f3 +9/f39/f39/f39/f39/f39/f39/f39/f39/f39/f3+Xl5f//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +//////9AQEC/v7/////////////////////////////////////////////////////////////// +/////////////////8A////////////////////////////z8/PBAQEAAAAPT09QUFBQUFBQUFBQU +FBQUFBQUFBQUFBQUFBQUFBGBgYKSkpQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUF +BQUFBQUFBISEhISEhQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBLS0teHh4//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////QEBAv7+//////////////////////// +/////////////////////////////////////////////////////////AP////////////////// +/////////3h4eDAwMGhoaEZGRnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2diwsLEpKSnZ2dnZ2d +nZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2djs7Ozs7O3Z2dnZ2dnZ2dnZ2dnZ2dn +Z2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dmdnZyAgIP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////0BAQL+/v///////////////////////////////////////////////////////////// +///////////////////wD///////////////////////////9ISEhgYGCPj48vLy9qampqampqamp +PT08bGxsbGxsbGxsbGxsbGxsKCgoREREbGxsbGxsbGxsWFhYbGxsHBwcbGxsHBwcbGxsHBwcbGxsR +EREbGxsbGxsNDQ0NDQ0bGxsbGxsbGxsbGxsbGxsbGxs7OztqampqampqampqampqampqamoQEBDv7 ++//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +39/f///////////////////////////////////////////9AQEC/v7////////////////////// +//////////////////////////////////////////////////////////8A///////////////// +///////////YGBgUFBQeHh4MjIyXl5eXl5eXl5eLy8vIyMjRkZGRkZGRkZGRkZGRkZGRkZGRkZGRk +ZGRkZGRkZGEhISRkZGEhISCQkJEBAQRkZGEhISRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZ +GNTU1GBgYXl5eXl5eXl5eXl5eXl5eW1tbCAgI//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////p6encHBw////////////////////////////////// +//////////QEBAv7+//////////////////////////////////////////////////////////// +/////////////////////AP///////////////////////////5eXlxAQEDAwMD8/P1FRUVFRUVFR +USgoKCgoKFFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUQoKCkdHR1FRUVFRU +VFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUT09PRQUFFFRUVFRUVFRUVFRUVFRUTo6OkBAQP +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////5+f +n2BgYP///////////////////////////////////////////0BAQL+/v//////////////////// +////////////////////////////////////////////////////////////wD/////////////// +////////////////9QUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoKCjf39/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////+fn59gYGD//////////////////////////////// +///////////9AQEC/v7////////////////////////////////////////////////////////// +//////////////////////8A///////////////////////////////////////////////////// +///f39/f39/////////////////////////////////////////////////////ICAg39/f////// +//////////////////////////////////////////v7+/QEBA/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////n +5+fYGBg////////////////////////////////////////////QEBAv7+/////////////////// +//////////////////////////////////////////////////////////////AP///////////// +//////////////////////////////////////////39/f39/f/////////////////////////// +/////////////////////////yAgIN/f3//////////////////////////////////////////// +////7+/v0BAQP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////5+fn2BgYP////////////////////////////// +/////////////0BAQL+/v//////////////////////////////////////////////////////// +/////////////// +/////////wD///////////////////////////////////////////////////////9/f39/f3/// +/////////////////////////////////////////////////8gICDf39//////////////////// +////////////////////////////+/v79AQED//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////9/f39AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAoKCgYGBhAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQEBAwMDBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE +BAQEBAQEBAQEBAQEBAQEBAQECPj4////////////////////8A/////////////////////////// +/////////////////////////////f39/f39///////////////////////////////////////// +////////////ICAg39/f////////////////////////////////////////////////v7+/QEBA/ +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////h4eHGBgYEBAQeHh4fX19fX19fX19fX1 +9fX19fX19fX19fX19fX19fX19T09PLy8vfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19 +Hx8fXl5efX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19NDQ0n5+f///// +///////////AP///////////////////////////////////////////////////////39/f39/f/ +///////////////////////////////////////////////////yAgIN/f3////////////////// +//////////////////////////////7+/v0BAQP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////0BAQHh4eDAwMHt7e5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl15eXjk5OZeXl5 +eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXlyYmJnFxcZeXl5eXl5eXl5eXl5eXl5eXl5eXl5e +Xl5eXl5eXl5eXl5eXl5eXl5eXl2hoaFBQUP///////////////wD///////////////////////// +///////////////////////////////f39/f39/////////////////////////////////////// +/////////////+/v7/////////////////////////////////////////////////////39/fHx8 +f//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8MDAyfn59QUFBdXV2Hh4eHh4eHh4c7 +OzsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVFSHh4eHh4eHh4eHh4eHh4dubm4wMDD/// +////////////8A/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////ODg4f39/MDAwYWFhd3d3d3d3d3d3Hh4eWVlZd3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d +3d3d3d3d3Ozs7d3d3NDQ0Dw8POzs7d3d3Ozs7d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3 +Ozs7Ozs7d3d3d3d3d3d3d3d3d3d3UlJSUFBQ////////////////AP/////////////////////// +////////////////////////////////////////////////////////////////0BAQP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///39/f////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////4eHhygoKAYGBkpKSk1NTU1NTU1NT +RMTEzo6Ok1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTUNDQwoKCk1NTU1NTU1NTU +1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTScnJycnJ01NTU1NTU1NTU1NTU1NTSQkJJeXl// +//////////////wD///////////////////////////////////////////////////////////// +//////////////////////////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED// +/9AQED///9AQED/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////39/doaGhAQEBAQEBAQEBAQEBAQEAQEBAwMDBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA +QEBAQEBAQEBAQEBAQEA4ODgICAhAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ +EAgICAgICBAQEBAQEBAQEBAQEBAQEB4eHj///////////////////8A////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//QEBAv7+/////////////////////////////////////////////////39/fICAg/////////// +/////////////////////////////////////////f39/f39///////////////////////////// +////////////////AP/////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////0BAQL+/v/////////////////////////////////////////// +/////9/f3yAgIP///////////////////////////////////////////////////39/f39/f//// +////////////////////////////////////////wD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////9AQEC/v7//// +/////////////////////////////////////////////f398gICD//////////////////////// +///////////////////////////9/f39/f3////////////////////////////////////////// +//8A///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////QEBAv7+////////////////////////////////////////// +///////39/fICAg////////////////////////////////////////////////////f39/f39/// +//////////////////////////////////////////AP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////0hISMfHx// +//////////////////////////////////////////////+fn5ygoKP////////////////////// +/////////////////////////////4eHh4eHh//////////////////////////////////////// +////wD/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////v7+//////////////////////////////////////////// +/////////////v7+/////////////////////////////////////////////////////39/f39/f +///////////////////////////////////////////8A//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////AP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//39/f////39/f////39/f////39/f////39/f////39/f/////////////////////////////// +/////////////////////////////////////////////wD////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////9/f3////8AAAD///8AAAD///8AAAD///8AAAD/// +8AAAD///9AQED//////////////////////////////////////////////////////////////// +///////8A//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////v7+/////v7+ +/////v7+/////v7+/////v7+/////v7+///////////////////////////////////////////// +////////////////////////////////AP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////wD//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////8A////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////AP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////wD//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////8A/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////AP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////w +D//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////8A//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////AP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////wD////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////8A/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////AP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////wD///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8A/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////AA4AAAAUA +AAAAAAAABAAAAAUAAAA +2002-08-11T10:30:58 +2003-12-23T09:01:09 +2003-06-09T17:31:42 +2002-08-11T10:30:58 + + +11 +39 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +0 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +1 +0 +0 + + +0 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +0 +1 +0 +0 + + +14 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + + +2 +0 +0 +2 + + +Visio Network Solutions +
http://officupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + +85 +110 +0.125 +-0.125 +1 +10 +0 +3 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +16 +16 +0 +0 +8 +4 +0 +0 +0 +0 + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + + + + +20 +85 +30 +3.75 +15 +1.875 +0 +0 +0 +0 + + +5 +85 +35 +85 + + +0 +0 +0 +0 +0 + + +0 + + +15 +1.875 +30 +3.75 +15 +1.875 +0 + + +5.001 +7.5 +5.001 +1.875 +0 +0 +1 +Position Connector + + +9 +-21.125 +9 +1.875 +0 +0 +1 +Position Connector + + +20.001 +-3.75 +20.001 +1.875 +0 +0 +1 +Position Connector + + +15 +7.5 +15 +1.875 +0 +0 +1 +Position Connector + + +24.9999 +7.5 +24.9999 +1.875 +0 +0 +1 +Position Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +12.5 +1.875 +12.5 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +0 +0 +0 +0 + + + +12.5 +1.875 +0 +0 +0 +0 + + + +15 +1.875 +0 +0 +0 +0 + + + +0.9375 +1.875 +0 +0 +0 +0 + + + +30 +1.875 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.9375 +0.234375 + + +0.9375 +3.515625 +0.234375 +1.875 +-1.5707963267949 +2.3 + + +0.9375 +0.234375 +1.640625 +1.875 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.9375 +3.75 + + +29.0625 +3.75 + + +29.0625 +0 +30 +1.875 +-1.5707963267949 +2 + + +0.9375 +0 + + +0.9375 +3.75 +0 +1.875 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +5.001 +7.5 + + +5.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +9 +-21.125 + + +9 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +20.001 +-3.75 + + +20.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +7.5 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +24.9999 +7.5 + + +24.9999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +12.5 +1.875 + + +12.5 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + + + +45.25 +55 +17.5 +13.12973558064 +8.75 +6.5648677903201 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +18.055555555556 +6.5648677903201 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +6.5648677903201 +0 +0 +0 +1 + + + +17.5 +6.5648677903201 +0 +0 +0 +1 + + + +8.75 +-2.4444444444444 +8.75 +6.5648677903201 +7 +2 +1 +Reposition Equipment Label + + +18.055555555556 +6.5648677903201 +8.75 +6.5648677903201 +9 +2 +1 +Reposition Text + + + + + +8.75 +6.5648677903201 +17.5 +13.12973558064 +8.75 +6.5648677903201 +0 +0 +0 +0 + + +0 +0 +17.5 +13.12973558064 + + +0 + + +0 +0 +0 +0 +0 + + +8.75 +-2.4444444444444 +4.0142144107222 +2.4444444444444 +2.0071072053611 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +0 + + +17.5 +0 + + +17.5 +13.12973558064 + + +0 +13.12973558064 + + +0 +0 + + + + + + + +67 +91 +30 +3.75 +15 +1.875 +0 +0 +0 +0 + + +52 +91 +82 +91 + + +0 +0 +0 +0 +0 + + +0 + + +15 +1.875 +30 +3.75 +15 +1.875 +0 + + +5.001 +7.5 +5.001 +1.875 +0 +0 +1 +Position Connector + + +9.999 +-3.75 +9.999 +1.875 +0 +0 +1 +Position Connector + + +18.59921875 +-14.2625 +18.59921875 +1.875 +0 +0 +1 +Position Connector + + +15 +7.5 +15 +1.875 +0 +0 +1 +Position Connector + + +24.9999 +7.5 +24.9999 +1.875 +0 +0 +1 +Position Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +12.5 +1.875 +12.5 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +0 +0 +0 +0 + + + +12.5 +1.875 +0 +0 +0 +0 + + + +15 +1.875 +0 +0 +0 +0 + + + +0.9375 +1.875 +0 +0 +0 +0 + + + +30 +1.875 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.9375 +0.234375 + + +0.9375 +3.515625 +0.234375 +1.875 +-1.5707963267949 +2.3 + + +0.9375 +0.234375 +1.640625 +1.875 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.9375 +3.75 + + +29.0625 +3.75 + + +29.0625 +0 +30 +1.875 +-1.5707963267949 +2 + + +0.9375 +0 + + +0.9375 +3.75 +0 +1.875 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +5.001 +7.5 + + +5.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +9.999 +-3.75 + + +9.999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +18.59921875 +-14.2625 + + +18.59921875 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +7.5 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +24.9999 +7.5 + + +24.9999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +12.5 +1.875 + + +12.5 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + + + +15 +60 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.753993055556 +3.68125 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +11.1984375 +3.68125 +0 +0 +0 +1 + + + + + +5.59921875 +3.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 +0 +11.1984375 +7.3625 + + +0 + + +0 +0 +0 +0 +0 + + +5.59921875 +-2.4444444444444 +10.064019098222 +2.4444444444444 +5.0320095491111 +1.2222222222222 +0 + + + + + + +70.59921875 +71.18125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.753993055556 +3.68125 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +5.59921875 +7.3625 +0 +0 +0 +1 + + + +0 +3.68125 +0 +0 +0 +1 + + + + + +5.59921875 +3.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 +0 +11.1984375 +7.3625 + + +0 + + +0 +0 +0 +0 +0 + + +5.59921875 +-2.4444444444444 +10.064019098222 +2.4444444444444 +5.0320095491111 +1.2222222222222 +0 + + + + + + +28.549609375 +57.5 +16.668378576225 +2.5 +8.3341892881124 +1.25 +-0.30466035525803 +0 +0 +0 + + +20.59921875 +60 +36.5 +55 + + +0 +0 +0 +0 +0 + + +0 + + +8.3341892881124 +-1.2222222222222 +16.668378576225 +2.4444444444444 +8.3341892881124 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +9.5841892881124 +2.5 + + +8.6466892881124 +0.75 + + +16.668378576225 +1.25 + + +7.0841892881124 +0 + + +8.0216892881124 +1.75 + + +0 +1.25 + + + + + +59.5 +63.090625 +19.566114881665 +2.5 +9.7830574408324 +1.25 +0.97375702408199 +0 +0 +0 + + +54 +55 +65 +71.18125 + + +0 +0 +0 +0 +0 + + +0 + + +9.7830574408324 +-1.2222222222222 +19.566114881665 +2.4444444444444 +9.7830574408324 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +11.033057440832 +2.5 + + +10.095557440832 +0.75 + + +19.566114881665 +1.25 + + +8.5330574408324 +0 + + +9.4705574408324 +1.75 + + +0 +1.25 + + + + + +20 +66.5 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +192.168.1.1 + + + +23.75 +55 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +206.162.148.9 + + + +45.5 +54.9 +10 +3 +5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +10 +0 + + +10 +3 + + +0 +3 + + +0 +0 + + +Internet + + + +59.75 +74 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +134.28.54.2 + + + +75 +76.5 +9 +3 +4.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +9 +0 + + +9 +3 + + +0 +3 + + +0 +0 + + +10.0.0.1 + + + +20.5 +92.5 +15 +3 +7.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +15 +0 + + +15 +3 + + +0 +3 + + +0 +0 + + +192.168.1.0/24 + + + +68.5 +99 +15 +3 +7.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +15 +0 + + +15 +3 + + +0 +3 + + +0 +0 + + +10.0.0.0/16 + + + +13.5 +53.25 +5 +3.5 +2.5 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +5 +0 + + +5 +3.5 + + +0 +3.5 + + +0 +0 + + +A + + + +73.5 +65.75 +5 +3.5 +2.5 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +5 +0 + + +5 +3.5 + + +0 +3.5 + + +0 +0 + + +B + + + +68 +27.5 +30 +3.75 +15 +1.875 +0 +0 +0 +0 + + +53 +27.5 +83 +27.5 + + +0 +0 +0 +0 +0 + + +0 + + +15 +1.875 +30 +3.75 +15 +1.875 +0 + + +5.001 +7.5 +5.001 +1.875 +0 +0 +1 +Position Connector + + +9.999 +-3.75 +9.999 +1.875 +0 +0 +1 +Position Connector + + +19 +-4.125 +19 +1.875 +0 +0 +1 +Position Connector + + +16 +10.69375 +16 +1.875 +0 +0 +1 +Position Connector + + +24.9999 +7.5 +24.9999 +1.875 +0 +0 +1 +Position Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +12.5 +1.875 +12.5 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +0 +0 +0 +0 + + + +12.5 +1.875 +0 +0 +0 +0 + + + +15 +1.875 +0 +0 +0 +0 + + + +0.9375 +1.875 +0 +0 +0 +0 + + + +30 +1.875 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.9375 +0.234375 + + +0.9375 +3.515625 +0.234375 +1.875 +-1.5707963267949 +2.3 + + +0.9375 +0.234375 +1.640625 +1.875 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.9375 +3.75 + + +29.0625 +3.75 + + +29.0625 +0 +30 +1.875 +-1.5707963267949 +2 + + +0.9375 +0 + + +0.9375 +3.75 +0 +1.875 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +5.001 +7.5 + + +5.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +9.999 +-3.75 + + +9.999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +19 +-4.125 + + +19 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +16 +10.69375 + + +16 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +24.9999 +7.5 + + +24.9999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +12.5 +1.875 + + +12.5 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + + + +69 +40 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.753993055556 +3.68125 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +5.59921875 +-2.4444444444444 +5.59921875 +3.68125 +7 +2 +1 +Reposition Equipment Label + + +11.753993055556 +3.68125 +5.59921875 +3.68125 +9 +2 +1 +Reposition Text + + +5.59921875 +7.3625 +0 +0 +0 +1 + + + +0 +3.68125 +0 +0 +0 +1 + + + +5.59921875 +0 +0 +0 +0 +1 + + + + + +5.59921875 +3.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 +0 +11.1984375 +7.3625 + + +0 + + +0 +0 +0 +0 +0 + + +5.59921875 +-2.4444444444444 +10.064019098222 +2.4444444444444 +5.0320095491111 +1.2222222222222 +0 + + + + + + +61.5 +49.340625 +18.791330489417 +2.5 +9.3956652447086 +1.25 +2.4951646589883 +0 +0 +0 + + +69 +43.68125 +54 +55 + + +0 +0 +0 +0 +0 + + +0 + + +9.3956652447086 +-1.2222222222222 +18.791330489417 +2.4444444444444 +9.3956652447086 +1.2222222222222 +3.1415926535898 + + +0 +0 +0 +0 + +0 +1.25 + + +10.645665244709 +2.5 + + +9.7081652447086 +0.75 + + +18.791330489417 +1.25 + + +8.1456652447086 +0 + + +9.0831652447086 +1.75 + + +0 +1.25 + + + + + +74 +34 +9 +3 +4.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +9 +0 + + +9 +3 + + +0 +3 + + +0 +0 + + +10.1.0.1 + + + +67.5 +20 +15 +3 +7.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +15 +0 + + +15 +3 + + +0 +3 + + +0 +0 + + +10.1.0.0/16 + + + +60.25 +43.5 +14.5 +3 +7.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +14.5 +0 + + +14.5 +3 + + +0 +3 + + +0 +0 + + +130.252.100.14 + + + +61 +38.25 +5 +3.5 +2.5 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +5 +0 + + +5 +3.5 + + +0 +3.5 + + +0 +0 + + +C + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +11 +39 +34 +0 +0.33 + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/ThreeNets.vsd b/Shorewall-docsN/images/ThreeNets.vsd new file mode 100755 index 000000000..aed6b025b Binary files /dev/null and b/Shorewall-docsN/images/ThreeNets.vsd differ diff --git a/Shorewall-docsN/images/Thumbs.db b/Shorewall-docsN/images/Thumbs.db new file mode 100644 index 000000000..2904bd149 Binary files /dev/null and b/Shorewall-docsN/images/Thumbs.db differ diff --git a/Shorewall-docsN/images/Tom.jpg b/Shorewall-docsN/images/Tom.jpg new file mode 100755 index 000000000..965430cd1 Binary files /dev/null and b/Shorewall-docsN/images/Tom.jpg differ diff --git a/Shorewall-docsN/images/TomNTarry.png b/Shorewall-docsN/images/TomNTarry.png new file mode 100644 index 000000000..2c8845665 Binary files /dev/null and b/Shorewall-docsN/images/TomNTarry.png differ diff --git a/Shorewall-docsN/images/TwoIPv6Nets1.png b/Shorewall-docsN/images/TwoIPv6Nets1.png new file mode 100644 index 000000000..0124bfb3e Binary files /dev/null and b/Shorewall-docsN/images/TwoIPv6Nets1.png differ diff --git a/Shorewall-docsN/images/TwoNets1.jpg b/Shorewall-docsN/images/TwoNets1.jpg new file mode 100644 index 000000000..3c10145da Binary files /dev/null and b/Shorewall-docsN/images/TwoNets1.jpg differ diff --git a/Shorewall-docsN/images/TwoNets1.png b/Shorewall-docsN/images/TwoNets1.png new file mode 100644 index 000000000..c425132ea Binary files /dev/null and b/Shorewall-docsN/images/TwoNets1.png differ diff --git a/Shorewall-docsN/images/TwoNets1.vdx b/Shorewall-docsN/images/TwoNets1.vdx new file mode 100755 index 000000000..bcf8586d9 --- /dev/null +++ b/Shorewall-docsN/images/TwoNets1.vdx @@ -0,0 +1,5750 @@ + + + + + +TwoNets1 +teastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAAHwAAAChAAAAAAAAAAAAAAAcDAAAvQ4AACBFTUYAAAEAHO8AAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAAfO4AAAAAAAAAAAAAfAAAAKEAAAAAAAAAAAAAAH0 +AAACiAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADw7QAAKAAAAH0AAACiAAAAAQAYAAAAAADw7QAAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////wD///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////8A////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////AP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////wD//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////8A////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////AP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////wD//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8A//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////AP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////wD////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8A//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////AP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////wD////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////8A/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////AP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////wD//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////8A////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wD//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////8A///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////AP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wD/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////8A///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////AP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/wD////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8A/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///AP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////wD///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////8A/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////AP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////wD///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +//////////////////////////////8A///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////AP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wD/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////8A//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////AP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////wD// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////8A//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////AP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////wD////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////8A////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////AP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////wD//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////8A////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////AP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wD//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////8A///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////AP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////wD////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////8A//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////AP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wD////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8A/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////AP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wD///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////8A/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////AP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////wD//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////8A///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////AP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////wD/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////8A///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////AP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////wD/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////8A/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////A +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////wD///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +8A/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////AP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//wD///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////8A////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////AP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////wD/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////8AAAAAAAAAAAAAAAD///////8AAAAAAAAAAAAAA +AD/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////8A//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////AAA +A////////////////AAAAAAAA////////////////AAAA//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////AP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wAAAP//////////////////////////////////////// +///////wAAAP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////wD////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////8AAAD/ +//////////////////////////////////////////////8AAAD////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8AAAD//////////////////////////////////////////// +///////////////////////////////8A//////////////////////////////////////////// +////////////////////////////5+fn////QEBA///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////AAAAAAAA/////////////////////////////////////////// +/////////////AAAAAAAA//////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////f39/////AAAA/ +///////////////////////////////////////////////////////////////////////AP//// +///////////////////////////////////////////////////////////////////////wAAAP/ +//5+fn/////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////wAAAP/////////// +////////////////////////////////////////////////////////////wAAAP//////////// +///////////////////////////7+/v////7+/v////7+/v////7+/v////7+/v////7+/v////8f +Hx////////////////////////////0BAQP////////////////////////////////////////// +/////////////////////////////////wD////////////////////////////////////////// +//////////////////////////////f39////8AAAD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8AAAD///////////////////////////////////////////////////// +//////////////////////////8AAAD///////////////////////////////////////8AAAD// +/8AAAD///8AAAD///8AAAD///8AAAD///8AAAD/////////////////////////////////////// +////////////////////////////////////////////////////////////////////////8A/// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////h4eH////QEBA////QEBA////QEBA////QEBA////QEBA////Q +EBA////QEBA////////////////////////////////////v7+/l5eXf39/AAAA////////////// +//////////////////////////////////////////////////////////////////AAAAl5eX5+f +n////////////////////////////d3d3////f39/////f39/////f39/////f39/////f39///// +j4+P///////////////////////////////////////////////////////////////////////// +/////////////// +////////////////////AP/////////////////////////////////////////////////////// +////////////////////////////////////////////////////////wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///yAgIP///////8/Pz6enp39/fzhISBYgIAAAAA0QEEh +QUI+PjwAAAP///////////////////5+fn////wAAAP///wAAAP///wAAAP///yAgIP////////// +/////////////wAAAFJYWAAAACUwMIeHh9fX1////////////////0ZQUBQgIIOHh+fn5//////// +////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP +///////////////////////////////////////////////////////////wD//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////v7++/v79/f39KW +FghMDAAAAAAAAAAAAAJEBBBUFCPj4/Pz8////////////8AAAD///////////////////////9AQE +D///9AQED///9AQED///9AQED///////////////////////////8AAAD////v7++Xl5cbKCgAAAA +UICBeaGi3t7f///97f38DYGADKCgAAABKWFinp6f///////////////////////////////8AAAAA +AAAAAAAA/wAA/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////////////////////////////// +/////////////////////8A////////////////////////////////////////////////////// +//////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////////// +/////////////////////////n5+fAAAAAHh4AAAADhgYSlhYl5eXz8/P//////////////////// +////////////AAAA///////////////////////////////////////////////////////////// +///////////AAAA////////////////////x8fHXmhoCBAQAAAACRAQKDAwEEBAEEBAICgoAAAAAA +AADhgYcHh439/f////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +Av7+/AAAA////////////////////////////////////////////////////AP////////////// +/////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAL+/vwAAAP///////////////////////////////////////////////////5WfnxJgYA +WvrzlQUPf39////////////////////////////////////////////wAAAAAAAP///////////// +//////////////////////////////////////////wAAAAAAAP////////////////////////// +//////f395+fnzBAQAAAAAIwMAB4eGlwcPf396enp1RgYAkQEAAAADhISKenp/f39////////wAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////////////////// +///////////////////////wD//////////////////////////////////////////////////// +///////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/v78AAAD///////////////////// +///////////////////v7++vr69pcHAhMDAAAAAAWFgJMDBNWFj////////////////////////// +/////////////////////////8AAAD/////////////////////////////////////////////// +8AAAD////////////////////////////////////////////////////f399weHgOGBgsODj//// +///////////+/v79eaGgZICANEBBhaGjn5+f///////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAD///////////////////////////////////////////////8A///////////// +///////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAA////////////////////7+/vr6+vaXBwITAwAAAAAAAAAAAADhgYMEB +Af39/p6en39/f////////////////////////////////////////////////////AAAA//////// +////////////////////////////////////////AAAA///////////////////////////////// +///////////////////////////////39/f////////////////////////////z8/Pe39/l5eXAA +AAAAAAAAAAAAAAAAAAAP//AP//AP//AP//AP//AP//AAAAAAAAAAAAAAAAAAAA/////////////// +/////////////////////////AP////////////////////////////////////////////////// +/////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////8fHx2lwc +CowMAAAAAAAACg4OFRgYIeHh7+/v+/v7///////////////////////////////////////////// +///////////////////////////////wAAAP///////////////wAAAAAAAP///////////////wA +AAP////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////wAAAAAAAAAAAAAAAAD//wD//wAAAAD//wAAA +AAAAAAAAAAAAP///////////////////////////////////////////////////wD/////////// +////////////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAA//8A//8 +A//8A//8A//8AAAAAAAAAAAAAAAAAAAB7f39/f3+vr6/X19f///////////////////////////// +//////////////////////////////////////////////////////////////////////////8AA +AAAAAAAAAAAAAD///////8AAAAAAAAAAAAAAAD/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////////////////////// +//////////////////////////8A///////////////////////////////////////////////// +/////////////// +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//AAAAAAAA///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAA///////// +///////////////////////////////////////////////////AP//////////////////////// +///////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////wAAAP///wAAAAAAAAAAAP////////////////////////////////////////////// +/////////////wD////////////////////////////////////////////////////////////// +/////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////9gYGD/////////////////// +////////////////////////////////////////////////////8A/////////////////////// +/////////////////////////////////////////////////////////AAAAn5+fAAAA////AAAA +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////AAAA///////////////////////////////////////////////////////// +///////////////AP//////////////////////////////////////////////////////////// +///////////////////2BgYJ+fn////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////wAAAP///////////////// +//////////////////////////////////////////////////////wD///////////////////// +//////////////////////////////////////////////////////////9gYGCfn5/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////8AAAD/////////////////////////////////////////////////////// +////////////////8A/////////////////////////////////////////////////////////// +/////////////////////YGBgn5+f//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////AAAA//////////////// +////////////////////////////////////////////////////////AP/////////////////// +////////////////////////////////////////////////////////////2BgYJ+fn///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////wAAAP///////////////////////////////////////////////////// +//////////////////wD///////////////////////////////////////////////////////// +//////////////////////9gYGCfn5////////8AAAD///8AAAD///8AAAD///8AAAD///8AAAD// +/8AAAD////f39// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///////////////////////////// +//////////////////////////////////////////8A///////////////////////////////// +///////////////////////////////////////////////YGBgn5+f////WFhY////QEBA////QE +BA////QEBA////QEBA////QEBA////QEBA/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////QEBA////QEBA////QEBA////QEBA// +//cHBwAAAA/////////////////////////////////////////////////////////////////// +/////AP////////////////////////////////////////////////////////////////////// +/////////2BgYJ+fn//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////wAAAP/////////////////////////// +////////////////////////////////////////////wD/////////////////////////////// +////////////////////////////////////////////////9gYGCfn5///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////8AAAD///////////////////////////////////////////////////////////////// +//////8A///////////////////////////////////////////////////////////////////// +///////////YGBgn5+f////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////AAAA////////////////////////// +//////////////////////////////////////////////AP///////////////////////////// +//////////////////////////////////////////////////2BgYJ+fn/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////wAAAP/////////////////////////////////////////////////////////////// +////////wD/////////////////////////////////////////////////////////////////// +////////////9gYGCfn5///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////8AAAD//////////////////////// +///////////////////////////////////////////////8A//////////////////////////// +////////////////////////////////////////////////////YGBgn5+f///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////AAAA////////////////////////////////////////////////////////////// +//////////AP///////////////////////////////////////////////////////////////// +//////////////2BgYJ+fn/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////wAAAP///////////////////////////////////// +//////////////////////////////////wD///////////////////////////////////////// +//////////////////////////////////////9gYGCfn5/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////8AA +AD///////////////////////////////////////////////////////////////////////8A// +///////////////////////////////////////////////////////////////////////////// +/YGBgn5+f//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////AAAA//////////////////////////////////// +////////////////////////////////////AP/////////////////////////////////////// +////////////////////////////////////////2BgYJ+fn///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////w +AAAP///////////////////////////////////////////////////////////////////////wD +///////////////////////////////////////////////////////////////////////////// +//9gYGCfn5/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////8AAAD////////////////////////////////// +/////////////////////////////////////8A////////////////////////////////////// +//////////////////////////////////////////YGBgn5+f/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/AAAA//////////////////////////////////////////////////////////////////////// +AP/////////////////////////////////////////////////////////////////////////// +////2BgYJ+fn///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////wAAAP//////////////////////////////// +///////////////////////////////////////wD//////////////////////////////////// +///////////////////////////////////////////9gYGCfn5////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//8AAAD////////////////////////////////////////////////////////////////////// +/8A////////////////////////////////////////////////////////////////////////// +//////YGBgn5+f/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////AAAA////////////////////////////////////////////// +//////////////////////////AP///////////////////////////////////////////////// +//////////////////////////////2BgYJ+fn/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////9fX1/f39////////////////////////////////////////////////////wAAAP////// +/////////////////////////////////////////////////////////////////wD////////// +/////////////////////////////////////////////////////////////////////9gYGCfn5 +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////9gYGCfn5//////////////////////// +////////////////////////////8AAAD//////////////////////////////////////////// +///////////////////////////8A//////////////////////////////////////////////// +////////////////////////////////YGBgn5+f///////////////////////////////////// +///////////////////n5+fn5+f////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////YGBgn5+f////////////////////////////////////////////////////AAAA///// +///////////////////////////////////////////////////////////////////AP//////// +///////////////////////////////////////////////////////////////////////2BgYJ+ +fn////////////////////////////////////////////////////////39/f39/f/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////2BgYJ+fn////////////////////// +//////////////////////////////wAAAP////////////////////////////////////////// +/////////////////////////////wD////////////////////////////////////////////// +/////////////////////////////////9gYGCfn5//////////////////////////////////// +////////////////////9/f39/f3///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////9gYGCfn5////////////////////////////////////////////////////8AAAD/// +////////////////////////////////////////////////////////////////////8A/////// +/////////////////////////////////////////////////////////////////////////YGBg +n5+f////////////////////////////////////////////////////////f39/f39////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////YGBgn5+f//////////////////// +////////////////////////////////AAAA///////////////////////////////////////// +///////////////////////////////AP//////////////////////////////////////////// +///////////////////////////////////2BgYJ+fn////////////////////////////////// +//////////////////////39/f39/f/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////7+/vxgYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICIeHh////////////////wD///// +///////////////////////////Hx8d/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f38wM +DBQUFB/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39AQEBAQEB/f39/f3 +9/f39/f39/f39/f39/f39/f39/f39/f39/f39/f3+Xl5f//////////////////////////////// +///////////////////////////////////////////////////////////////////////8gICBA +QEApKSmDg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4MxMTFSUlKDg4ODg4ODg4ODg4ODg +4ODg4ODg4ODg4OD +g4ODg4ODg4ODg4ODg4MAAACDg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4N/f38dH +R2/v7////////////8A////////////////////////////z8/PBAQEAAAAPT09QUFBQUFBQUFBQU +FBQUFBQUFBQUFBQUFBQUFBGBgYKSkpQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUF +BQUFBQUFBISEhISEhQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBLS0teHh4//// +///////////////////////////////////////////////////////////////////////////// +///////////////5+fnAAAAv7+/BAQEdnZ2dnZ2dnZ2dnZ2Z2dnWFhYWFhYWFhYWFhYWFhYWFhYIS +EhODg4WFhYWFhYR0dHWFhYQkJCWFhYQkJCWFhYQkJCWFhYWFhYWFhYWFhYAAAAWFhYWFhYWFhYWFh +YWFhYWFhYXFxcdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2ODg4h4eH////////////AP////////////////// +/////////3h4eDAwMGhoaEZGRnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2diwsLEpKSnZ2dnZ2d +nZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2djs7Ozs7O3Z2dnZ2dnZ2dnZ2dnZ2dn +Z2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dmdnZyAgIP///////////////////////////////////////// +//////////////////////////////////////////////////////8fHxwAAAN/f3xAQEGJiYmlp +aWlpaWlpaQcHBxoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGgAAABoaGgAAAAoKCgAAA +BoaGgAAABoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGgcHB1JSUmlpaWlpaWlpaWlpaWlpaT +4+PmhoaP///////////wD///////////////////////////9ISEhgYGCPj48vLy9qampqampqamp +PT08bGxsbGxsbGxsbGxsbGxsKCgoREREbGxsbGxsbGxsWFhYbGxsHBwcbGxsHBwcbGxsHBwcbGxsR +EREbGxsbGxsNDQ0NDQ0bGxsbGxsbGxsbGxsbGxsbGxs7OztqampqampqampqampqampqamoQEBDv7 ++//////////////////////////////////////////////////////////////////////////// +/////////////////39/cAAACfn58JCQlcXFxcXFxcXFxcXFwAAABcXFxcXFxcXFxcXFxcXFxcXFx +cXFxcXFxcXFxcXFxLS0tcXFxFRUU5OTkaGhpcXFxFRUVcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxc +XFxcXFxcXFwXFxdFRUVcXFxcXFxcXFxcXFxcXFwmJiaXl5f///////////8A///////////////// +///////////YGBgUFBQeHh4MjIyXl5eXl5eXl5eLy8vIyMjRkZGRkZGRkZGRkZGRkZGRkZGRkZGRk +ZGRkZGRkZGEhISRkZGEhISCQkJEBAQRkZGEhISRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZ +GNTU1GBgYXl5eXl5eXl5eXl5eXl5eW1tbCAgI//////////////////////////////////////// +////////////////////////////////////////////////////////////WFhYEBAQDAwMJycnJ +ycnJycnJycnAAAAJycnJycnJycnJycnJycnJycnJycnJycnJycnJycnJycnJycnJycnGRkZDw8PJy +cnJycnJycnJycnJycnJycnJycnJycnJycnJycnJycnJycnJycnCgoKHh4eJycnJycnJycnJycnJyc +nDAwM5+fn////////////AP///////////////////////////5eXlxAQEDAwMD8/P1FRUVFRUVFR +USgoKCgoKFFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUQoKCkdHR1FRUVFRU +VFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUT09PRQUFFFRUVFRUVFRUVFRUVFRUTo6OkBAQP +///////////////////////////////////////////////////////////////////////////// +///////////////////////f394+Pj39/f39/f39/f39/f39/fwAAAH9/f39/f39/f39/f39/f39/ +f39/f39/f39/f39/f39/f39/f39/f1BQUDAwMH9/f39/f39/f39/f39/f39/f39/f39/f39/f39/f +39/f39/f39/fyAgIGBgYH9/f39/f39/f39/f39/f9fX1////////////////wD/////////////// +////////////////9QUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoKCjf39/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////8AAAD///////////////////////////////////////////////////+fn59gYGD +///////////////////////////////////////////////////9AQEC/v7////////////////// +//////////////////////8A///////////////////////////////////////////////////// +///f39/f39/////////////////////////////////////////////////////ICAg39/f////// +//////////////////////////////////////////v7+/QEBA/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////AAAA///////////////////// +///////////////////////////////n5+fYGBg////////////////////////////////////// +//////////////QEBAv7+/////////////////////////////////////////AP///////////// +//////////////////////////////////////////39/f39/f/////////////////////////// +/////////////////////////yAgIN/f3//////////////////////////////////////////// +////7+/v0BAQP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////wAAAP///////////////////////////////////////////////////5+fn2Bg +YP///////////////////////////////////////////////////0BAQL+/v//////////////// +/////////////// +/////////wD///////////////////////////////////////////////////////9/f39/f3/// +/////////////////////////////////////////////////8gICDf39//////////////////// +////////////////////////////+/v79AQED//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////8AAAD////////////////////////////////// +/////////////////+fn59gYGD/////////////////////////////////////////////////// +9AQEC/v7////////////////////////////////////////8A/////////////////////////// +/////////////////////////////f39/f39///////////////////////////////////////// +////////////ICAg39/f////////////////////////////////////////////////v7+/QEBA/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/QEBA////////////////////////////////////////////////////v7+/f39///////////// +////////////////////////////////////////aGho19fX///////////////////////////// +///////////AP///////////////////////////////////////////////////////39/f39/f/ +///////////////////////////////////////////////////yAgIN/f3////////////////// +//////////////////////////////7+/v0BAQP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////wD///////////////////////// +///////////////////////////////f39/f39/////////////////////////////////////// +/////////////+/v7/////////////////////////////////////////////////////39/fHx8 +f//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////9/f3////9/f3////9/f3////9/f +3////9/f3////+fn5//////////////////////////////////////////////////////////// +////////////8A/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////39/f////AAAA////AAAA////AAAA////AAAA////AAAA//////////////////////// +////////////////////////////////////////////////////AP/////////////////////// +////////////////////////////////////////////////////////////////0BAQP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///39/f////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////39/f////39/f////39/f////3 +9/f////39/f////5+fn////////////////////////////////////////////////////////// +//////////////wD///////////////////////////////////////////////////////////// +//////////////////////////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED// +/9AQED///9AQED/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////8A////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////AP/////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////wD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//8A///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////AP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////wD/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////8A//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////AP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////wD////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////8A//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////AP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////wD//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////8A////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////AP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////wD//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////8A/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////AP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////w +D//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////8A//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////AP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////wD////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////8A/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////AP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////wD///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8A/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////AA4AAAAUA +AAAAAAAABAAAAAUAAAA +2002-08-11T10:30:58 +2003-12-23T09:01:55 +2002-08-11T10:59:53 +2002-08-11T10:30:58 + + +11 +39 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +0 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +1 +0 +0 + + +0 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +0 +1 +0 +0 + + +14 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + + +2 +0 +0 +2 + + +Visio Network Solutions +
http://officupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + +85 +110 +0.125 +-0.125 +1 +10 +0 +3 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +16 +16 +0 +0 +8 +4 +0 +0 +0 +0 + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + + + + +20 +85 +30 +3.75 +15 +1.875 +0 +0 +0 +0 + + +5 +85 +35 +85 + + +0 +0 +0 +0 +0 + + +0 + + +15 +1.875 +30 +3.75 +15 +1.875 +0 + + +5.001 +7.5 +5.001 +1.875 +0 +0 +1 +Position Connector + + +9 +-21.125 +9 +1.875 +0 +0 +1 +Position Connector + + +20.001 +-3.75 +20.001 +1.875 +0 +0 +1 +Position Connector + + +15 +7.5 +15 +1.875 +0 +0 +1 +Position Connector + + +24.9999 +7.5 +24.9999 +1.875 +0 +0 +1 +Position Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +12.5 +1.875 +12.5 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +0 +0 +0 +0 + + + +12.5 +1.875 +0 +0 +0 +0 + + + +15 +1.875 +0 +0 +0 +0 + + + +0.9375 +1.875 +0 +0 +0 +0 + + + +30 +1.875 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.9375 +0.234375 + + +0.9375 +3.515625 +0.234375 +1.875 +-1.5707963267949 +2.3 + + +0.9375 +0.234375 +1.640625 +1.875 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.9375 +3.75 + + +29.0625 +3.75 + + +29.0625 +0 +30 +1.875 +-1.5707963267949 +2 + + +0.9375 +0 + + +0.9375 +3.75 +0 +1.875 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +5.001 +7.5 + + +5.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +9 +-21.125 + + +9 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +20.001 +-3.75 + + +20.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +7.5 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +24.9999 +7.5 + + +24.9999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +12.5 +1.875 + + +12.5 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + + + +44 +55 +15 +11.25405906912 +7.5 +5.6270295345601 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +15.555555555556 +5.6270295345601 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +5.6270295345601 +0 +0 +0 +1 + + + +15 +5.6270295345601 +0 +0 +0 +1 + + + +7.5 +-2.4444444444444 +7.5 +5.6270295345601 +7 +2 +1 +Reposition Equipment Label + + +15.555555555556 +5.6270295345601 +7.5 +5.6270295345601 +9 +2 +1 +Reposition Text + + + + + +7.5 +5.6270295345601 +15 +11.25405906912 +7.5 +5.6270295345601 +0 +0 +0 +0 + + +0 +0 +15 +11.25405906912 + + +0 + + +0 +0 +0 +0 +0 + + +7.5 +-2.4444444444444 +4.0142144107222 +2.4444444444444 +2.0071072053611 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +0 + + +15 +0 + + +15 +11.25405906912 + + +0 +11.25405906912 + + +0 +0 + + + + + + + +67.5 +84 +30 +3.75 +15 +1.875 +0 +0 +0 +0 + + +52.5 +84 +82.5 +84 + + +0 +0 +0 +0 +0 + + +0 + + +15 +1.875 +30 +3.75 +15 +1.875 +0 + + +5.001 +7.5 +5.001 +1.875 +0 +0 +1 +Position Connector + + +9.999 +-3.75 +9.999 +1.875 +0 +0 +1 +Position Connector + + +20 +-19.7625 +20 +1.875 +0 +0 +1 +Position Connector + + +15 +7.5 +15 +1.875 +0 +0 +1 +Position Connector + + +24.9999 +7.5 +24.9999 +1.875 +0 +0 +1 +Position Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +12.5 +1.875 +12.5 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +15 +1.875 +0 +0 +1 +Add Connector + + +15 +1.875 +0 +0 +0 +0 + + + +12.5 +1.875 +0 +0 +0 +0 + + + +15 +1.875 +0 +0 +0 +0 + + + +0.9375 +1.875 +0 +0 +0 +0 + + + +30 +1.875 +0 +0 +0 +0 + + + +0 +0 +0 +0 + +0.9375 +0.234375 + + +0.9375 +3.515625 +0.234375 +1.875 +-1.5707963267949 +2.3 + + +0.9375 +0.234375 +1.640625 +1.875 +-1.5707963267949 +2.3 + + + +0 +0 +0 +0 + +0.9375 +3.75 + + +29.0625 +3.75 + + +29.0625 +0 +30 +1.875 +-1.5707963267949 +2 + + +0.9375 +0 + + +0.9375 +3.75 +0 +1.875 +-1.5707963267949 +2 + + + +1 +0 +0 +0 + +5.001 +7.5 + + +5.001 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +9.999 +-3.75 + + +9.999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +20 +-19.7625 + + +20 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +7.5 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +24.9999 +7.5 + + +24.9999 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +12.5 +1.875 + + +12.5 +1.875 + + +15 +1.875 + + + +1 +0 +0 +0 + +15 +1.875 + + +15 +1.875 + + +15 +1.875 + + + + + +15 +60 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.753993055556 +3.68125 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +11.1984375 +3.68125 +0 +0 +0 +1 + + + + + +5.59921875 +3.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 +0 +11.1984375 +7.3625 + + +0 + + +0 +0 +0 +0 +0 + + +5.59921875 +-2.4444444444444 +10.064019098222 +2.4444444444444 +5.0320095491111 +1.2222222222222 +0 + + + + + + +72.5 +58.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.753993055556 +3.68125 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +5.59921875 +7.3625 +0 +0 +0 +1 + + + +0 +3.68125 +0 +0 +0 +1 + + + + + +5.59921875 +3.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 +0 +11.1984375 +7.3625 + + +0 + + +0 +0 +0 +0 +0 + + +5.59921875 +-2.4444444444444 +10.064019098222 +2.4444444444444 +5.0320095491111 +1.2222222222222 +0 + + + + + + +28.549609375 +57.5 +16.668378576225 +2.5 +8.3341892881124 +1.25 +-0.30466035525803 +0 +0 +0 + + +20.59921875 +60 +36.5 +55 + + +0 +0 +0 +0 +0 + + +0 + + +8.3341892881124 +-1.2222222222222 +16.668378576225 +2.4444444444444 +8.3341892881124 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +9.5841892881124 +2.5 + + +8.6466892881124 +0.75 + + +16.668378576225 +1.25 + + +7.0841892881124 +0 + + +8.0216892881124 +1.75 + + +0 +1.25 + + + + + +59.200390625 +56.840625 +15.834634971254 +2.5 +7.9173174856269 +1.25 +0.23462768534988 +0 +0 +0 + + +51.5 +55 +66.90078125 +58.68125 + + +0 +0 +0 +0 +0 + + +0 + + +7.9173174856269 +-1.2222222222222 +15.834634971254 +2.4444444444444 +7.9173174856269 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +9.1673174856269 +2.5 + + +8.2298174856269 +0.75 + + +15.834634971254 +1.25 + + +6.6673174856269 +0 + + +7.6048174856269 +1.75 + + +0 +1.25 + + + + + +20 +66.5 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +192.168.1.1 + + + +23.75 +55 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +206.162.148.9 + + + +44 +55.5 +10 +3 +5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +10 +0 + + +10 +3 + + +0 +3 + + +0 +0 + + +Internet + + + +62.25 +54 +12.5 +3 +6.25 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12.5 +0 + + +12.5 +3 + + +0 +3 + + +0 +0 + + +134.28.54.2 + + + +69 +66.5 +9 +3 +4.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +9 +0 + + +9 +3 + + +0 +3 + + +0 +0 + + +10.0.0.1 + + + +20.5 +92.5 +15 +3 +7.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +15 +0 + + +15 +3 + + +0 +3 + + +0 +0 + + +192.168.1.0/24 + + + +69 +91.5 +15 +3 +7.5 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +15 +0 + + +15 +3 + + +0 +3 + + +0 +0 + + +10.0.0.0/8 + + + +13.5 +53.25 +5 +3.5 +2.5 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +5 +0 + + +5 +3.5 + + +0 +3.5 + + +0 +0 + + +A + + + +72 +52.5 +5 +3.5 +2.5 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +5 +0 + + +5 +3.5 + + +0 +3.5 + + +0 +0 + + +B + + + + + + + + + + + + + +1 +1 +0 +1 +1 +11 +39 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + +10 +5 + + +10 +6 + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/TwoNets1.vsd b/Shorewall-docsN/images/TwoNets1.vsd new file mode 100644 index 000000000..d442abbe5 Binary files /dev/null and b/Shorewall-docsN/images/TwoNets1.vsd differ diff --git a/Shorewall-docsN/images/VPN.png b/Shorewall-docsN/images/VPN.png new file mode 100644 index 000000000..2f3177ca2 Binary files /dev/null and b/Shorewall-docsN/images/VPN.png differ diff --git a/Shorewall-docsN/images/Vexira_Antivirus_Logo.gif b/Shorewall-docsN/images/Vexira_Antivirus_Logo.gif new file mode 100644 index 000000000..cd1291b8e Binary files /dev/null and b/Shorewall-docsN/images/Vexira_Antivirus_Logo.gif differ diff --git a/Shorewall-docsN/images/ZoneDiagram.png b/Shorewall-docsN/images/ZoneDiagram.png new file mode 100755 index 000000000..700d47eaf Binary files /dev/null and b/Shorewall-docsN/images/ZoneDiagram.png differ diff --git a/Shorewall-docsN/images/ZoneDiagram.vdx b/Shorewall-docsN/images/ZoneDiagram.vdx new file mode 100755 index 000000000..2bccf913c --- /dev/null +++ b/Shorewall-docsN/images/ZoneDiagram.vdx @@ -0,0 +1,5418 @@ + + + + + +ZoneDiagram +teastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAAKEAAAB8AAAAAAAAAAAAAAC5DwAAWgsAACBFTUYAAAEAdO8AAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAA1O4AAAAAAAAAAAAAoQAAAHwAAAAAAAAAAAAAAKI +AAAB9AAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAABI7gAAKAAAAKIAAAB9AAAAAQAYAAAAAABI7gAAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////wAA////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////AAD/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////8AAP///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////wAA/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////9/ +f3l5eXSEhIQEBAQEBAaGho19fX////////////////////////n5+fQEBAAAAACAgIYGBgz8/P/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////AAD///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////n5+dAQEBoaGi3t7e/v7+/v7+Xl5cwMDCfn5///////////// +v7+9ISEhgYGC/v7/////39/efn58wMDCPj4////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////8AAP///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////9/f3zg4OMfHx///////////////////// +f392BgYH9/f////9/f3zAwMLe3t////////////////////////3BwcH9/f////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////wAA/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////9/ +f3QEBAx8fH////////////////////////////////YGBgl5eXQEBAx8fH/////////////////// +/////////////YGBgn5+f//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////AAD///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////9gYGCfn5///////////////////////////////////// +39/coKCifn5/////////////////////////////////////39/cwMDDX19f///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////8AAP////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////8/PzzAwMP///// +///////////////////////////////////////f39/////////////////////////////////// +/////////6+vr1BQUP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////wAA///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////UFBQr6+v//////////////////////////////////////////////// +////////////////////////////////////////////////MDAwz8/P///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////AAD////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////X19coKCj///////////////// +///////////////////////////////////////////////////////////////////////////// +/////+vr69QUFD/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8AAP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////3h4eIe +Hh/////////////////////////////////////////////////////////////////////////// +/////////////////////////////xgYGOfn5//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////wAA///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////9/f3r6+vp6enICAg39/f//////////////////////////////////////// +////////////////////////////////////////////////////////////////eHh4cHBwl5eX5 ++fn////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////AAD////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////n5+cwMDBQUFBYWFh4eHj///////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////X19dAQEBoaGgoKCifn5//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////8AAP//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//f390BAQMfHx//////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////+/v71BQUJ +eXl////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////wAA////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////cHBwj4+P///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////7+/vKCgo5+fn/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////AAD//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////v7+8YGBj39 +/f/////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////+Pj49wcHD +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8AAP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////5+fn2BgYP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////+/v7xAQEP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////wAA////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////SEhIt7e3///////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////MDAwz8/P/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////AAD//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8gICDf39//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////9wcHCPj4////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////8AAP///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////wAAAP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////5+fn2BgYP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////wAA//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////5+fnGBgY// +//////////////////////////////////////////////////r6+v////f39/////f39/////f39 +/////f39/////f39/////f39///////////////////////////////////////////////////// +r6+vUFBQ///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////AAD///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////f398gICD//////////////////////////////////////////// +///////////8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD////f39////////////// +//////////////////////////////////+/v79AQED////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//8AAP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////9/f3yAgIP///////// +//////////////////////////////////////////2BgYP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP///wAAAP///////////////////////////////////////////////////6enp1hYW +P////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////wAA//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//39/fICAg////////////////////////////////////////////////////////v7+/////v7+ +/////v7+/////v7+/////v7+/////v7+/////9/f3//////////////////////////////////// +////////////j4+PcHBw///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////AAD///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8QEBDv7+///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////94eHiHh4f////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////8AAP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////1h +YWKenp/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////0hISLe3t///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////wAA///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////n5+fYGBg//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////7+/vGBgY9/f3////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////AAD/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////n5+cgICD3 +9/f////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////+fn59gYG +D//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////8AAP//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////3h4eIeHh//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////f39zg4OM/Pz////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +/////////////////////////////////////////////////////////////wAA///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////9/f3ICAgx8fH//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////cHBwj4+P////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////AAD/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////X19c4ODhoaGh4eHiHh4f////////////////////////////////////////////// +//////////////////////////////////////////////////////////////n5+dYWFh/f39QUF +BgYGD//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////8AAP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////5eXl4eHhxgYGOfn5//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////39/f1hYWH9/f6+vr////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wAA/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////aGhol5eX////////////////////////////////////////////////// +//////////////////////////////////////////////////////ICAg39/f/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////AAD//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////Pz88wMDD/////////////// +///////////////////////////////////////////////////////////////////////////// +////////Hx8c4ODj///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///8AAP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////1BQUK+vr////////////////////////////////////////////////////// +//////////////////////////////////////////1BQUK+vr/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////wAA//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////z8/PMDAw////////////////////////////////// +//////////////////////////////////////////////////////////z8/PMDAw/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////AAD//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////9gYG +Cfn5/////////////////////////////////////39/cgICCVlZX//////////////////////// +///////////////9AQEC/v7////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////8AAP////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////f39ygoKN/f3////////////////////////////////2x +sbA4QECoqKt/f3////////////////////////////////3h4eIeHh/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////wAA//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////z8/PMDA +w19fX////////////////////////eHh4R0dHICAg19fXMDAwz8/P//////////////////////// +h4eHYGBg///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////AAD////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////f3984ODhwcHDf39/////39/enp6dISEh/f39YWFhYWFj/ +///n5+c4ODhoaGjf39////////+np6dISEh4eHj////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////8AAP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////+/v74+P +jyAgIAAAAAgICFhYWLe3t/f39wMICI+Pj/////////f395eXlyAgIAAAAAAAAFhYWLe3t//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +wAA////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////n5+fAAAAYGBgICAgf39// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////AAD////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////9I +SEgDKCgNeHgEICDHx8f////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////8AAP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////+fn5wQQEAdwcAIgICAgIP/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////wAA////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////t7e3ICAgf39/A +AAAeHh4////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////AAD/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////+/v78AAADX19f/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////8AAP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////39/fygoKP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wAA/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////QEBAh4eH/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////AAD/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////39/cHCAjf39//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////8AAP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////+fn53 +h4eP///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////wAA/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//7+/vn5+fh4eHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////AAD///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////n5+eXl5dISEgAAABQUFDHx8cAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAC/v78AAADv7+////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////8AAP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn55eXl0BAQAAAAA4YGHh4eN/f3// +//////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL+/vwAAAGBgYDg4OK+vr/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/wAA///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////39/fj4+ +PMDAwAAAAAAAAODg4n5+f////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAr6+vHygoKCgon5+f////////////z8/PWFhY19fX///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////AAD////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////39/cKGBgEQEACYGAICAjHx8f///////////////////////////////8AAAAA//8A//8 +A//8A//8A//8A//8A//8A//8A//8A//8AAAAAAAAAAACPj48JEBAgICCPj4/39/fPz88CEBAoKChw +cHDn5+f////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8AAP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn50BAQAN4eAufnzAwMM/Pz////// +//////////////////////wAAAAAAAAAAAAAAAAD//wAAAAD//wD//wD//wAAAAAAAP///wAAAP// +/////+/v73h4eAMICBAQEHBwcAEQEAGPjwAAABAQEIeHh/f39//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////wAA///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/39/feHh4GBgYAAAAAhAQMDAwv7+/////////////////////////////////////AAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAA////////////////////////39/fUFBQAAAAAiAgBo+PSEhIWFhYA +AAAICAgp6en////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////AAD////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////+3t7dISEgAAAAAAABAQECXl5fn5+f///////////////////// +//////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////////////////////// +/////////////+/v784ODgHMDBISEj////f399oaGgECAg4ODi/v7//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////8AAP//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////+fn54eHhyAgIAAAAFBQUJ+fn+/v +7////////////////////////////////////////////////////////////////wAAAAAAAAAAA +P///wAAAP///////////////////////////////////////////////6enp39/f////////////+ +fn53h4eAwQEFBQUN/f3////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////wAA////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////z8/PaGhoQEBAQEBAaGho19fX////////////////////////19fX +eHh4MDAwAgICJCQkjY2N9/f3///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////u7u7Ojo6CAgINjY2cHBw39/f/////////// +/////////////19fXcHBwQEBAQEBAaGho19fX//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////AA +D//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////9/f38wMDCXl5e/v7+/v7+X +l5coKCiHh4f///////////////+Pj48wMDCHh4e/v7+/v7+Xl5coKCh4eHj////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////9wcHA4ODiXl5e/v7+/v7 ++Pj48oKCifn5////////////////9/f38oKCiPj4+/v7+/v7+Xl5coKCiHh4f//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////8AAP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////1BQUH9 +/f////////////////////////3h4eGBgYP///////2BgYHBwcPf39////////////////////4eH +h2BgYP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////f390hISI+Pj/////////////////////f392BgYH9/f/////f390hISH9/f////////// +//////////////3h4eGBgYP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wAA////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////f39/f39/////////////////////////////////j4+PcHBwj4+P +cHBw////////////////////////////////j4+PcHBw///////////////////////////////// +///////h4eH////QEBA////QEBA////QEBA////QEBA////QEBA////QEBA////QEBA////QEBA// +//t7e3////////////////////////////////////cHBwj4+P/////////////////////////// +/////cHBwj4+PcHBwj4+P////////////////////////////////f39/f39///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////AAD//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////+3t7dISEj///////////// +//////////////////////////9QUFBAQED39/f///////////////////////////////////9QU +FCvr6////////////////////////////////////////8AAAD///8AAAD///8AAAD///8AAAD/// +8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///////////////////////////////////+np6d +YWFj////////////////////////////////////39/dAQEBQUFD///////////////////////// +//////////////9AQEC/v7/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////8AAP///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////f39zAwMNfX1/////////////////////////////////////////f39+/v7//////// +////////////////////////////////+fn5yAgIPf39////////////////////////////////2 +BgYP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///5+fn// +///////////////////////////f39yAgIOfn5/////////////////////////////////////// +/+/v7/f39////////////////////////////////////////8/PzzAwMP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//wAA//////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////j4+PcHBw///////////////////////// +///////////////////////////////////////////////////////////////////////cHBwj4 ++P/////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////j4+PcHBw//////// +///////////////////////////////////////////////////////////////////////////// +///////////UFBQr6+v////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////AAD///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8YGBjn5+f/////////////////////////////////////////////////////////////////// +/////////////////////////////n5+cgICD39/f//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////39/cgICDn5+f////////////////////////////////////////////////// +/////////////// +///////////////////////////////Pz88wMDD////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8AAP///////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////7+/v0BAQP/////////////////////////////////////////////////// +////////////////////////////////////////////////////1hYWKenp///////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////6+vr1BQUP////////////////////////////////// +/////////////////////////////////////////////////////////////////////0BAQL+/v +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////wAA//////////////////////////////////////////////////////////// +////////////////////////////////////////////z8/Pv7+/UFBQn5+f///////////////// +///////////////////////////////////////////////////////////////////////////// +//////////p6enSEhIv7+/39/f/////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////z8/Pv7+/SEhIp6en +///////////////////////////////////////////////////////////////////////////// +///////////////////////////n5+fUFBQv7+/39/f////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AAD///////////////////////// +//////////////////////////////////////////////////////////////////////////9oa +GgwMDBAQEA4ODjv7+//////////////////////////////////////////////////////////// +/////////////////////////////////////////////39/c4ODhAQEAoKCiHh4f//////////// +///////////////////////////////////////////////////////////////////////////// +///////////39/dQUFAwMDBAQEBAQED39/f////////////////////////////////////////// +//////////////////////////////////////////////////////////////v7+84ODhAQEAoKC +iHh4f//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////8AAP/////////////////////////////////////////////////////////////////// +////////////////////////////39/f3h4eP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////f393BwcGhoaP////////////////////////////////////////////////// +/////////////////////////////////////////////2BgYJeXl//////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////f392hoaHh4eP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////wAA///////////////////////////////// +///////////////////////////////////////////////////////////t7e3SEhI////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////MDAwz8/P//////////// +////////////////////////////////////////////////////////////////////////////n +5+fYGBg////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////MDA +wz8/P//////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////A +AD/////////////////////////////////////////////////////////////////////////// +////////////////9AQEC/v7///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////Pz88wMDD////////////////////////////////////////////////////// +/////////////////////////////////8oKCjX19f/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////+vr69QUFD///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +//////////////////8AAP/////////////////////////////////////////////////////// +////////////////////////////////+fn5xgYGP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////zAwMM/Pz/////////////////////////////// +/////////////////////////////////////////////////8/PzzAwMP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////yAgIN/f3////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////wAA///////////////////// +///////////////////////////////////////////////////////////////////l5eXaGho// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////cHBw +j4+P///////////////////////////////////////////////////////////////////////// +///////eHh4h4eH////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////YGBgn5+f//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////AAD/////////////////////////////////////////////////////////////// +////////////////////////9gYGCfn5///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////+vr69QUFD////////////////////////////////////// +/////////////////////////////////////////9AQEC/v7//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn59gYGD///////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////8AAP//////////////////////////// +///////////////////////////////////////////////////////////0hISLe3t////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////9/f3yAgIP/// +////////////////////////////////////////////////////////////////////////////y +goKNfX1////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////9fX1ygoKP/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///wAA/////////////////////////////////////////////////////////////////////// +/////////////////MDAwz8/P////////////////////////////////////////////////z8/P +////f39/////f39/////f39/////f39/////f39/////f39////////////////////////////// +///////////////////////7+/vEBAQ////////////////////////////////////////////// +//////////////////////////////////EBAQ7+/v/////////////////////////////////// +/////////////v7+/////f39/////f39/////f39/////f39/////f39/////f39///////////// +////////////////////////////////////////39/fICAg///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////AAD//////////////////////////////////// +///////////////////////////////////////////////////8YGBjn5+f///////////////// +//////////////////////////////////8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AA +AD///+fn5////////////////////////////////////////////////////8AAAD/////////// +/////////////////////////////////////////////////////////////////39/cICAj//// +///////////////////////////////////////////////////8AAAD///8AAAD///8AAAD///8A +AAD///8AAAD///8AAAD///+fn5/////////////////////////////////////////////////f3 +98gICD/////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////8AAP/ +///////////////////////////////////////////////////////////////////////////// +/////////yAgIN/f3////////////////////////////////////////////////5+fn////wAAA +P///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP/////////////////////////////////////////////////// ++fn5xgYGP//////////////////////////////////////////////////////////////////// +///////////wAAAP///////////////////////////////////////////////////39/f////wA +AAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP////////////////////////////////// +/////////////////9fX1ygoKP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////wAA/////////////////////////////////////////////////////////// +/////////////////////////////ICAg39/f//////////////////////////////////////// +////////////v7+/////v7+/////v7+/////v7+/////v7+/////v7+/////5+fn///////////// +///////////////////////////////////z8/PMDAw////////////////////////////////// +//////////////////////////////////////////////GBgY5+fn/////////////////////// +/////////////////////////////v7+/////v7+/////v7+/////v7+/////v7+/////v7+///// +5+fn////////////////////////////////////////////////v7+/QEBA///////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////AAD//////////////////////// +///////////////////////////////////////////////////////////////9QUFCvr6////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////+3t7dISE +j//////////////////////////////////////////////////////////////////////////// +///9AQEC/v7////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////+fn59gYGD/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////8AAP////////////////////////////////////////////////////////////////// +/////////////////////4+Pj3BwcP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////4eHh3h4eP///////////////////////////////////////// +//////////////////////////////////////39/f39/f/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////39/f39/f///////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////wAA//////////////////////////////// +////////////////////////////////////////////////////////z8/PMDAw///////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////ODg4x8fH/////// +/////////////////////////////////////////////////////////////////////////r6+v +UFBQ///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//KCgo19fX/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +AAD////////////////////////////////////////////////////////////////////////// +/////////////////8YGBjn5+f/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////f398gICD///////////////////////////////////////////////////// +///////////////////////////////v7+8YGBj39/f////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////X19coKCj//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////8AAP/////////////////////////////////////// +////////////////////////////////////////////////////6+vr1BQUP//////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////3h4eIeHh/////////////////// +/////////////////////////////////////////////////////////////////////4+Pj3Bwc +P////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////2hoaJeXl///////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////wAA//////////////////// +////////////////////////////////////////////////////////////////////////////M +DAwv7+/////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////v7+/QEBA/// +///////////////////////////////////////////////////////////////////////////// +////////////9/f3ICAg19fX///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////r6+vUFBQ/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////AAD////////////////////////////////////////////////////////////// +//////////////////////////////////f3984ODhoaGinp6ePj4//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////+Pj49/f39wcHA4ODjv7+////////////////////////////////////////////// +///////////////////////////////////////////////////Pz88wMDBwcHCvr6+Pj4/////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////39/eHh4d/f39wcHA4ODjv7+///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////8AAP/////////////////////////// +////////////////////////////////////////////////////////////////////////////5 +eXl1hYWDAwMLe3t////////////////////////////////////////////////////////////// +//////////////////////////////////////////8fHxygoKH9/f4+Pj/f39/////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////f394+Pj1BQUCgoKMfHx///////////////////////////////////////////// +///////////////////////////////////////////////////////////7e3tzAwMH9/f4+Pj/f +39/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////wAA////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////n5+fYGBg/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +aGhol5eX///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////h4eHeHh4////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////YGBgn5+f//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////AAD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +v7+8YGBj39/f///////////////////////////////////////////////////////////////// +//////////////////////////////////8YGBjn5+f////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////f398gICD//////////////////////////////////////////////////// +////////////////////////////////////////////////39/cQEBD39/f///////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////8AAP +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////3BwcI+Pj/////////////////////////////// +/////////////////////////////////////////////////////////////////6+vr1BQUP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////1BQUK+vr////////////// +///////////////////////////////////////////////////////////////////////////// +/////4+Pj3BwcP/////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////wAA////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////5+fnICAg9/f3/////// +///////////////////////////////////////////////////////////////////////////// +////9/f3ICAg5+fn///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////z8 +/PMDAw/////////////////////////////////////////////////////////////////////// +/////////////////////9/f3ICAg5+fn//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////AAD/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////9/f39/f3////////////////////////////////////////+Pj49/f3// +//////////////////////////////////////+Hh4d4eHj////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////9gYGCfn5///////////////////////////////// +///////9wcHCfn5////////////////////////////////////////9/f39/f3////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////8AAP///////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////0BAQL+/v/////////// +/////////////////////7+/v0hISEhISLe3t////////////////////////////////8fHx0BAQ +Pf39///////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////f39zA +wMNfX1////////////////////////////////6enp1hYWEBAQMfHx/////////////////////// +/////////7+/v0BAQP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////wAA/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////5+fnMDAwv7+/////////////////////////x8fHMDAw5+fn5+fnODg4v7+// +///////////////////////z8/PQEBA39/f////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////19fXMDAwz8/P////////////////////////r6+vODg4 +9/f339/fMDAwx8fH////////////////////////x8fHMDAw5+fn///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/AAD///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////v7+9ISEh4eHjf39/////// +//f3994eHg4ODjn5+f////////v7+9AQEBoaGjX19f////////n5+eHh4c4ODjf39//////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////f3984 +ODh4eHjn5+f////////X19dwcHBQUFDv7+/////////v7+9AQEB4eHjf39/////////f3994eHg4O +Djn5+f/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////8AAP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////f394eHhyAgIAAAAAAAACAgIIeHh////////////////////////5eXlygoKA +AAAAAAABgYGHh4ePf39////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////f394eHhxgYGAAAAAAAACgoKI+Pj//////////////// +/////f394eHhyAgIAAAAAAAACAgIIeHh///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wAA//// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////AAD///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////8AAP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////wAA///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////AAD////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////8AA +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wAA////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////AAD////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////8AAP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////wAA////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//AAD//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////8AAP///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////wAA/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////AAD//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////8AAP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////wAA//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////AAD///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////8A +AP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////wAA///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////AAD////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////8AAP/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////wAA///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///AAD/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8AAP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////wAA// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////AAAOAAAAFAAAAAAAAAAQAAAAFAAAAA== +2003-03-09T10:52:09 +2003-12-23T09:01:31 +2003-04-11T11:27:25 +2003-03-09T10:52:09 + + +9 +295 +34 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +18 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +#efefef +1 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +15 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +14 +1 +0 +2 +0 +0 +0 +2 +0 + + +15 +#fafafa +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +15 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +15 +1 +15 +1 +0 +0 +0 +0 +0 + + +0 +14 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +1 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +0 +0 +1 +0 + + +0.027777777777778 +0.027777777777778 +0.027777777777778 +0.027777777777778 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +15 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +15 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +14 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +18 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +20 +14 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +3 +15 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +3 +1 +0 +2 +0 +0 +1 +2 +0 + + + + +1 +1 +1 +0 + + +1 +#8a8aff +31 +0 +1 +0 +0 +0 +0 +0 + + +0.0033333333333333 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +1 +1 +0 + + +15 +18 +1 +0 +1 +0 +0 +0 +0 +0 + + +0.0016666666666667 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + + +2 +0 +0 +0 + + +2 + + + +Visio Network Solutions +
http://officeupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + +11 +8.5 +0.125 +-0.125 +1 +1 +0 +0 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +1 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +Co&lor Schemes... +0 +0 +0 + + +Black & White + + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Apple +255 +0 +1 +1 +0 +0 +1 +1 +Apple +0 + + +Digital +255 +0 +1 +1 +0 +0 +1 +1 +Digital +0 + + +Cray +255 +0 +1 +1 +0 +0 +1 +1 +Cray +0 + + +IBM +255 +0 +1 +1 +0 +0 +1 +1 +IBM +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +2.9 +5.5 +2.8 +2.6 +1.4 +1.3 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +1.3 +0 +0 +0 +0 + + + +0.9882348 +2.6 +0 +0 +0 +0 + + + +1.81188 +2.6 +0 +0 +0 +0 + + + +0.9882348 +0 +0 +0 +0 +0 + + + +1.8117652 +0 +0 +0 +0 +0 + + + +2.8 +1.3 +0 +0 +0 +0 + + + +%Properties +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.41176470588235 +0.6706402062413 + + +1.4 +0.28518782526027 +0.86047900823972 +0.024676368328812 +0 +0.50678733031675 + + +2.3882352941176 +0.6706402062413 +1.9395209917603 +0.024676368328805 +0 +0.50678733031675 + + +2.8 +1.3 +2.6723109199939 +0.78612988022265 +0 +0.50678733031675 + + +2.3882352941176 +1.9293597937587 +2.6723109199939 +1.8138701197774 +0 +0.50678733031675 + + +1.4 +2.3148121747397 +1.9395209917603 +2.5753236316712 +0 +0.50678733031675 + + +0.41176470588235 +1.9293597937587 +0.86047900823972 +2.5753236316712 +0 +0.50678733031675 + + +0 +1.3 +0.12768908000609 +1.8138701197774 +0 +0.50678733031675 + + +0.41176470588235 +0.6706402062413 +0.12768908000609 +0.78612988022264 +0 +0.50678733031675 + + +zone z1 + + + +7.13 +5.5 +2.8 +2.6 +1.4 +1.3 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +1.3 +0 +0 +0 +0 + + + +0.9882348 +2.6 +0 +0 +0 +0 + + + +1.81188 +2.6 +0 +0 +0 +0 + + + +0.9882348 +0 +0 +0 +0 +0 + + + +1.8117652 +0 +0 +0 +0 +0 + + + +2.8 +1.3 +0 +0 +0 +0 + + + +%Properties +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.41176470588235 +0.6706402062413 + + +1.4 +0.28518782526027 +0.86047900823972 +0.024676368328812 +0 +0.50678733031675 + + +2.3882352941176 +0.6706402062413 +1.9395209917603 +0.024676368328805 +0 +0.50678733031675 + + +2.8 +1.3 +2.6723109199939 +0.78612988022265 +0 +0.50678733031675 + + +2.3882352941176 +1.9293597937587 +2.6723109199939 +1.8138701197774 +0 +0.50678733031675 + + +1.4 +2.3148121747397 +1.9395209917603 +2.5753236316712 +0 +0.50678733031675 + + +0.41176470588235 +1.9293597937587 +0.86047900823972 +2.5753236316712 +0 +0.50678733031675 + + +0 +1.3 +0.12768908000609 +1.8138701197774 +0 +0.50678733031675 + + +0.41176470588235 +0.6706402062413 +0.12768908000609 +0.78612988022264 +0 +0.50678733031675 + + +zone z2 + + + +5 +1.6 +2.8 +2.6 +1.4 +1.3 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 + + +0 +1.3 +0 +0 +0 +0 + + + +0.9882348 +2.6 +0 +0 +0 +0 + + + +1.81188 +2.6 +0 +0 +0 +0 + + + +0.9882348 +0 +0 +0 +0 +0 + + + +1.8117652 +0 +0 +0 +0 +0 + + + +2.8 +1.3 +0 +0 +0 +0 + + + +%Properties +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0.41176470588235 +0.6706402062413 + + +1.4 +0.28518782526027 +0.86047900823972 +0.024676368328812 +0 +0.50678733031675 + + +2.3882352941176 +0.6706402062413 +1.9395209917603 +0.024676368328805 +0 +0.50678733031675 + + +2.8 +1.3 +2.6723109199939 +0.78612988022265 +0 +0.50678733031675 + + +2.3882352941176 +1.9293597937587 +2.6723109199939 +1.8138701197774 +0 +0.50678733031675 + + +1.4 +2.3148121747397 +1.9395209917603 +2.5753236316712 +0 +0.50678733031675 + + +0.41176470588235 +1.9293597937587 +0.86047900823972 +2.5753236316712 +0 +0.50678733031675 + + +0 +1.3 +0.12768908000609 +1.8138701197774 +0 +0.50678733031675 + + +0.41176470588235 +0.6706402062413 +0.12768908000609 +0.78612988022264 +0 +0.50678733031675 + + +zone z3 + + + +5.040078125 +3.868125 +1.11984375 +0.73625 +0.559921875 +0.368125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +1.1753993055556 +0.368125 +0.11111111111111 +0.24444444444444 +0.055555555555556 +0.12222222222222 +0 + + +0.559921875 +-0.24444444444444 +0.559921875 +0.368125 +7 +2 +1 +Reposition Equipment Label + + +1.1753993055556 +0.368125 +0.559921875 +0.368125 +9 +2 +1 +Reposition Text + + + + +0.559921875 +0.368125 +1.11984375 +0.73625 +0.559921875 +0.368125 +0 +0 +0 +0 + + +0 +0 +1.11984375 +0.73625 + + +0 + + +0 +0 +0 +0 +0 + + +0.559921875 +-0.24444444444444 +1.0064019107222 +0.24444444444444 +0.50320095536111 +0.12222222222222 +0 + + +0 +0 +0 +0 + +0 +0 + + +1.11984375 +0 + + +1.11984375 +0.73625 + + +0 +0.73625 + + +0 +0 + + + + + + + +6.0591174 +3.95 +1.4098733942915 +0.25 +0.70493669714575 +0.125 +0.36253090966628 +0 +0 +0 + + +5.4 +3.7 +6.7182348 +4.2 + + +0 +0 +0 +0 +0 + + +0 + + +0.70493669714575 +-0.12222222222222 +1.4098733942915 +0.24444444444444 +0.70493669714575 +0.12222222222222 +0 + + +0 +0 +0 +0 + +0 +0.125 + + +0.82993669714575 +0.25 + + +0.73618669714575 +0.075 + + +1.4098733942915 +0.125 + + +0.57993669714575 +0 + + +0.67368669714575 +0.175 + + +0 +0.125 + + + + + +3.9058826 +3.9 +1.3311280704467 +0.25 +0.66556403522333 +0.125 +-0.46760032490522 +0 +0 +0 + + +3.3117652 +4.2 +4.5 +3.6 + + +0 +0 +0 +0 +0 + + +0 + + +0.66556403522333 +-0.12222222222222 +1.3311280704467 +0.24444444444444 +0.66556403522333 +0.12222222222222 +0 + + +0 +0 +0 +0 + +0 +0.125 + + +0.79056403522333 +0.25 + + +0.69681403522333 +0.075 + + +1.3311280704467 +0.125 + + +0.54056403522333 +0 + + +0.63431403522333 +0.175 + + +0 +0.125 + + + + + +4.9532016637298 +3.0624002832963 +0.88164375817613 +0.25 +0.44082187908807 +0.125 +1.691778681091 +0 +0 +0 + + +5.0064033274595 +2.6248005665927 +4.9 +3.5 + + +0 +0 +0 +0 +0 + + +0 + + +0.44082187908807 +-0.12222222222222 +0.88164375817613 +0.24444444444444 +0.44082187908807 +0.12222222222222 +0 + + +0 +0 +0 +0 + +0 +0.125 + + +0.56582187908807 +0.25 + + +0.47207187908807 +0.075 + + +0.88164375817613 +0.125 + + +0.31582187908807 +0 + + +0.40957187908807 +0.175 + + +0 +0.125 + + + + + +5.04 +4.45 +1.5 +0.5 +0.75 +0.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.25 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + +0 +0 +0 +0 + +0 +0 + + +1.5 +0 + + +1.5 +0.5 + + +0 +0.5 + + +0 +0 + + +$FW = “fw” + + + + + + + + + + +1 +1 +0 +1 +1 +9 +295 +34 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + + + + + + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/ZoneDiagram.vsd b/Shorewall-docsN/images/ZoneDiagram.vsd new file mode 100755 index 000000000..6d8e55216 Binary files /dev/null and b/Shorewall-docsN/images/ZoneDiagram.vsd differ diff --git a/Shorewall-docsN/images/apache_pb1.gif b/Shorewall-docsN/images/apache_pb1.gif new file mode 100644 index 000000000..e27b7fb74 Binary files /dev/null and b/Shorewall-docsN/images/apache_pb1.gif differ diff --git a/Shorewall-docsN/images/basics.png b/Shorewall-docsN/images/basics.png new file mode 100644 index 000000000..b2de10dba Binary files /dev/null and b/Shorewall-docsN/images/basics.png differ diff --git a/Shorewall-docsN/images/basics.vdx b/Shorewall-docsN/images/basics.vdx new file mode 100755 index 000000000..8ad4580d7 --- /dev/null +++ b/Shorewall-docsN/images/basics.vdx @@ -0,0 +1,9601 @@ + + + + + +dmz1 +teastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAAHwAAAChAAAAAAAAAAAAAAAcDAAAvQ4AACBFTUYAAAEAHO8AAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAAfO4AAAAAAAAAAAAAfAAAAKEAAAAAAAAAAAAAAH0 +AAACiAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADw7QAAKAAAAH0AAACiAAAAAQAYAAAAAADw7QAAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////wD///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////8A////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////AP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////wD//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////8A////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////AP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////wD//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8A//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////AP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////wD////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8A//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////AP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////wD////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////8A/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////AP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////wD//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////8A////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wD//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////8A///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////AP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wD/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////8A///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////AP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/wD////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8A/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///AP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////wD///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////8A/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////AP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////wD///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +//////////////////////////////8A///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////AP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wD/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////8A//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////AP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////wD// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////8A//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////AP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////wD////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////8A////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////AP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////wD//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////8A////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////AP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wD//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////8A///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////AP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////wD////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////8A//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////AP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wD////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8A/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////AP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wD///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////8A/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////AP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////wD//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////8A///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////AP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////wD/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////39/dRYFEwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQ +DAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQD +AwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDA +wQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDA6SDrn5+f///////////////////////////// +//////////8A///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////39/fCRgJAL8AAL8AAL8AAL8AAL8 +AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8A +AL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AA +L8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL +8ADDAMv7+/////////////////////////////////////////AP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v//////////////////////////// +////////////wD/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////f398MIAwA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//// +////////////////////////////////////8A/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////3 +9/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////A +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v// +//////////////////////////////////////wD///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//////////////////////////////////////// +8A/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+/ +////////////////////////////////////////AP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v////////////////////////////////////// +//wD///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA3wAA/wAAfwAA/wAAfwAA/wAAfwAA/wAAfwAA/wAAfwAA/wAAfwAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAAfwAA/wAAfwAA/wAAfwAA/wAAfwAA/wAAfwAA/wAAfwAA/wAA/wAA/wAQQBC/v +7////////////////////////////////////////8A////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAAAAAP8AAAAAAP8AA +AAAAP8AAAAAAP8AAAAAAP8AAH8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AACAAAP8AAAAAAP8AAAAAAP8AAAA +AAP8AAAAAAP8AAAAAAP8AACAAAP8AAP8AEEAQv7+///////////////////////////////////// +////AP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AADvAAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ +AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAD/AAD/ABBAEL+/v//////////// +////////////////////////////wD/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////f398MIAwA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAAAAf39/AAAAAAAAf39/f39/f39/f39/AAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAAAAf39/AAAAAAAAf39/f39/f39/f39/AAAAAP8AAP8AAP8AAP8AEEAQv7+/////////// +//////////////////////////////AP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////9/f3wwgD +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AH9/f39/f/Ly8vLy8n9/f39/f39/fwAAAH +9/fwD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AH9/f39/f/Ly8vLy8n9/f39/f39/fwAA +AH9/fwD/AAD/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAAAAB/f38AAAAAAAA4ODhvb29/f38AAAAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAAAAB/f38AAAAAAAAoKCh/f39/f38AAAAAAAAA/wAA/wAA/wAA/wAQQBC/v7///////// +///////////////////////////////8A//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////39/fDC +AMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////AP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v/////// +/////////////////////////////////wD////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////f398 +MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+////// +/////////////// +////////////////////AP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7/////////////////// +/////////////////////8A////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////39/fDCAMAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////AP////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v///////////////// +///////////////////////wD//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////f398MIAwA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+//////////////// +/////////////////////////AP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////9/f3wwgDAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7////////////// +//////////////////////////8A///////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AEEAQv7+/////////////////////////////////////////AP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v/////////////////////////// +/////////////wD////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////f398MIAwA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAQQBC/v7////////////////////////////////////////8A/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+////////////////////////// +///////////////AP//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAC/AABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAA +CnAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/ABBAEL+/v////////////////////////////////////////wD///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAUAAAMAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAIAAASAAAvwAAvwAAvwAAvwAAvwAA +vwAAvwAAvwAAvwAAvwAAvwAAvwAAvwAAvwAAZQAAGAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQ +AAAQAAAQAAAEAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//////////////////////// +////////////////8A/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////39/fDCAMAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAO8AAL8AAL8AAL8AAL8AAL8AAL8AAL +8AAL8AAL8AAHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAGMAAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAN8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AEEAQv7+/////////////////////////////////////////AP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAD/A +AD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v////////////////////// +//////////////////wD///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAIAAA/wAAAAAA/wAAAAAA/wAAAAAA/w +AAAAAA/wAAAAAA/wAAfwAA/wAA/wAAfwAAfwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/ +v7////////////////////////////////////////8A///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAP8AAP8AAH8AAH8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+//////////////////////////////////// +/////AP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAE +L+/v////////////////////////////////////////wD/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAfwAAfw +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAA +A/wAAAAAA/wAAAAAA/wAAQAAA/wAA/wAA/wAQQBC/v7////////////////////////////////// +//////8A///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +IcAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAP8AAP8AAP8AEE +AQv7+/////////////////////////////////////////AP///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////+fn5wQIBBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEB +BAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEAggCAg +gCBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBA +EBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEAcQB7+/v//////////////////////////////// +////////wD/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////Pz8+/v7+/v7+/v7+/v7+/v7+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v79fX19fX1+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7////////////////////////////////////////////8A//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////f39/ +f39////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////AP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////0BAQP///wAAAP///wAAA +P///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP/////////////////////////////////////////// +////////////////////39/f39/f///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////wD///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9YWFj +///////////////////////////////////////////////////////////9/f39/f3////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////8A// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////f39/f39//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////AP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////39/f39/f//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////wD +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAD////Hx8e/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v79gYGB/f3////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8A////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv7+/AAAAYGBgQEBAQEBAQEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAz8/P////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +AP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAL+/vwAAAP///////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP///wAAAP/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wD//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////8gICD///8AAAD/// +8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///+fn5///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8A////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAA///////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////AP///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wAAAAAAAAAAA +AAAAAAAAAD//wD//wD//wD//wD//wAAAAAAAAAAAAAAAAAAAP//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wD////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//8AAAAAAAD/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////8A//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////AP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////wD////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////8AAAD///8AAAD///8AAAB/f3////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////8A/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////f39/X19f// +//AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////AP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////39/f39/f0BAQP///0BAQP///0BAQP///0BAQP///0BAQP/// +0BAQP///0BAQP///0BAQP///0BAQP///1hYWP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wD///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////X19cyMkAwMEAwMEAwMEAwMEAwMEAwMEAYGCAYGCA +wMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAw +MEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwM +EAwMEAwMEAwMEAw +MEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEBUVGD////////////////////// +/////////////////8A////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////n5+fCQlIAAC/AAC/ +AAC/AAC/AAC/AAC/AABfAABfAAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/A +AC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AA +C/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC +/AAC/AAC/AAC/AAAA////////////////////////////////////////AP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAAfwAAfwAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP//////////////////// +///////////////////wD//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+fn58MDGAAAP8AA +P8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAAD///////////////////////////////////////8A///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADnAAD/AABAAAD/AABAA +AD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AACHAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA/////////////////// +/////////////////////AP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////5+fnwwMYAAA/w +AA/wAA/wAA/wAA/wAA/wAAfwAAfwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////wD/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////////////// +//////////////////////8A///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////n5+fDAxgAAD +/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADHAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAAA////////////////////////////////////////AP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAAjwAAfwAAPwAAPwAAfwAAhw +AA9wAA/wAA/wAA/wAA7wADCAAAAAAPMAAMYAAAjwAAvwAA/wAA/wAA/wAA/wAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////// +/////////////// +/////////wD////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAL8 +AACAAAH8AAG8AAGcAAH8AABoAAH0AAL8AANcAAP8AAP8AC3AAi48ANEAAAAAAAAAAAAAAAAAABjAA +DGAAAK8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAAD///////////////////////////////////////8A/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////n5+fDAxgAAD/AAD/AAD/AAC/AAAgAAB/AAB/AAB/AAB/AAAYAAU3AAQYAAAAAA +AAAAAAAA44AAUIALe3ABA4AAD/AADfAAC/AACvAAB/AACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA///////////////////////////// +///////////AP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA +9wAAhwAAfwAAfwAAfwAAfwAAfwAA7wAA/wAA5wAAtwAAfwAPUAAMIAAJEAAECAAArwAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA9wADIAAAzwAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAAP///////////////////////////////////////wD///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAO8AAL8AAO8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8ABI8ACzgAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD/////////////////////////// +////////////8A/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD3AAcYAAWfAAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAAA////////////////////////////////////////AP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAEjwAKGAAA5wAA9wAEcAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP///////////////////////// +//////////////wD///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAPcAChgAD2AABI8A +BggAAK8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAAD///////////////////////////////////////8A////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AASPAAAAAAcQAJ+fAA8wAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA//////////////////////// +////////////////AP/////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA9wALGABweAA6SAAAAAAArwAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAA +P///////////////////////////////////////wD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8ABI8AQUgADzAAEEgADzAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////////////////////////////////// +//8A///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD3AAgYAACfAADfAAMIA +ACvAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +AA////////////////////////////////////////AP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA5wAA/wAA/wAIhwALMAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////////////////////////// +////wD/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +cACDAAAK8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAAD///////////////////////////////////////8A//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADHAAIwAAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA////////////////////////////////// +//////AP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAeAAA5wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAAAP///////////////////////////////////////wD////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAAAAAA +AAAP8AAAAAAAAAAAAAAP8AAP8AAP8AAP8AAP8AAP8AAAD//////////////////////////////// +///////8A//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAAA////////////AAAA////////////AAAAAAD/AAD/AAD/AAD/AAD/AAAA//////// +////////////////////////////////AP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////5+ +fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP//////////////////////////// +///////wAAAAAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////wD//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAAAAAAD///////////////////////////////////8AAAAAAAAAAP8AAP8AAP8AAAD////// +/////////////////////////////////8A////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA////////v7+/////v7+/////v7+/////v7+ +/////////////////AAAAAAD/AAD/AAAA////////////////////////////////////////AP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAAAP///2BgYP///wAAAP///wAAAP///wAAAP///2BgYP///////////wAAAAAA/wAA/wAAAP//// +///////////////////////////////////wD//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////9/f3////9/f3////9/f3////9/ +f3////////////////8AAAAAAP8AAP8AAAD///////////////////////////////////////8A/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAAAAAAA////////////////////////////////////AAAAAAAAAAD/AAD/AAD/AAAA/// +/////////////////////////////////////AP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAA/wAAQAAA/wAAQAA +A/wAAQAAA/wAAQAAA/wAAQAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////////////// +////////////wAAAAAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////w +D//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8A +AJ8AAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AACAAAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAAD///////////8AAAD///////////8AAAAAAP8AAP8AAP8AAP8AAP8AAAD//////////////// +///////////////////////8A//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////n5+fDAxgAA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC +/AAD/AAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAAAAAAAAAD/AAAAAAAAAAAAAAD/A +AD/AAD/AAD/AAD/AAD/AAAA////////////////////////////////////////AP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP////////////// +/////////////////////////wD////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////+fn58MDGA +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAAD///////////////////////////////////////8A/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////v7+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBgg///////////// +///////////////////////////AP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////wD///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8A/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////AA4AAAAUA +AAAAAAAABAAAAAUAAAA +2002-08-11T06:46:41 +2003-12-23T08:42:58 +2002-08-11T11:07:56 +2002-08-11T06:46:41 + + +11 +39 +1 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +0 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +1 +0 +0 + + +0 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + + +2 +0 +0 +2 + + +Visio Network Solutions +
http://officupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + + + + + + + +85 +110 +0.125 +-0.125 +1 +10 +0 +3 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +16 +16 +0 +0 +8 +4 +0 +0 +0 +0 + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +56 +95.5 +44 +25 +22 +12.5 +0 +0 +0 +0 + + +2 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +44 +0 + + +44 +25 + + +0 +25 + + +0 +0 + + + + + +55.5 +56 +44 +28 +22 +14 +0 +0 +0 +0 + + +3 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +44 +0 + + +44 +28 + + +0 +28 + + +0 +0 + + + + + + +44.649372000209 +51.04140625 +5.7390625 +2.0828125 +2.86953125 +1.04140625 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +6.2946180555556 +1.04140625 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + + + +2.86953125 +1.04140625 +5.7390625 +2.0828125 +2.86953125 +1.04140625 +0 +0 +0 +0 + + +0 +0 +5.7390625 +2.0828125 + + +0 + + +0 +0 +0 +0 +0 + + +2.86953125 +-2.4444444444444 +9.3863932301667 +2.4444444444444 +4.6931966150833 +1.2222222222222 +0 + + + + + + +71.13046875 +51.04140625 +5.7390625 +2.0828125 +2.86953125 +1.04140625 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +6.2946180555555 +1.04140625 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + + + +2.86953125 +1.04140625 +5.7390625 +2.0828125 +2.86953125 +1.04140625 +0 +0 +0 +0 + + +0 +0 +5.7390625 +2.0828125 + + +0 + + +0 +0 +0 +0 +0 + + +2.86953125 +-2.4444444444444 +9.3863932301667 +2.4444444444444 +4.6931966150833 +1.2222222222222 +0 + + + + + + +57.188504464286 +64.4234375 +11.0515625 +1.153125 +5.52578125 +0.5765625 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.607118055556 +0.5765625 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +0 +0.5765625 +0 +0 +0 +1 + + + +11.0515625 +0.5765625 +0 +0 +0 +1 + + + +5.52578125 +1.153125 +0 +0 +0 +1 + + + + + +5.52578125 +0.5765625 +11.0515625 +1.153125 +5.52578125 +0.5765625 +0 +0 +0 +0 + + +0 +0 +11.0515625 +1.153125 + + +0 + + +0 +0 +0 +0 +0 + + +5.52578125 +-2.4444444444444 +7.6584201398889 +2.4444444444444 +3.8292100699444 +1.2222222222222 +0 + + + + + + +48.156047607247 +58.245289405617 +7.013351214077 +12.356296188767 +3.5066756070385 +6.1781480943834 +0 +0 +0 +0 + + +44.649372000209 +52.067141311233 +51.662723214286 +64.4234375 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +-1.7763568394003E-15 +9.684823701422 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +4 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +0 +12.356296188767 + + +7.013351214077 +12.356296188767 + + + + + +66.922377232143 +58.245289405617 +8.4161830357143 +-12.356296188767 +4.2080915178572 +-6.1781480943834 +0 +0 +0 +0 + + +62.714285714286 +64.4234375 +71.13046875 +52.067141311233 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +8.4161830357143 +-1.9700565765263 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +5 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +8.4161830357143 +0 + + +8.4161830357143 +-12.356296188767 + + + + + +49.094252232143 +70 +16.188504464286 +-10 +8.0942522321429 +-5 +0 +0 +0 +0 + + +41 +75 +57.188504464286 +65 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +1 +2 +2 + +0 +1 + + +13.094252232143 +0 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +16.188504464286 +0 + + +16.188504464286 +-10 + + + + + + +39.407965750209 +89.31796875 +3.778125 +1.3640625 +1.8890625 +0.68203125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +4.3336805555556 +0.68203124999999 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1.8890625 +0 +0 +0 +0 +1 + + + +3.778125 +0.68203125 +0 +0 +0 +1 + + + + + +1.8890625 +0.68203125 +3.778125 +1.3640625 +1.8890625 +0.68203125 +0 +0 +0 +0 + + +0 +0 +3.778125 +1.3640625 + + +0 + + +0 +0 +0 +0 +0 + + +1.8890625 +-2.4444444444444 +8.5834418412778 +2.4444444444444 +4.2917209206389 +1.2222222222222 +0 + + + + + + +39.407965750209 +84.310160703144 +2 +8.6515535937115 +1 +4.3257767968557 +0 +0 +0 +0 + + +39.407965750209 +79.984383906289 +39.407965750209 +88.6359375 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +1 +4.3257767968557 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +1 +0 + + +1 +8.6515535937115 + + + + + +46.297028250209 +89.31796875 +10 +2.5 +5 +1.25 +0 +0 +0 +0 + + +41.297028250209 +89.31796875 +51.297028250209 +89.31796875 + + +0 +0 +0 +0 +0 + + +0 + + +5 +-1.2222222222222 +10 +2.4444444444444 +5 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +6.25 +2.5 + + +5.3125 +0.75 + + +10 +1.25 + + +3.75 +0 + + +4.6875 +1.75 + + +0 +1.25 + + + + + +70.94765625 +102.209375 +10.1046875 +7.58125 +5.05234375 +3.790625 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +10.660243055556 +3.790625 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +1 + + + + + +5.05234375 +3.790625 +10.1046875 +7.58125 +5.05234375 +3.790625 +0 +0 +0 +0 + + +0 +0 +10.1046875 +7.58125 + + +0 + + +0 +0 +0 +0 +0 + + +5.05234375 +-2.4444444444444 +4.0142144107222 +2.4444444444444 +2.0071072053611 +1.2222222222222 +0 + + + + + + +56.802236583542 +88.916666666667 +10.566666666667 +2.1666666666667 +5.2833333333333 +1.0833333333333 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.122222222222 +1.0833333333333 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + + + +5.2833333333333 +1.0833333333333 +10.5203125 +2.121875 +5.26015625 +1.0609375 +0 +0 +0 +0 + + +0 +0 +10.5203125 +2.121875 + + +0 + + +0 +0 +0 +0 +0 + + +5.26015625 +-2.4668402777778 +7.9665798621111 +2.4444444444444 +3.9832899310556 +1.2222222222222 +0 + + + + + + +62.654764125104 +94.209375 +10.624498418403 +2.5 +5.3122492092017 +1.25 +0.9147175961819 +0 +0 +0 + + +59.414215750209 +90 +65.8953125 +98.41875 + + +0 +0 +0 +0 +0 + + +0 + + +5.3122492092017 +-1.2222222222222 +10.624498418403 +2.4444444444444 +5.3122492092017 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +6.5622492092017 +2.5 + + +5.6247492092017 +0.75 + + +10.624498418403 +1.25 + + +4.0622492092017 +0 + + +4.9997492092017 +1.75 + + +0 +1.25 + + + + + +69.5 +68.5 +16 +3 +8 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +16 +0 + + +16 +3 + + +0 +3 + + +0 +0 + + +LOCAL ZONE + + + +46.055555555556 +105 +20.111111111111 +3.2146464646465 +10.055555555556 +1.6073232323232 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +20.111111111111 +0 + + +20.111111111111 +3.2146464646465 + + +0 +3.2146464646465 + + +0 +0 + + +NET ZONE + + + +44.944444444444 +48.388888888889 +10.111111111111 +1.7777777777778 +5.0555555555556 +0.88888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +10.111111111111 +0 + + +10.111111111111 +1.7777777777778 + + +0 +1.7777777777778 + + +0 +0 + + +Computer 1 + + + +71.142857142857 +48.388888888889 +12 +1.7777777777778 +6 +0.88888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12 +0 + + +12 +1.7777777777778 + + +0 +1.7777777777778 + + +0 +0 + + +Computer 2 + + + +57 +85.75 +14 +3.5 +7 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +14 +0 + + +14 +3.5 + + +0 +3.5 + + +0 +0 + + +ISP’s Router + + + +70.5 +102.5 +9 +2.5 +4.5 +1.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +9 +0 + + +9 +2.5 + + +0 +2.5 + + +0 +0 + + +Internet + + + +50.5 +66.25 +11 +2.5 +5.5 +1.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +11 +0 + + +11 +2.5 + + +0 +2.5 + + +0 +0 + + +Hub/Switch + + + +40.071428571429 +72 +14 +2 +7 +1 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +14 +0 + + +14 +2 + + +0 +2 + + +0 +0 + + +Firewall/Router + + + +46.428571428571 +81.571428571429 +16 +2 +8 +1 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +16 +0 + + +16 +2 + + +0 +2 + + +0 +0 + + +External Interface + + + +49.142857142857 +76.138575768849 +16 +0.27715153769842 +8 +0.13857576884921 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +16 +0 + + +16 +0.27715153769842 + + +0 +0.27715153769842 + + +0 +0 + + +Internal Interface + + + +37.5 +77.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.753993055556 +3.68125 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + + + +5.59921875 +3.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 +0 +11.1984375 +7.3625 + + +0 + + +0 +0 +0 +0 +0 + + +5.59921875 +-2.4444444444444 +10.064019098222 +2.4444444444444 +5.0320095491111 +1.2222222222222 +0 + + + + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +11 +39 +1 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + +10 +5 + + +10 +6 + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/basics.vsd b/Shorewall-docsN/images/basics.vsd new file mode 100644 index 000000000..9f8681770 Binary files /dev/null and b/Shorewall-docsN/images/basics.vsd differ diff --git a/Shorewall-docsN/images/basics1.png b/Shorewall-docsN/images/basics1.png new file mode 100644 index 000000000..9b3e58db5 Binary files /dev/null and b/Shorewall-docsN/images/basics1.png differ diff --git a/Shorewall-docsN/images/basics1.vdx b/Shorewall-docsN/images/basics1.vdx new file mode 100755 index 000000000..7b8456572 --- /dev/null +++ b/Shorewall-docsN/images/basics1.vdx @@ -0,0 +1,9605 @@ + + + + + +dmz1 +teastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAAHwAAAChAAAAAAAAAAAAAAAcDAAAvQ4AACBFTUYAAAEAHO8AAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAAfO4AAAAAAAAAAAAAfAAAAKEAAAAAAAAAAAAAAH0 +AAACiAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADw7QAAKAAAAH0AAACiAAAAAQAYAAAAAADw7QAAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////wD///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////8A////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////AP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////wD//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////8A////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////AP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////wD//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8A//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////AP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////wD////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8A//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////AP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////wD////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////8A/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////AP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////wD//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////8A////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wD//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////8A///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////AP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wD/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////8A///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////AP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/wD////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8A/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///AP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////wD///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////8A/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////AP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////wD///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +//////////////////////////////8A///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////AP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wD/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////8A//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////AP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////wD// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////8A//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////AP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////wD////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////8A////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////AP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////wD//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////8A////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////AP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wD//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////8A///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////AP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////wD////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////8A//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////AP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wD////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8A/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////AP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wD///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////8A/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////AP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////wD//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////8A///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////AP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////wD/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////39/dRYFEwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQ +DAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQD +AwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDA +wQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDA6SDrn5+f///////////////////////////// +//////////8A///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////39/fCRgJAL8AAL8AAL8AAL8AAL8 +AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8A +AL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AA +L8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL +8ADDAMv7+/////////////////////////////////////////AP///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v//////////////////////////// +////////////wD/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////f398MIAwA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//// +////////////////////////////////////8A/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////3 +9/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////A +P//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v// +//////////////////////////////////////wD///////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//////////////////////////////////////// +8A/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAFgAAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAP8AAP8AEEAQv7+/ +////////////////////////////////////////AP/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABgAAD/AAAAAAD/AAAAAAD/AAAA +AAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AAAAAAD/AAAAAAD/AAAAAA +D/AAAAAAD/AAAAAAD/AAC/AAD/AAD/ABBAEL+/v////////////////////////////////////// +//wD///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v +7////////////////////////////////////////8A////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAAAAAP8AAAAAAP8AA +AAAAP8AAAAAAP8AAAAAAP8AAH8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AACAAAP8AAAAAAP8AAAAAAP8AAAA +AAP8AAAAAAP8AAAAAAP8AACAAAP8AAP8AEEAQv7+///////////////////////////////////// +////AP/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAC/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ +AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/ABBAEL+/v//////////// +////////////////////////////wD/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////f398MIAwA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAAAAf39/AAAAAAAAf39/f39/f39/f39/AAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAAAAf39/AAAAAAAAf39/f39/f39/f39/AAAAAP8AAP8AAP8AAP8AEEAQv7+/////////// +//////////////////////////////AP///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////9/f3wwgD +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AH9/f39/f/Ly8vLy8n9/f39/f39/fwAAAH +9/fwD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AH9/f39/f/Ly8vLy8n9/f39/f39/fwAA +AH9/fwD/AAD/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAAAAB/f38AAAAAAAA4ODhvb29/f38AAAAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAAAAB/f38AAAAAAAAoKCh/f39/f38AAAAAAAAA/wAA/wAA/wAA/wAQQBC/v7///////// +///////////////////////////////8A//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////39/fDC +AMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////AP//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v/////// +/////////////////////////////////wD////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////f398 +MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+////// +/////////////// +////////////////////AP/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7/////////////////// +/////////////////////8A////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////39/fDCAMAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////AP////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v///////////////// +///////////////////////wD//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////f398MIAwA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+//////////////// +/////////////////////////AP////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////9/f3wwgDAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7////////////// +//////////////////////////8A///////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AEEAQv7+/////////////////////////////////////////AP//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v/////////////////////////// +/////////////wD////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////f398MIAwA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAQQBC/v7////////////////////////////////////////8A/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+////////////////////////// +///////////////AP//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAC/AABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAA +CnAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/ABBAEL+/v////////////////////////////////////////wD///////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAUAAAMAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAIAAASAAAvwAAvwAAvwAAvwAAvwAA +vwAAvwAAvwAAvwAAvwAAvwAAvwAAvwAAvwAAZQAAGAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQ +AAAQAAAQAAAEAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//////////////////////// +////////////////8A/////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////39/fDCAMAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAO8AAL8AAL8AAL8AAL8AAL8AAL8AAL +8AAL8AAL8AAHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAGMAAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAN8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AEEAQv7+/////////////////////////////////////////AP/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAD/A +AD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v////////////////////// +//////////////////wD///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAIAAA/wAAAAAA/wAAAAAA/wAAAAAA/w +AAAAAA/wAAAAAA/wAAfwAA/wAA/wAAfwAAfwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/ +v7////////////////////////////////////////8A///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAP8AAP8AAH8AAH8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+//////////////////////////////////// +/////AP////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////9/f3wwgDAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAE +L+/v////////////////////////////////////////wD/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////f398MIAwA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAfwAAfw +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAA +A/wAAAAAA/wAAAAAA/wAAQAAA/wAA/wAA/wAQQBC/v7////////////////////////////////// +//////8A///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////39/fDCAMAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +IcAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAP8AAP8AAP8AEE +AQv7+/////////////////////////////////////////AP///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////+fn5wQIBBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEB +BAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEAggCAg +gCBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBA +EBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEAcQB7+/v//////////////////////////////// +////////wD/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////Pz8+/v7+/v7+/v7+/v7+/v7+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v79fX19fX1+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7////////////////////////////////////////////8A//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////f39/ +f39////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////AP///////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////0BAQP///wAAAP///wAAA +P///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP/////////////////////////////////////////// +////////////////////39/f39/f///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////wD///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9YWFj +///////////////////////////////////////////////////////////9/f39/f3////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////8A// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////f39/f39//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////AP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////39/f39/f//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////wD +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAD////Hx8e/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v79gYGB/f3////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8A////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv7+/AAAAYGBgQEBAQEBAQEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAz8/P////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +AP/////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAL+/vwAAAP///////////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wD//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////+fn5//// +8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8gICD//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8A////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAA///////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////AP///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wAAAAAAAAAAA +AAAAAAAAAD//wD//wD//wD//wD//wAAAAAAAAAAAAAAAAAAAJ+fn////wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wD////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//8AAAAAAAD/ +//////////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED// +/9AQED/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////8A//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////AP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////wD////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////8AAAD///8AAAD///8AAAB/f3////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////8A/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////f39/X19f// +//AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////AP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////39/f39/f0BAQP///0BAQP///0BAQP///0BAQP///0BAQP/// +0BAQP///0BAQP///0BAQP///0BAQP///1hYWP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wD///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////X19cyMkAwMEAwMEAwMEAwMEAwMEAwMEAYGCAYGCA +wMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAw +MEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwM +EAwMEAwMEAwMEAw +MEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEBUVGD////////////////////// +/////////////////8A////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////n5+fCQlIAAC/AAC/ +AAC/AAC/AAC/AAC/AABfAABfAAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/A +AC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AA +C/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC +/AAC/AAC/AAC/AAAA////////////////////////////////////////AP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAAfwAAfwAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP//////////////////// +///////////////////wD//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+fn58MDGAAAP8AA +P8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAAD///////////////////////////////////////8A///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADnAAD/AABAAAD/AABAA +AD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AACHAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA/////////////////// +/////////////////////AP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////5+fnwwMYAAA/w +AA/wAA/wAA/wAA/wAA/wAAfwAAfwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////wD/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////////////// +//////////////////////8A///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////n5+fDAxgAAD +/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADHAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAAA////////////////////////////////////////AP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAAjwAAfwAAPwAAPwAAfwAAhw +AA9wAA/wAA/wAA/wAA7wADCAAAAAAPMAAMYAAAjwAAvwAA/wAA/wAA/wAA/wAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////// +/////////////// +/////////wD////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAL8 +AACAAAH8AAG8AAGcAAH8AABoAAH0AAL8AANcAAP8AAP8AC3AAi48ANEAAAAAAAAAAAAAAAAAABjAA +DGAAAK8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAAD///////////////////////////////////////8A/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////n5+fDAxgAAD/AAD/AAD/AAC/AAAgAAB/AAB/AAB/AAB/AAAYAAU3AAQYAAAAAA +AAAAAAAA44AAUIALe3ABA4AAD/AADfAAC/AACvAAB/AACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA///////////////////////////// +///////////AP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA +9wAAhwAAfwAAfwAAfwAAfwAAfwAA7wAA/wAA5wAAtwAAfwAPUAAMIAAJEAAECAAArwAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA9wADIAAAzwAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAAP///////////////////////////////////////wD///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAO8AAL8AAO8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8ABI8ACzgAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD/////////////////////////// +////////////8A/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD3AAcYAAWfAAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAAA////////////////////////////////////////AP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAEjwAKGAAA5wAA9wAEcAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP///////////////////////// +//////////////wD///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAPcAChgAD2AABI8A +BggAAK8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAAD///////////////////////////////////////8A////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AASPAAAAAAcQAJ+fAA8wAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA//////////////////////// +////////////////AP/////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA9wALGABweAA6SAAAAAAArwAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAA +P///////////////////////////////////////wD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8ABI8AQUgADzAAEEgADzAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////////////////////////////////// +//8A///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD3AAgYAACfAADfAAMIA +ACvAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +AA////////////////////////////////////////AP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA5wAA/wAA/wAIhwALMAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////////////////////////// +////wD/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +cACDAAAK8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAAD///////////////////////////////////////8A//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADHAAIwAAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA////////////////////////////////// +//////AP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAeAAA5wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAAAP///////////////////////////////////////wD////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAAAAAA +AAAP8AAAAAAAAAAAAAAP8AAP8AAP8AAP8AAP8AAP8AAAD//////////////////////////////// +///////8A//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAAA////////////AAAA////////////AAAAAAD/AAD/AAD/AAD/AAD/AAAA//////// +////////////////////////////////AP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////5+ +fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP//////////////////////////// +///////wAAAAAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////wD//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAAAAAAD///////////////////////////////////8AAAAAAAAAAP8AAP8AAP8AAAD////// +/////////////////////////////////8A////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA////////v7+/////v7+/////v7+/////v7+ +/////////////////AAAAAAD/AAD/AAAA////////////////////////////////////////AP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAAAP///2BgYP///wAAAP///wAAAP///wAAAP///2BgYP///////////wAAAAAA/wAA/wAAAP//// +///////////////////////////////////wD//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////9/f3////9/f3////9/f3////9/ +f3////////////////8AAAAAAP8AAP8AAAD///////////////////////////////////////8A/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAAAAAAA////////////////////////////////////AAAAAAAAAAD/AAD/AAD/AAAA/// +/////////////////////////////////////AP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAA/wAAQAAA/wAAQAA +A/wAAQAAA/wAAQAAA/wAAQAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////////////// +////////////wAAAAAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////w +D//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8A +AJ8AAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AACAAAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAAD///////////8AAAD///////////8AAAAAAP8AAP8AAP8AAP8AAP8AAAD//////////////// +///////////////////////8A//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////n5+fDAxgAA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC +/AAD/AAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAAAAAAAAAD/AAAAAAAAAAAAAAD/A +AD/AAD/AAD/AAD/AAD/AAAA////////////////////////////////////////AP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP////////////// +/////////////////////////wD////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////+fn58MDGA +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAAD///////////////////////////////////////8A/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////v7+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBgg///////////// +///////////////////////////AP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////wD///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8A/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////AA4AAAAUA +AAAAAAAABAAAAAUAAAA +2002-08-11T06:46:41 +2003-12-23T08:42:21 +2002-08-11T11:04:48 +2002-08-11T06:46:41 + + +11 +39 +1 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +0 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +1 +0 +0 + + +0 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + + +2 +0 +0 +2 + + +Visio Network Solutions +
http://officupdate.com/visio/
+ + + +0 +0 +
+
+ + + + + + + + + + + + + + + + +85 +110 +0.125 +-0.125 +1 +10 +0 +3 +0 + + +0 +0 +1 +1 +0 +0 +0 +0 +0 +0 + + +16 +16 +0 +0 +8 +4 +0 +0 +0 +0 + + +Network +255 +0 +1 +1 +0 +0 +1 +1 +Network +0 + + +Connector +255 +0 +1 +1 +0 +0 +1 +1 +Connector +0 + + + + + +56 +95.5 +44 +25 +22 +12.5 +0 +0 +0 +0 + + +2 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +44 +0 + + +44 +25 + + +0 +25 + + +0 +0 + + + + + + +55.5 +56 +44 +28 +22 +14 +0 +0 +0 +0 + + +3 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +44 +0 + + +44 +28 + + +0 +28 + + +0 +0 + + + + + + +44.649372000209 +51.04140625 +5.7390625 +2.0828125 +2.86953125 +1.04140625 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +6.2946180555556 +1.04140625 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + + + +2.86953125 +1.04140625 +5.7390625 +2.0828125 +2.86953125 +1.04140625 +0 +0 +0 +0 + + +0 +0 +5.7390625 +2.0828125 + + +0 + + +0 +0 +0 +0 +0 + + +2.86953125 +-2.4444444444444 +9.3863932301667 +2.4444444444444 +4.6931966150833 +1.2222222222222 +0 + + + + + + +71.13046875 +51.04140625 +5.7390625 +2.0828125 +2.86953125 +1.04140625 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +6.2946180555555 +1.04140625 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + + + +2.86953125 +1.04140625 +5.7390625 +2.0828125 +2.86953125 +1.04140625 +0 +0 +0 +0 + + +0 +0 +5.7390625 +2.0828125 + + +0 + + +0 +0 +0 +0 +0 + + +2.86953125 +-2.4444444444444 +9.3863932301667 +2.4444444444444 +4.6931966150833 +1.2222222222222 +0 + + + + + + +57.188504464286 +64.4234375 +11.0515625 +1.153125 +5.52578125 +0.5765625 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.607118055556 +0.5765625 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +0 +0.5765625 +0 +0 +0 +1 + + + +11.0515625 +0.5765625 +0 +0 +0 +1 + + + +5.52578125 +1.153125 +0 +0 +0 +1 + + + + + +5.52578125 +0.5765625 +11.0515625 +1.153125 +5.52578125 +0.5765625 +0 +0 +0 +0 + + +0 +0 +11.0515625 +1.153125 + + +0 + + +0 +0 +0 +0 +0 + + +5.52578125 +-2.4444444444444 +7.6584201398889 +2.4444444444444 +3.8292100699444 +1.2222222222222 +0 + + + + + + +48.156047607247 +58.245289405617 +7.013351214077 +12.356296188767 +3.5066756070385 +6.1781480943834 +0 +0 +0 +0 + + +44.649372000209 +52.067141311233 +51.662723214286 +64.4234375 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +-1.7763568394003E-15 +9.684823701422 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +4 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +0 +12.356296188767 + + +7.013351214077 +12.356296188767 + + + + + +66.922377232143 +58.245289405617 +8.4161830357143 +-12.356296188767 +4.2080915178572 +-6.1781480943834 +0 +0 +0 +0 + + +62.714285714286 +64.4234375 +71.13046875 +52.067141311233 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +8.4161830357143 +-1.9700565765263 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +5 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +8.4161830357143 +0 + + +8.4161830357143 +-12.356296188767 + + + + + +49.094252232143 +70 +16.188504464286 +-10 +8.0942522321429 +-5 +0 +0 +0 +0 + + +41 +75 +57.188504464286 +65 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +1 +2 +2 + +0 +1 + + +13.094252232143 +0 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +0 +0 + + +16.188504464286 +0 + + +16.188504464286 +-10 + + + + + + +39.407965750209 +89.31796875 +3.778125 +1.3640625 +1.8890625 +0.68203125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +4.3336805555556 +0.68203124999999 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 + +0 +0 + + +1.8890625 +0 +0 +0 +0 +1 + + + +3.778125 +0.68203125 +0 +0 +0 +1 + + + + + +1.8890625 +0.68203125 +3.778125 +1.3640625 +1.8890625 +0.68203125 +0 +0 +0 +0 + + +0 +0 +3.778125 +1.3640625 + + +0 + + +0 +0 +0 +0 +0 + + +1.8890625 +-2.4444444444444 +8.5834418412778 +2.4444444444444 +4.2917209206389 +1.2222222222222 +0 + + + + + + +39.407965750209 +84.310160703144 +2 +8.6515535937115 +1 +4.3257767968557 +0 +0 +0 +0 + + +39.407965750209 +79.984383906289 +39.407965750209 +88.6359375 + + +1 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +1 +0 +0 +2 +2 +0 +2 +2 +2 + +0 +1 + + +1 +4.3257767968557 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +1 +0 +0 +0 + +1 +0 + + +1 +8.6515535937115 + + + + + +46.297028250209 +89.31796875 +10 +2.5 +5 +1.25 +0 +0 +0 +0 + + +41.297028250209 +89.31796875 +51.297028250209 +89.31796875 + + +0 +0 +0 +0 +0 + + +0 + + +5 +-1.2222222222222 +10 +2.4444444444444 +5 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +6.25 +2.5 + + +5.3125 +0.75 + + +10 +1.25 + + +3.75 +0 + + +4.6875 +1.75 + + +0 +1.25 + + + + + +70.94765625 +102.209375 +10.1046875 +7.58125 +5.05234375 +3.790625 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +10.660243055556 +3.790625 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + +0 +0 +0 +0 +0 +1 + + + + + +5.05234375 +3.790625 +10.1046875 +7.58125 +5.05234375 +3.790625 +0 +0 +0 +0 + + +0 +0 +10.1046875 +7.58125 + + +0 + + +0 +0 +0 +0 +0 + + +5.05234375 +-2.4444444444444 +4.0142144107222 +2.4444444444444 +2.0071072053611 +1.2222222222222 +0 + + + + + + +56.802236583542 +88.916666666667 +10.566666666667 +2.1666666666667 +5.2833333333333 +1.0833333333333 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.122222222222 +1.0833333333333 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + + + +5.2833333333333 +1.0833333333333 +10.5203125 +2.121875 +5.26015625 +1.0609375 +0 +0 +0 +0 + + +0 +0 +10.5203125 +2.121875 + + +0 + + +0 +0 +0 +0 +0 + + +5.26015625 +-2.4668402777778 +7.9665798621111 +2.4444444444444 +3.9832899310556 +1.2222222222222 +0 + + + + + + +62.654764125104 +94.209375 +10.624498418403 +2.5 +5.3122492092017 +1.25 +0.9147175961819 +0 +0 +0 + + +59.414215750209 +90 +65.8953125 +98.41875 + + +0 +0 +0 +0 +0 + + +0 + + +5.3122492092017 +-1.2222222222222 +10.624498418403 +2.4444444444444 +5.3122492092017 +1.2222222222222 +0 + + +0 +0 +0 +0 + +0 +1.25 + + +6.5622492092017 +2.5 + + +5.6247492092017 +0.75 + + +10.624498418403 +1.25 + + +4.0622492092017 +0 + + +4.9997492092017 +1.75 + + +0 +1.25 + + + + + +69.5 +68.5 +16 +3 +8 +1.5 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +16 +0 + + +16 +3 + + +0 +3 + + +0 +0 + + +LOCAL ZONE + + + +46.055555555556 +105 +20.111111111111 +3.2146464646465 +10.055555555556 +1.6073232323232 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +20.111111111111 +0 + + +20.111111111111 +3.2146464646465 + + +0 +3.2146464646465 + + +0 +0 + + +NET ZONE + + + +44.944444444444 +47.81746031746 +10.111111111111 +1.7777777777778 +5.0555555555556 +0.88888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +10.111111111111 +0 + + +10.111111111111 +1.7777777777778 + + +0 +1.7777777777778 + + +0 +0 + + +Computer 1 +10.10.10.1 + + + +71.142857142857 +47.81746031746 +12 +1.7777777777778 +6 +0.88888888888889 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +12 +0 + + +12 +1.7777777777778 + + +0 +1.7777777777778 + + +0 +0 + + +Computer 2 +10.10.10.2 + + + +57 +85.75 +14 +3.5 +7 +1.75 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +14 +0 + + +14 +3.5 + + +0 +3.5 + + +0 +0 + + +ISP’s Router + + + +70.5 +102.5 +9 +2.5 +4.5 +1.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +9 +0 + + +9 +2.5 + + +0 +2.5 + + +0 +0 + + +Internet + + + +50.5 +66.25 +11 +2.5 +5.5 +1.25 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +11 +0 + + +11 +2.5 + + +0 +2.5 + + +0 +0 + + +Hub/Switch + + + +40.071428571429 +72 +14 +2 +7 +1 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +14 +0 + + +14 +2 + + +0 +2 + + +0 +0 + + +Firewall/Router + + + +46.428571428571 +81.571428571429 +16 +2 +8 +1 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +16 +0 + + +16 +2 + + +0 +2 + + +0 +0 + + +External Interface + + + +49.5 +77.138575768849 +16 +4.2771515376984 +8 +2.1385757688492 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 + + +0 +0 +0 +0 + +0 +0 + + +16 +0 + + +16 +4.2771515376984 + + +0 +4.2771515376984 + + +0 +0 + + +Internal Interface +10.10.10.254 + + + +37.5 +77.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 + + +0 +0 +0 +0 +0 + + +11.753993055556 +3.68125 +1.1111111111111 +2.4444444444444 +0.55555555555556 +1.2222222222222 +0 + + + + +5.59921875 +3.68125 +11.1984375 +7.3625 +5.59921875 +3.68125 +0 +0 +0 +0 + + +0 +0 +11.1984375 +7.3625 + + +0 + + +0 +0 +0 +0 +0 + + +5.59921875 +-2.4444444444444 +10.064019098222 +2.4444444444444 +5.0320095491111 +1.2222222222222 +0 + + + + + + + + + + + + + + + + + + + +1 +1 +0 +1 +1 +11 +39 +1 +0 +0.33 + + +10 +0 + + +10 +1 + + +10 +2 + + +10 +3 + + +10 +4 + + +10 +5 + + +10 +6 + + +
\ No newline at end of file diff --git a/Shorewall-docsN/images/basics1.vsd b/Shorewall-docsN/images/basics1.vsd new file mode 100644 index 000000000..84182f7b4 Binary files /dev/null and b/Shorewall-docsN/images/basics1.vsd differ diff --git a/Shorewall-docsN/images/basics2.png b/Shorewall-docsN/images/basics2.png new file mode 100755 index 000000000..60a2f18e5 Binary files /dev/null and b/Shorewall-docsN/images/basics2.png differ diff --git a/Shorewall-docsN/images/basics2.vdx b/Shorewall-docsN/images/basics2.vdx new file mode 100755 index 000000000..6d4d3d29d --- /dev/null +++ b/Shorewall-docsN/images/basics2.vdx @@ -0,0 +1,11212 @@ + + + + + +dmz1 +teastep + +Hewlett Packard Company +671351309 +671351309 + +AQAAAIwAAAAAAAAAAAAAAHwAAAChAAAAAAAAAAAAAAAcDAAAvQ4AACBFTUYAAAEAHO8AAAMAAAABA +AAADwAAAGwAAAAAAAAAAAUAAAAEAABAAQAA8AAAAAAAAAAAAAAAAAAAAADiBACAqQMAVgBJAFMASQ +BPAAAARAByAGEAdwBpAG4AZwAAAAAAAABMAAAAfO4AAAAAAAAAAAAAfAAAAKEAAAAAAAAAAAAAAH0 +AAACiAAAAIADMAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAA////AAAAAABkAAAAKAAA +AIwAAADw7QAAKAAAAH0AAACiAAAAAQAYAAAAAADw7QAAAAAAAAAAAAAAAAAAAAAAAP/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////wD///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////8A////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////AP/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////wD//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////8A////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////AP////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////wD//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////8A//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////AP///////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////wD////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////8A//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////AP//////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////wD////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////8A/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////AP//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////wD//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////8A////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////AP////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////wD//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////8A///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////AP////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////wD/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////8A///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////AP//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/wD////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////8A/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///AP//////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////wD///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////8A/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////AP/////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////wD///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +//////////////////////////////8A///////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////AP///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////wD/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////8A//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////AP///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////wD// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////8A//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////AP +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////wD////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////8A////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////AP/////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////wD//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////8A////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////AP////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////wD//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////8A///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////AP////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////wD////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////8A//////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////AP//////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////wD////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////8A/////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////AP//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////wD///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////8A/////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////AP////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////wD//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////8A///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////AP////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////wD/////////////////////////// +96h3owQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDA +wQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAw +QDAwQDAwQDAwQDAwQDCxt7H////////////n5+c6SDowQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQ +DAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQD +AwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDA +wQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDAwQDA6SDrn5+f///////////////////////////// +//////////8A////////////////////////////FCAUAKcAAL8AAL8AAL8AAL8AAL8AAL8AAL8AA +L8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL +8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAHgAVGBU////////////v7+ +/DDAMAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8A +AL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AA +L8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL +8ADDAMv7+/////////////////////////////////////////AP///////////////////////// +//xQgFADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AACfAFRgVP///////////7+/vxBAEAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v//////////////////////////// +////////////wD///////////////////////////8UIBQA3wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBUYFT///////////+/ +v78QQBAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//// +////////////////////////////////////8A////////////////////////////FCAUAN8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAJ8AVGBU////////////v7+/EEAQAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////A +P///////////////////////////xQgFADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD +/AAAAAAD/AADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////7+/vxBAEAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v// +//////////////////////////////////////wD///////////////////////////8UIBQA3wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAAvwAA/wAAvwAA/wAAvwAA/wAAvwAA/wAAvwAA/wAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAAnwBUYFT///////////+/v78QQBAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//////////////////////////////////////// +8A////////////////////////////FCAUAN8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAA +AP8AAEAAAP8AAHAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ8AVGBU////////////v7+/EEAQAP8AA +P8AAP8AAP8AAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAFgAAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAP8AAP8AEEAQv7+/ +////////////////////////////////////////AP///////////////////////////xQgFADfA +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AACfAFRgVP///////////7+/vxBAEAD/AAD/AAD/AAD/AABgAAD/AAAAAAD/AAAAAAD/AAAA +AAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AAAAAAD/AAAAAAD/AAAAAA +D/AAAAAAD/AAAAAAD/AAC/AAD/AAD/ABBAEL+/v////////////////////////////////////// +//wD///////////////////////////8UIBQA3wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBUYFT///////////+/v78QQBAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v +7////////////////////////////////////////8A////////////////////////////FCAUAN +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAAAAAAAAAAAAAAAAAAAAAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAJ8AVGBU////////////v7+/EEAQAP8AAP8AAP8AAP8AAAAAAP8AAAAAAP8AAAAAAP8AA +AAAAP8AAAAAAP8AAAAAAP8AAH8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AACAAAP8AAAAAAP8AAAAAAP8AAAA +AAP8AAAAAAP8AAAAAAP8AACAAAP8AAP8AEEAQv7+///////////////////////////////////// +////AP///////////////////////////xQgFADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////7+/vxBAEAD +/AAD/AAD/AAC/AAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ +AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAAAAAD/AAD/AAD/ABBAEL+/v//////////// +////////////////////////////wD///////////////////////////8UIBQA3wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAAAAA +AAAAAAAAAAAAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBU +YFT///////////+/v78QQBAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A//////// +////////////////////FCAUAN8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAAAA8vLy8vLyAAAAAAAAAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ8AVGBU////////////v7+/EEAQAP8AAP8AAP8AAP8 +AAP8AAAAAf39/AAAAAAAAf39/f39/f39/f39/AAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAAAAf39/AAAAAAAAf39/f39/f39/f39/AAAAAP8AAP8AAP8AAP8AEEAQv7+/////////// +//////////////////////////////AP///////////////////////////xQgFADfAAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAAA +APLy8vLy8gAAAAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfA +FRgVP///////////7+/vxBAEAD/AAD/AAD/AAD/AAD/AH9/f39/f/Ly8vLy8n9/f39/f39/fwAAAH +9/fwD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AH9/f39/f/Ly8vLy8n9/f39/f39/fwAA +AH9/fwD/AAD/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD////// +/////////////////////8UIBQA3wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAAAAAAAAAAAAAAAAAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBUYFT///////////+/v78QQBAA/wAA/wAA/wAA +/wAA/wAAAAB/f38AAAAAAAA4ODhvb29/f38AAAAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAAAAB/f38AAAAAAAAoKCh/f39/f38AAAAAAAAA/wAA/wAA/wAA/wAQQBC/v7///////// +///////////////////////////////8A////////////////////////////FCAUAN8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ +8AVGBU////////////v7+/EEAQAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////AP//// +///////////////////////xQgFADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////7+/vxBAEAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v/////// +/////////////////////////////////wD///////////////////////////8UIBQA3wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +AnwBUYFT///////////+/v78QQBAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A/// +/////////////////////////FCAUAN8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ8AVGBU////////////v7+/EEAQAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+////// +/////////////// +////////////////////AP///////////////////////////xQgFADfAAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///// +//////7+/vxBAEAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD//////////////// +///////////8UIBQA3wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBUYFT///////////+/v78QQBAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7/////////////////// +/////////////////////8A////////////////////////////FCAUAN8AAP8AAL8AAP8AAAAAAP +8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ8AVGBU//// +////////v7+/EEAQAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AEEAQv7+/////////////////////////////////////////AP////////////// +/////////////xQgFADfAAD/AAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////7+/vxBAEAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v///////////////// +///////////////////////wD///////////////////////////8UIBQA3wAA/wAAxwAA/wAAvwA +A/wAAvwAA/wAAvwAA/wAAvwAA/wAAvwAA/wAAxwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBUYFT// +/////////+/v78QQBAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAQQBC/v7////////////////////////////////////////8A///////////// +///////////////FCAUAN8AAP8AAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ8AVGBU////////////v7+/EEAQAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+//////////////// +/////////////////////////AP///////////////////////////xQgFADfAAD/AABYAAD/AABA +AAD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AABYAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP +///////////7+/vxBAEAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/ABBAEL+/v////////////////////////////////////////wD/////////// +////////////////8UIBQA3wAA/wAA/wAA/wAA/wAAAAAAAAAAAAAAAAAAAAAAAAAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBUYFT///////////+/v78QQBAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7////////////// +//////////////////////////8A////////////////////////////FCAUAN8AAP8AAP8AAAAAA +AAAAAAAAAAAAAAA +AAAAAAAAAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ8AVGBU////////////v7 ++/EEAQAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AEEAQv7+/////////////////////////////////////////AP//////////////////////// +///xQgFADfAAD/AAD/AAAAAAAAAAAAAAAAAAAAAAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AACfAFRgVP///////////7+/vxBAEAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v/////////////////////////// +/////////////wD///////////////////////////8UIBQA3wAA/wAA/wAAAAAAAADy8vLy8vIAA +AAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBUYFT///////////+ +/v78QQBAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAAvwAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAQQBC/v7////////////////////////////////////////8A/////////////////////// +/////FCAUAN8AAP8AAP8AAAAAAAAA8vLy8vLyAAAAAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAJ8AVGBU////////////v7+/EEAQAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAEAAAL8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAAAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+////////////////////////// +///////////////AP///////////////////////////xQgFADfAAD/AAD/AAD/AAAAAAAAAAAAAA +AAAAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP////////// +/7+/vxBAEAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AABAAAC/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAC/AABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAABAAA +CnAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/ABBAEL+/v////////////////////////////////////////wD///////////////////// +//////8UIBQA3wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAAnwBUYFT///////////+/v78QQBAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAUAAAMAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAIAAASAAAvwAAvwAAvwAAvwAAvwAA +vwAAvwAAvwAAvwAAvwAAvwAAvwAAvwAAvwAAZQAAGAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQAAAQ +AAAQAAAQAAAEAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/v7//////////////////////// +////////////////8A////////////////////////////FCAUAN8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ8AVGBU///////// +///v7+/EEAQAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAO8AAL8AAL8AAL8AAL8AAL8AAL8AAL +8AAL8AAL8AAHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAGMAAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAL8AAN8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AEEAQv7+/////////////////////////////////////////AP/////////////////// +////////xQgFADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////7+/vxBAEAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAB/AAD/AAD/A +AD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAEL+/v////////////////////// +//////////////////wD///////////////////////////8UIBQA3wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAnwBUYFT///////////+/v78QQBAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAIAAA/wAAAAAA/wAAAAAA/wAAAAAA/w +AAAAAA/wAAAAAA/wAAfwAA/wAA/wAAfwAAfwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAQQBC/ +v7////////////////////////////////////////8A////////////////////////////FCAUA +N8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAJ8AVGBU////////////v7+/EEAQAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAH8AAP8AAP8AAP8AAH8AAH8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AEEAQv7+//////////////////////////////////// +/////AP///////////////////////////xQgFADfAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AACfAFRgVP///////////7+/vxBAEA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ABBAE +L+/v////////////////////////////////////////wD///////////////////////////8UIB +QA3wAA/wAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wA +AAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAAnwBUYFT///////////+/v78QQBAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAfwAAfw +AA/wAA/wAAIAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAA +A/wAAAAAA/wAAAAAA/wAAAAAA/wAAvwAA/wAQQBC/v7////////////////////////////////// +//////8A////////////////////////////FCAUAN8AAP8AAP8AAP8AAEAAAP8AAEAAAP8AAEAAA +P8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAE +AAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAJ8AVGBU////////////v7+/EEA +QAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AAP8AAEAAAP8AAEAAAP8AAEAAAP8AA +EAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAEAAAP8AAP8AEE +AQv7+/////////////////////////////////////////AP///////////////////////////x0 +oHQ44DhBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBA +EBBAEAwwDAgiCA46DhBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAE +BBAEBBAEBBAEAooCl5oXv///////////7+/vwcQBxBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEB +BAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEAggCAg +gCBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBA +EBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEBBAEAcQB7+/v//////////////////////////////// +////////wD////////////////////////////f39+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+zs7NRVVUFBgY0Pj59fX2/v7+/v7+/v7+ +/v78TGRlHUFCnp6e/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7/v7+////////////////+/ +v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v +7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v79fX19fX1+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7 ++/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7////////////////////////////////////////////8A//////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////5+fnd39/ChAQEBgYXmho19fX////ITAwAHBwAwgISlhYz8/P////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////f39/ +f39////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////AP///////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+/v74OHhw0YGAAA +ACg4OCswMACHhwAAAAAAAAAAADhISL+/v////////////////////////0BAQP///wAAAP///wAAA +P///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP/////////////////////////////////////////// +////////////////////39/f39/f///////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////wD///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////39/eXl5cUICAAAAAAh4cMICC/v7+Dh4cUICAAAAAoODivr6//////////// +////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9YWFj +///////////////////////////////////////////////////////////9/f39/f3////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////8A// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////n5+fITAw +AwgIr6+v////////x8fHVGBgCxAQHygon5+f///////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////f39/f39//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////AP/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////6+vr+/v7/////////////////f395+fn0FISEB +AQP////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////39/f39/f//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////wD +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAD////Hx8e/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+ +/v7+/v7+/v7+/v7+/v7+/v79gYGB/f3////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////8A////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/v7+/////v7+/////v7+/////v7+/////v7+/////v7+/////v7+///////////////////////// +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv7+/AAAAYGBgQEBAQEBAQEBAQEBAQEBAQEBAQ +EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAz8/P////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +AP/////////////////////////////////////////////////////////////////////////// +////////////////////////////////////2BgYP///wAAAP///wAAAP///wAAAP///wAAAP///w +AAAP///wAAAP///2BgYP///////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAL+/vwAAAP///////////////////////wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAA +AP///wAAAP/////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////wD//////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//9/f3////9/f3////9/f3////9/f3////9/f3////9/f3////9/f3/////////////////////// +/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////+fn5//// +8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8gICD//////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/8A////////////////////////////////////////////////////////////////////////// +//////////////////////////////f39/////f39/////f39/////f39/////f39/////f39//// +/f39/////f39/////f39/////f39/////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAA///////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////AP///////////////////////////////////////////////// +//////////////////////////////////////////////////7+/v////wAAAP///wAAAP///wAA +AP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///7+/v////////wAAAAAAAAAAA +AAAAAAAAAD//wD//wD//wD//wD//wAAAAAAAAAAAAAAAAAAAJ+fn////wAAAP///wAAAP///wAAAP +///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///wAAAP///////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////wD////////// +///////////////////////////////////////////////////////////////////////////// +////////////////9/f3////9/f3////9/f3////9/f3////9/f3////9/f3////9/f3////9/f3/ +///9/f3////9/f3////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//8AAAAAAAD/ +//////////////9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED///9AQED// +/9AQED/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////8A//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////AP//////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////wD////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////8AAAD///8AAAD///8AAAB/f3////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////8A/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////f39/X19f// +//AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA////AAAA/////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////AP//////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////39/f39/f0BAQP///0BAQP///0BAQP///0BAQP///0BAQP/// +0BAQP///0BAQP///0BAQP///0BAQP///1hYWP//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////wD///// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////X19cyMkAwMEAwMEAwMEAwMEAwMEAwMEAYGCAYGCA +wMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAw +MEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwM +EAwMEAwMEAwMEAw +MEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEAwMEBUVGD////////////////////// +/////////////////8A////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////n5+fCQlIAAC/AAC/ +AAC/AAC/AAC/AAC/AABfAABfAAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/A +AC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AA +C/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC/AAC +/AAC/AAC/AAC/AAAA////////////////////////////////////////AP////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAAfwAAfwAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP//////////////////// +///////////////////wD//////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////+fn58MDGAAAP8AA +P8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAAD///////////////////////////////////////8A///////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADnAAD/AABAAAD/AABAA +AD/AABAAAD/AABAAAD/AABAAAD/AABAAAD/AACHAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA/////////////////// +/////////////////////AP////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////5+fnwwMYAAA/w +AA/wAA/wAA/wAA/wAA/wAAfwAAfwAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA/wAAAAAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////wD/////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAH8AAH8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////////////// +//////////////////////8A///////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////n5+fDAxgAAD +/AAD/AAD/AAD/AAD/AAD/AAB/AAB/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADHAAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAAA////////////////////////////////////////AP///////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAAjwAAfwAAPwAAPwAAfwAAhw +AA9wAA/wAA/wAA/wAA7wADCAAAAAAPMAAMYAAAjwAAvwAA/wAA/wAA/wAA/wAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////// +/////////////// +/////////wD////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAL8 +AACAAAH8AAG8AAGcAAH8AABoAAH0AAL8AANcAAP8AAP8AC3AAi48ANEAAAAAAAAAAAAAAAAAABjAA +DGAAAK8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAAD///////////////////////////////////////8A/////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////n5+fDAxgAAD/AAD/AAD/AAC/AAAgAAB/AAB/AAB/AAB/AAAYAAU3AAQYAAAAAA +AAAAAAAA44AAUIALe3ABA4AAD/AADfAAC/AACvAAB/AACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA///////////////////////////// +///////////AP//////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA +9wAAhwAAfwAAfwAAfwAAfwAAfwAA7wAA/wAA5wAAtwAAfwAPUAAMIAAJEAAECAAArwAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA9wADIAAAzwAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAAP///////////////////////////////////////wD///////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAO8AAL8AAO8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8ABI8ACzgAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD/////////////////////////// +////////////8A/////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD3AAcYAAWfAAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAAA////////////////////////////////////////AP/////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAEjwAKGAAA5wAA9wAEcAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP///////////////////////// +//////////////wD///////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAPcAChgAD2AABI8A +BggAAK8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAAD///////////////////////////////////////8A////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AASPAAAAAAcQAJ+fAA8wAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA//////////////////////// +////////////////AP/////////////////////////////////////////////////////////// +/////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA9wALGABweAA6SAAAAAAArwAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAA +P///////////////////////////////////////wD/////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8ABI8AQUgADzAAEEgADzAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////////////////////////////////// +//8A///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD3AAgYAACfAADfAAMIA +ACvAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +AA////////////////////////////////////////AP///////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA5wAA/wAA/wAIhwALMAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////////////////////////// +////wD/////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +cACDAAAK8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAAD///////////////////////////////////////8A//////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AADHAAIwAAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA////////////////////////////////// +//////AP///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAAeAAA5wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAAAP///////////////////////////////////////wD////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAAAAAAAAA +AAAP8AAAAAAAAAAAAAAP8AAP8AAP8AAP8AAP8AAP8AAAD//////////////////////////////// +///////8A//////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////// +////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD +/AAD/AAD/AAAA////////////AAAA////////////AAAAAAD/AAD/AAD/AAD/AAD/AAAA//////// +////////////////////////////////AP/////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////5+ +fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP//////////////////////////// +///////wAAAAAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////wD//// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAAAAAAD///////////////////////////////////8AAAAAAAAAAP8AAP8AAP8AAAD////// +/////////////////////////////////8A////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAA////////v7+/////v7+/////v7+/////v7+ +/////////////////AAAAAAD/AAD/AAAA////////////////////////////////////////AP// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAAAP///2BgYP///wAAAP///wAAAP///wAAAP///2BgYP///////////wAAAAAA/wAA/wAAAP//// +///////////////////////////////////wD//////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8 +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAAD///////9/f3////9/f3////9/f3////9/ +f3////////////////8AAAAAAP8AAP8AAAD///////////////////////////////////////8A/ +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////n5+fDAxgAAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/A +AD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AA +D/AAD/AAAAAAAA////////////////////////////////////AAAAAAAAAAD/AAD/AAD/AAAA/// +/////////////////////////////////////AP////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAQAAA/wAAQAAA/wAAQAA +A/wAAQAAA/wAAQAAA/wAAQAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA +/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP/////////////////////// +////////////wAAAAAA/wAA/wAA/wAA/wAAAP///////////////////////////////////////w +D//////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////+fn58MDGAAAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8A +AJ8AAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AAAAAAP8AACAAAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAAD///////////8AAAD///////////8AAAAAAP8AAP8AAP8AAP8AAP8AAAD//////////////// +///////////////////////8A//////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////n5+fDAxgAA +D/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC/AAD/AAC +/AAD/AAC/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/ +AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAAAAAAAAAAAAAD/AAAAAAAAAAAAAAD/A +AD/AAD/AAD/AAD/AAD/AAAA////////////////////////////////////////AP//////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +/////////////////////////////5+fnwwMYAAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/ +wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/w +AA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wA +A/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAA/wAAAP////////////// +/////////////////////////wD////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////+fn58MDGA +AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8A +AP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AA +P8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP8AAP +8AAP8AAP8AAP8AAP8AAP8AAAD///////////////////////////////////////8A/////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////v7+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBgg///////////// +///////////////////////////AP//////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////wD///////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////8A/////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////AA4AAAAUA +AAAAAAAABAAAAAUAAAA +2002-08-11T06:46:41 +2004-02-08T09:21:37 +2004-02-08T09:20:16 +2002-08-11T06:46:41 + + +11 +39 +1 +0 +0 +0 +0 +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +0 +0 +0 +0 +1 +1 +1 +0.25 +0.25 +0.25 +0.25 + + + + + + + + + + + + +1 +1 +1 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +1 +0 +0.5 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +0 +0 +0 +0 +0 + + + + + + + + + +32 +32 +0 +0 +8 +8 +0 +0 +0 +0 + + +1 +0.5 +0.5 +0 +0 +0 +0 + + +1 +2 +0 +1 +1 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0 +0 +1 +0 +0 +0 +0.125 +0.125 +0.25 +0.25 +0.375 +0.375 +0.125 +0.125 +0.66666666666667 +0.66666666666667 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 +0 +0 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + + + +1 +1 +1 +0 + + +0.01 +0 +0 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + + + +1 +1 +1 +0 + + +0 +4 +23 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +0 +0 +1 +0 +0 +0 +0 +0 + + +0.055555555555556 +0.055555555555556 +0 +0 +2 +0 +0.5 +0 +0 + + +0 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + +0 +0 + + +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 + + +0 +4 + +0 +0 +1 +0 +0.125 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +1 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +1 +0 +0 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +1 +0 +0 + + +0 +0 +1 +0 +1 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + + + +1 +0 +0 +0 + + +0.01 +1 +1 +0 +2 +0 +0 +0 +2 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +1 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + +0 +0 +1 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +0 +0 +0.5 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +0 +0 + + + +2 +0 + +0 +0 +1 +0 +0.13888888888889 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +2 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + + + +1 +1 +1 +0 + + +0.0033333333333333 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0.055555555555556 +0.055555555555556 +0.055555555555556 +0.055555555555556 +1 +0 +0.5 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.11111111111111 +0 +0 +0 +0 +0 +0 + + +0 +0 +0 +-1.2 +0 +0 +1 +0 + + + + + + +1 +1 +1 +1 + + +0.01 +0 +1 +0 +2 +0 +0 +0 +2 +0 + + +0 +1 +1 +0 +1 +0 +0 +0 +0 +0 + + +0 +0 + +0 +0 +1 +0 +0.16666666666667 +0 +0 +0 +0 +0 +0 + + + + + +2 +0 +0 +2 + + +Visio Network Solutions +
http://officupdate.com/visio/
+ + + +0 +0 +
+
+ +