diff --git a/.gitignore b/.gitignore index 71b675cd..c07b723e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ [Dd]ebug/ [Rr]elease/ **/__vm/ +.DS_Store diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index efc06aff..00000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "Electrical/kicad-libs/kicad-symbols"] - path = Electrical/kicad-libs/kicad-symbols - url = https://github.com/kicad/kicad-symbols diff --git a/Code/Arduino/AmsToMqttBridge/AmsToMqttBridge.ino b/Arduino Code/AmsToMqttBridge/AmsToMqttBridge.ino similarity index 100% rename from Code/Arduino/AmsToMqttBridge/AmsToMqttBridge.ino rename to Arduino Code/AmsToMqttBridge/AmsToMqttBridge.ino diff --git a/Code/Arduino/AmsToMqttBridge/AmsToMqttBridge.sln b/Arduino Code/AmsToMqttBridge/AmsToMqttBridge.sln similarity index 100% rename from Code/Arduino/AmsToMqttBridge/AmsToMqttBridge.sln rename to Arduino Code/AmsToMqttBridge/AmsToMqttBridge.sln diff --git a/Code/Arduino/AmsToMqttBridge/AmsToMqttBridge.vcxproj b/Arduino Code/AmsToMqttBridge/AmsToMqttBridge.vcxproj similarity index 100% rename from Code/Arduino/AmsToMqttBridge/AmsToMqttBridge.vcxproj rename to Arduino Code/AmsToMqttBridge/AmsToMqttBridge.vcxproj diff --git a/Code/Arduino/AmsToMqttBridge/AmsToMqttBridge.vcxproj.filters b/Arduino Code/AmsToMqttBridge/AmsToMqttBridge.vcxproj.filters similarity index 100% rename from Code/Arduino/AmsToMqttBridge/AmsToMqttBridge.vcxproj.filters rename to Arduino Code/AmsToMqttBridge/AmsToMqttBridge.vcxproj.filters diff --git a/Code/Arduino/AmsToMqttBridge/accesspoint.cpp b/Arduino Code/AmsToMqttBridge/accesspoint.cpp similarity index 98% rename from Code/Arduino/AmsToMqttBridge/accesspoint.cpp rename to Arduino Code/AmsToMqttBridge/accesspoint.cpp index 711f02aa..f1fe2723 100644 --- a/Code/Arduino/AmsToMqttBridge/accesspoint.cpp +++ b/Arduino Code/AmsToMqttBridge/accesspoint.cpp @@ -97,8 +97,8 @@ void accesspoint::handleRoot() { server.send(200, "text/html", ""); // Empty content inhibits Content-length header so we have to close the socket ourselves. String html = String("\r\n\r\n\r\n\t\r\n\r\n\r\n\r\n\t
\r\n\r\n\t\t
\r\n\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t

WiFi

\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t

Meter Type

\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t

MQTT

\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t
\r\n\t
\r\n\r\n\t\r\n\r\n"); server.sendContent(html); - server.sendContent(""); - server.client().stop(); // Stop is needed because we sent no content length + server.sendContent(""); // (End 1/2) Sending a zero length chunk to terminate session + server.client().stop(); // (End 2/2) Stop is needed because we sent no content length } diff --git a/Code/Arduino/AmsToMqttBridge/accesspoint.h b/Arduino Code/AmsToMqttBridge/accesspoint.h similarity index 100% rename from Code/Arduino/AmsToMqttBridge/accesspoint.h rename to Arduino Code/AmsToMqttBridge/accesspoint.h diff --git a/Code/Arduino/AmsToMqttBridge/configuration.cpp b/Arduino Code/AmsToMqttBridge/configuration.cpp similarity index 100% rename from Code/Arduino/AmsToMqttBridge/configuration.cpp rename to Arduino Code/AmsToMqttBridge/configuration.cpp diff --git a/Code/Arduino/AmsToMqttBridge/configuration.h b/Arduino Code/AmsToMqttBridge/configuration.h similarity index 100% rename from Code/Arduino/AmsToMqttBridge/configuration.h rename to Arduino Code/AmsToMqttBridge/configuration.h diff --git a/Code/Arduino/HanReader/HanReader.sln b/Arduino Code/Arduino Libraries/HanReader/HanReader.sln similarity index 100% rename from Code/Arduino/HanReader/HanReader.sln rename to Arduino Code/Arduino Libraries/HanReader/HanReader.sln diff --git a/Code/Arduino/HanReader/HanReader.vcxitems b/Arduino Code/Arduino Libraries/HanReader/HanReader.vcxitems similarity index 100% rename from Code/Arduino/HanReader/HanReader.vcxitems rename to Arduino Code/Arduino Libraries/HanReader/HanReader.vcxitems diff --git a/Code/Arduino/HanReader/HanReader.vcxitems.filters b/Arduino Code/Arduino Libraries/HanReader/HanReader.vcxitems.filters similarity index 100% rename from Code/Arduino/HanReader/HanReader.vcxitems.filters rename to Arduino Code/Arduino Libraries/HanReader/HanReader.vcxitems.filters diff --git a/Code/Arduino/HanReader/examples/Kamstrup/mqtt/KamstrupMqtt.ino b/Arduino Code/Arduino Libraries/HanReader/examples/Kamstrup/mqtt/KamstrupMqtt.ino similarity index 100% rename from Code/Arduino/HanReader/examples/Kamstrup/mqtt/KamstrupMqtt.ino rename to Arduino Code/Arduino Libraries/HanReader/examples/Kamstrup/mqtt/KamstrupMqtt.ino diff --git a/Code/Arduino/HanReader/examples/Kamstrup/mqtt/README.md b/Arduino Code/Arduino Libraries/HanReader/examples/Kamstrup/mqtt/README.md similarity index 100% rename from Code/Arduino/HanReader/examples/Kamstrup/mqtt/README.md rename to Arduino Code/Arduino Libraries/HanReader/examples/Kamstrup/mqtt/README.md diff --git a/Code/Arduino/HanReader/examples/read_han_simple/read_han_simple.ino b/Arduino Code/Arduino Libraries/HanReader/examples/read_han_simple/read_han_simple.ino similarity index 100% rename from Code/Arduino/HanReader/examples/read_han_simple/read_han_simple.ino rename to Arduino Code/Arduino Libraries/HanReader/examples/read_han_simple/read_han_simple.ino diff --git a/Code/Arduino/HanReader/examples/reporting_han_data_to_mqtt/reporting_han_data_to_mqtt.ino b/Arduino Code/Arduino Libraries/HanReader/examples/reporting_han_data_to_mqtt/reporting_han_data_to_mqtt.ino similarity index 100% rename from Code/Arduino/HanReader/examples/reporting_han_data_to_mqtt/reporting_han_data_to_mqtt.ino rename to Arduino Code/Arduino Libraries/HanReader/examples/reporting_han_data_to_mqtt/reporting_han_data_to_mqtt.ino diff --git a/Code/Arduino/HanReader/keywords.txt b/Arduino Code/Arduino Libraries/HanReader/keywords.txt similarity index 100% rename from Code/Arduino/HanReader/keywords.txt rename to Arduino Code/Arduino Libraries/HanReader/keywords.txt diff --git a/Arduino Code/Arduino Libraries/HanReader/library.properties b/Arduino Code/Arduino Libraries/HanReader/library.properties new file mode 100644 index 00000000..80866f62 --- /dev/null +++ b/Arduino Code/Arduino Libraries/HanReader/library.properties @@ -0,0 +1,9 @@ +name=HANreader +version=1.0.0 +author=roarfred +maintainer=roarfred +sentence=HAN support +paragraph=HAN support +category=Sensors +url=https://github.com/roarfred/AmsToMqttBridge +architectures=* diff --git a/Code/Arduino/HanReader/readme.txt b/Arduino Code/Arduino Libraries/HanReader/readme.txt similarity index 100% rename from Code/Arduino/HanReader/readme.txt rename to Arduino Code/Arduino Libraries/HanReader/readme.txt diff --git a/Code/Arduino/HanReader/src/Crc16.cpp b/Arduino Code/Arduino Libraries/HanReader/src/Crc16.cpp similarity index 100% rename from Code/Arduino/HanReader/src/Crc16.cpp rename to Arduino Code/Arduino Libraries/HanReader/src/Crc16.cpp diff --git a/Code/Arduino/HanReader/src/Crc16.h b/Arduino Code/Arduino Libraries/HanReader/src/Crc16.h similarity index 100% rename from Code/Arduino/HanReader/src/Crc16.h rename to Arduino Code/Arduino Libraries/HanReader/src/Crc16.h diff --git a/Code/Arduino/HanReader/src/DlmsReader.cpp b/Arduino Code/Arduino Libraries/HanReader/src/DlmsReader.cpp similarity index 100% rename from Code/Arduino/HanReader/src/DlmsReader.cpp rename to Arduino Code/Arduino Libraries/HanReader/src/DlmsReader.cpp diff --git a/Code/Arduino/HanReader/src/DlmsReader.h b/Arduino Code/Arduino Libraries/HanReader/src/DlmsReader.h similarity index 100% rename from Code/Arduino/HanReader/src/DlmsReader.h rename to Arduino Code/Arduino Libraries/HanReader/src/DlmsReader.h diff --git a/Code/Arduino/HanReader/src/HanReader.cpp b/Arduino Code/Arduino Libraries/HanReader/src/HanReader.cpp similarity index 100% rename from Code/Arduino/HanReader/src/HanReader.cpp rename to Arduino Code/Arduino Libraries/HanReader/src/HanReader.cpp diff --git a/Code/Arduino/HanReader/src/HanReader.h b/Arduino Code/Arduino Libraries/HanReader/src/HanReader.h similarity index 100% rename from Code/Arduino/HanReader/src/HanReader.h rename to Arduino Code/Arduino Libraries/HanReader/src/HanReader.h diff --git a/Code/Arduino/HanReader/src/Kaifa.h b/Arduino Code/Arduino Libraries/HanReader/src/Kaifa.h similarity index 100% rename from Code/Arduino/HanReader/src/Kaifa.h rename to Arduino Code/Arduino Libraries/HanReader/src/Kaifa.h diff --git a/Code/Arduino/HanReader/src/Kamstrup.h b/Arduino Code/Arduino Libraries/HanReader/src/Kamstrup.h similarity index 100% rename from Code/Arduino/HanReader/src/Kamstrup.h rename to Arduino Code/Arduino Libraries/HanReader/src/Kamstrup.h diff --git a/Code/Arduino/HanReader/.vs/HanReader/v15/.suo b/Code/Arduino/HanReader/.vs/HanReader/v15/.suo deleted file mode 100644 index d7e7e704..00000000 Binary files a/Code/Arduino/HanReader/.vs/HanReader/v15/.suo and /dev/null differ diff --git a/Code/Arduino/HanReader/library.properties b/Code/Arduino/HanReader/library.properties deleted file mode 100644 index d545dbb4..00000000 --- a/Code/Arduino/HanReader/library.properties +++ /dev/null @@ -1,4 +0,0 @@ -name=HanReader -version=1.0.0 -author=Fred -maintainer=Unknown diff --git a/Code/Arduino/KaifaTest/KaifaTest.ino b/Debugging/Code/Arduino/KaifaTest/KaifaTest.ino similarity index 100% rename from Code/Arduino/KaifaTest/KaifaTest.ino rename to Debugging/Code/Arduino/KaifaTest/KaifaTest.ino diff --git a/Code/Arduino/KaifaTest/KaifaTest.sln b/Debugging/Code/Arduino/KaifaTest/KaifaTest.sln similarity index 100% rename from Code/Arduino/KaifaTest/KaifaTest.sln rename to Debugging/Code/Arduino/KaifaTest/KaifaTest.sln diff --git a/Code/Arduino/KaifaTest/KaifaTest.vcxproj b/Debugging/Code/Arduino/KaifaTest/KaifaTest.vcxproj similarity index 100% rename from Code/Arduino/KaifaTest/KaifaTest.vcxproj rename to Debugging/Code/Arduino/KaifaTest/KaifaTest.vcxproj diff --git a/Code/Arduino/KaifaTest/KaifaTest.vcxproj.filters b/Debugging/Code/Arduino/KaifaTest/KaifaTest.vcxproj.filters similarity index 100% rename from Code/Arduino/KaifaTest/KaifaTest.vcxproj.filters rename to Debugging/Code/Arduino/KaifaTest/KaifaTest.vcxproj.filters diff --git a/Code/Arduino/KamstrupTest/KamstrupTest.ino b/Debugging/Code/Arduino/KamstrupTest/KamstrupTest.ino similarity index 100% rename from Code/Arduino/KamstrupTest/KamstrupTest.ino rename to Debugging/Code/Arduino/KamstrupTest/KamstrupTest.ino diff --git a/Code/Arduino/KamstrupTest/KamstrupTest.sln b/Debugging/Code/Arduino/KamstrupTest/KamstrupTest.sln similarity index 100% rename from Code/Arduino/KamstrupTest/KamstrupTest.sln rename to Debugging/Code/Arduino/KamstrupTest/KamstrupTest.sln diff --git a/Code/Arduino/KamstrupTest/KamstrupTest.vcxproj b/Debugging/Code/Arduino/KamstrupTest/KamstrupTest.vcxproj similarity index 100% rename from Code/Arduino/KamstrupTest/KamstrupTest.vcxproj rename to Debugging/Code/Arduino/KamstrupTest/KamstrupTest.vcxproj diff --git a/Code/Arduino/KamstrupTest/KamstrupTest.vcxproj.filters b/Debugging/Code/Arduino/KamstrupTest/KamstrupTest.vcxproj.filters similarity index 100% rename from Code/Arduino/KamstrupTest/KamstrupTest.vcxproj.filters rename to Debugging/Code/Arduino/KamstrupTest/KamstrupTest.vcxproj.filters diff --git a/Code/Arduino/SelfService/README.md b/Debugging/Code/Arduino/SelfService/README.md similarity index 100% rename from Code/Arduino/SelfService/README.md rename to Debugging/Code/Arduino/SelfService/README.md diff --git a/Code/Arduino/SelfService/ams-mqtt.ino b/Debugging/Code/Arduino/SelfService/ams-mqtt.ino similarity index 100% rename from Code/Arduino/SelfService/ams-mqtt.ino rename to Debugging/Code/Arduino/SelfService/ams-mqtt.ino diff --git a/Code/ESPDebugger/.gitignore b/Debugging/Code/ESPDebugger/.gitignore similarity index 100% rename from Code/ESPDebugger/.gitignore rename to Debugging/Code/ESPDebugger/.gitignore diff --git a/Code/ESPDebugger/Circuit (breadboard).jpg b/Debugging/Code/ESPDebugger/Circuit (breadboard).jpg similarity index 100% rename from Code/ESPDebugger/Circuit (breadboard).jpg rename to Debugging/Code/ESPDebugger/Circuit (breadboard).jpg diff --git a/Code/ESPDebugger/Crc16.cpp b/Debugging/Code/ESPDebugger/Crc16.cpp similarity index 100% rename from Code/ESPDebugger/Crc16.cpp rename to Debugging/Code/ESPDebugger/Crc16.cpp diff --git a/Code/ESPDebugger/Crc16.h b/Debugging/Code/ESPDebugger/Crc16.h similarity index 100% rename from Code/ESPDebugger/Crc16.h rename to Debugging/Code/ESPDebugger/Crc16.h diff --git a/Code/ESPDebugger/DlmsReader.cpp b/Debugging/Code/ESPDebugger/DlmsReader.cpp similarity index 100% rename from Code/ESPDebugger/DlmsReader.cpp rename to Debugging/Code/ESPDebugger/DlmsReader.cpp diff --git a/Code/ESPDebugger/DlmsReader.h b/Debugging/Code/ESPDebugger/DlmsReader.h similarity index 100% rename from Code/ESPDebugger/DlmsReader.h rename to Debugging/Code/ESPDebugger/DlmsReader.h diff --git a/Code/ESPDebugger/ESPDebugger.ino b/Debugging/Code/ESPDebugger/ESPDebugger.ino similarity index 100% rename from Code/ESPDebugger/ESPDebugger.ino rename to Debugging/Code/ESPDebugger/ESPDebugger.ino diff --git a/Code/ESPDebugger/ESPDebugger.sln b/Debugging/Code/ESPDebugger/ESPDebugger.sln similarity index 100% rename from Code/ESPDebugger/ESPDebugger.sln rename to Debugging/Code/ESPDebugger/ESPDebugger.sln diff --git a/Code/ESPDebugger/ESPDebugger.vcxproj b/Debugging/Code/ESPDebugger/ESPDebugger.vcxproj similarity index 100% rename from Code/ESPDebugger/ESPDebugger.vcxproj rename to Debugging/Code/ESPDebugger/ESPDebugger.vcxproj diff --git a/Code/ESPDebugger/ESPDebugger.vcxproj.filters b/Debugging/Code/ESPDebugger/ESPDebugger.vcxproj.filters similarity index 100% rename from Code/ESPDebugger/ESPDebugger.vcxproj.filters rename to Debugging/Code/ESPDebugger/ESPDebugger.vcxproj.filters diff --git a/Code/ESPDebugger/HanReader.cpp b/Debugging/Code/ESPDebugger/HanReader.cpp similarity index 100% rename from Code/ESPDebugger/HanReader.cpp rename to Debugging/Code/ESPDebugger/HanReader.cpp diff --git a/Code/ESPDebugger/HanReader.h b/Debugging/Code/ESPDebugger/HanReader.h similarity index 100% rename from Code/ESPDebugger/HanReader.h rename to Debugging/Code/ESPDebugger/HanReader.h diff --git a/Code/ESPDebugger/KaifaHan.cpp b/Debugging/Code/ESPDebugger/KaifaHan.cpp similarity index 100% rename from Code/ESPDebugger/KaifaHan.cpp rename to Debugging/Code/ESPDebugger/KaifaHan.cpp diff --git a/Code/ESPDebugger/KaifaHan.h b/Debugging/Code/ESPDebugger/KaifaHan.h similarity index 100% rename from Code/ESPDebugger/KaifaHan.h rename to Debugging/Code/ESPDebugger/KaifaHan.h diff --git a/Code/ESPDebugger/screenshot.png b/Debugging/Code/ESPDebugger/screenshot.png similarity index 100% rename from Code/ESPDebugger/screenshot.png rename to Debugging/Code/ESPDebugger/screenshot.png diff --git a/Code/HanDebugger/.gitignore b/Debugging/Code/HanDebugger/.gitignore similarity index 100% rename from Code/HanDebugger/.gitignore rename to Debugging/Code/HanDebugger/.gitignore diff --git a/Code/HanDebugger/HanDebugger.sln b/Debugging/Code/HanDebugger/HanDebugger.sln similarity index 100% rename from Code/HanDebugger/HanDebugger.sln rename to Debugging/Code/HanDebugger/HanDebugger.sln diff --git a/Code/HanDebugger/HanDebugger/App.config b/Debugging/Code/HanDebugger/HanDebugger/App.config similarity index 100% rename from Code/HanDebugger/HanDebugger/App.config rename to Debugging/Code/HanDebugger/HanDebugger/App.config diff --git a/Code/HanDebugger/HanDebugger/Crc16.cs b/Debugging/Code/HanDebugger/HanDebugger/Crc16.cs similarity index 100% rename from Code/HanDebugger/HanDebugger/Crc16.cs rename to Debugging/Code/HanDebugger/HanDebugger/Crc16.cs diff --git a/Code/HanDebugger/HanDebugger/DlmsReader.cs b/Debugging/Code/HanDebugger/HanDebugger/DlmsReader.cs similarity index 100% rename from Code/HanDebugger/HanDebugger/DlmsReader.cs rename to Debugging/Code/HanDebugger/HanDebugger/DlmsReader.cs diff --git a/Code/HanDebugger/HanDebugger/HanDebugger.csproj b/Debugging/Code/HanDebugger/HanDebugger/HanDebugger.csproj similarity index 100% rename from Code/HanDebugger/HanDebugger/HanDebugger.csproj rename to Debugging/Code/HanDebugger/HanDebugger/HanDebugger.csproj diff --git a/Code/HanDebugger/HanDebugger/KaifaHanBeta.cs b/Debugging/Code/HanDebugger/HanDebugger/KaifaHanBeta.cs similarity index 100% rename from Code/HanDebugger/HanDebugger/KaifaHanBeta.cs rename to Debugging/Code/HanDebugger/HanDebugger/KaifaHanBeta.cs diff --git a/Code/HanDebugger/HanDebugger/Program.cs b/Debugging/Code/HanDebugger/HanDebugger/Program.cs similarity index 100% rename from Code/HanDebugger/HanDebugger/Program.cs rename to Debugging/Code/HanDebugger/HanDebugger/Program.cs diff --git a/Code/HanDebugger/HanDebugger/Properties/AssemblyInfo.cs b/Debugging/Code/HanDebugger/HanDebugger/Properties/AssemblyInfo.cs similarity index 100% rename from Code/HanDebugger/HanDebugger/Properties/AssemblyInfo.cs rename to Debugging/Code/HanDebugger/HanDebugger/Properties/AssemblyInfo.cs diff --git a/Code/HanDebugger/HanDebugger/Reader.cs b/Debugging/Code/HanDebugger/HanDebugger/Reader.cs similarity index 100% rename from Code/HanDebugger/HanDebugger/Reader.cs rename to Debugging/Code/HanDebugger/HanDebugger/Reader.cs diff --git a/Code/HanDebugger/HanDebuggerTest/Crc16Test.cs b/Debugging/Code/HanDebugger/HanDebuggerTest/Crc16Test.cs similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/Crc16Test.cs rename to Debugging/Code/HanDebugger/HanDebuggerTest/Crc16Test.cs diff --git a/Code/HanDebugger/HanDebuggerTest/DlmsReaderTest.cs b/Debugging/Code/HanDebugger/HanDebuggerTest/DlmsReaderTest.cs similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/DlmsReaderTest.cs rename to Debugging/Code/HanDebugger/HanDebuggerTest/DlmsReaderTest.cs diff --git a/Code/HanDebugger/HanDebuggerTest/ESP 20170918 Raw.txt b/Debugging/Code/HanDebugger/HanDebuggerTest/ESP 20170918 Raw.txt similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/ESP 20170918 Raw.txt rename to Debugging/Code/HanDebugger/HanDebuggerTest/ESP 20170918 Raw.txt diff --git a/Code/HanDebugger/HanDebuggerTest/HanDebuggerTest.csproj b/Debugging/Code/HanDebugger/HanDebuggerTest/HanDebuggerTest.csproj similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/HanDebuggerTest.csproj rename to Debugging/Code/HanDebugger/HanDebuggerTest/HanDebuggerTest.csproj diff --git a/Code/HanDebugger/HanDebuggerTest/KaifaHanBetaTest.cs b/Debugging/Code/HanDebugger/HanDebuggerTest/KaifaHanBetaTest.cs similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/KaifaHanBetaTest.cs rename to Debugging/Code/HanDebugger/HanDebuggerTest/KaifaHanBetaTest.cs diff --git a/Code/HanDebugger/HanDebuggerTest/Kamstrup228.txt b/Debugging/Code/HanDebugger/HanDebuggerTest/Kamstrup228.txt similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/Kamstrup228.txt rename to Debugging/Code/HanDebugger/HanDebuggerTest/Kamstrup228.txt diff --git a/Code/HanDebugger/HanDebuggerTest/Properties/AssemblyInfo.cs b/Debugging/Code/HanDebugger/HanDebuggerTest/Properties/AssemblyInfo.cs similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/Properties/AssemblyInfo.cs rename to Debugging/Code/HanDebugger/HanDebuggerTest/Properties/AssemblyInfo.cs diff --git a/Code/HanDebugger/HanDebuggerTest/ReaderTest.cs b/Debugging/Code/HanDebugger/HanDebuggerTest/ReaderTest.cs similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/ReaderTest.cs rename to Debugging/Code/HanDebugger/HanDebuggerTest/ReaderTest.cs diff --git a/Code/HanDebugger/HanDebuggerTest/SampleData.txt b/Debugging/Code/HanDebugger/HanDebuggerTest/SampleData.txt similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/SampleData.txt rename to Debugging/Code/HanDebugger/HanDebuggerTest/SampleData.txt diff --git a/Code/HanDebugger/HanDebuggerTest/packages.config b/Debugging/Code/HanDebugger/HanDebuggerTest/packages.config similarity index 100% rename from Code/HanDebugger/HanDebuggerTest/packages.config rename to Debugging/Code/HanDebugger/HanDebuggerTest/packages.config diff --git a/Code/HanDebugger/screenshot.png b/Debugging/Code/HanDebugger/screenshot.png similarity index 100% rename from Code/HanDebugger/screenshot.png rename to Debugging/Code/HanDebugger/screenshot.png diff --git a/Code/README.md b/Debugging/Code/README.md similarity index 100% rename from Code/README.md rename to Debugging/Code/README.md diff --git a/Code/SerialTestPattern/README.md b/Debugging/Code/SerialTestPattern/README.md similarity index 100% rename from Code/SerialTestPattern/README.md rename to Debugging/Code/SerialTestPattern/README.md diff --git a/Code/SerialTestPattern/SerialTestPattern.gif b/Debugging/Code/SerialTestPattern/SerialTestPattern.gif similarity index 100% rename from Code/SerialTestPattern/SerialTestPattern.gif rename to Debugging/Code/SerialTestPattern/SerialTestPattern.gif diff --git a/Code/SerialTestPattern/SerialTestPattern.ino b/Debugging/Code/SerialTestPattern/SerialTestPattern.ino similarity index 100% rename from Code/SerialTestPattern/SerialTestPattern.ino rename to Debugging/Code/SerialTestPattern/SerialTestPattern.ino diff --git a/Documentation/Excerpt_BB12.pdf b/Debugging/Documentation/Excerpt_BB12.pdf similarity index 100% rename from Documentation/Excerpt_BB12.pdf rename to Debugging/Documentation/Excerpt_BB12.pdf diff --git a/Documentation/Excerpt_GB8.pdf b/Debugging/Documentation/Excerpt_GB8.pdf similarity index 100% rename from Documentation/Excerpt_GB8.pdf rename to Debugging/Documentation/Excerpt_GB8.pdf diff --git a/Documentation/Kaifa HAN OBIS codes KFM_001.pdf b/Debugging/Documentation/Kaifa HAN OBIS codes KFM_001.pdf similarity index 100% rename from Documentation/Kaifa HAN OBIS codes KFM_001.pdf rename to Debugging/Documentation/Kaifa HAN OBIS codes KFM_001.pdf diff --git a/Documentation/Kaifa Han Codes (KFM_001).pdf b/Debugging/Documentation/Kaifa Han Codes (KFM_001).pdf similarity index 100% rename from Documentation/Kaifa Han Codes (KFM_001).pdf rename to Debugging/Documentation/Kaifa Han Codes (KFM_001).pdf diff --git a/Documentation/Kamstrup HAN Module.pdf b/Debugging/Documentation/Kamstrup HAN Module.pdf similarity index 100% rename from Documentation/Kamstrup HAN Module.pdf rename to Debugging/Documentation/Kamstrup HAN Module.pdf diff --git a/Documentation/Kamstrup HAN-NVE interface description_rev_3_1.pdf b/Debugging/Documentation/Kamstrup HAN-NVE interface description_rev_3_1.pdf similarity index 100% rename from Documentation/Kamstrup HAN-NVE interface description_rev_3_1.pdf rename to Debugging/Documentation/Kamstrup HAN-NVE interface description_rev_3_1.pdf diff --git a/Documentation/NEK AMS HAN.pdf b/Debugging/Documentation/NEK AMS HAN.pdf similarity index 100% rename from Documentation/NEK AMS HAN.pdf rename to Debugging/Documentation/NEK AMS HAN.pdf diff --git a/Documentation/NVE_Info_kunder_HANgrensesnitt.pdf b/Debugging/Documentation/NVE_Info_kunder_HANgrensesnitt.pdf similarity index 100% rename from Documentation/NVE_Info_kunder_HANgrensesnitt.pdf rename to Debugging/Documentation/NVE_Info_kunder_HANgrensesnitt.pdf diff --git a/Documentation/OBIS List Information - AIDON.pdf b/Debugging/Documentation/OBIS List Information - AIDON.pdf similarity index 100% rename from Documentation/OBIS List Information - AIDON.pdf rename to Debugging/Documentation/OBIS List Information - AIDON.pdf diff --git a/Documentation/OBIS List Information - KAMSTRUP.pdf b/Debugging/Documentation/OBIS List Information - KAMSTRUP.pdf similarity index 100% rename from Documentation/OBIS List Information - KAMSTRUP.pdf rename to Debugging/Documentation/OBIS List Information - KAMSTRUP.pdf diff --git a/Electrical/GETTING_STARTED.md b/Debugging/PCB/GETTING_STARTED.md similarity index 100% rename from Electrical/GETTING_STARTED.md rename to Debugging/PCB/GETTING_STARTED.md diff --git a/Electrical/HAN_ESP_Simple/Components.xlsx b/Debugging/PCB/HAN_ESP_Simple/Components.xlsx similarity index 100% rename from Electrical/HAN_ESP_Simple/Components.xlsx rename to Debugging/PCB/HAN_ESP_Simple/Components.xlsx diff --git a/Electrical/HAN_ESP_Simple/MQTT screenshot.png b/Debugging/PCB/HAN_ESP_Simple/MQTT screenshot.png similarity index 100% rename from Electrical/HAN_ESP_Simple/MQTT screenshot.png rename to Debugging/PCB/HAN_ESP_Simple/MQTT screenshot.png diff --git a/Electrical/HAN_ESP_Simple/PCB (3D).pdf b/Debugging/PCB/HAN_ESP_Simple/PCB (3D).pdf similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB (3D).pdf rename to Debugging/PCB/HAN_ESP_Simple/PCB (3D).pdf diff --git a/Electrical/HAN_ESP_Simple/PCB.PNG b/Debugging/PCB/HAN_ESP_Simple/PCB.PNG similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB.PNG rename to Debugging/PCB/HAN_ESP_Simple/PCB.PNG diff --git a/Electrical/HAN_ESP_Simple/PCB/AMSMQTT.PcbLib b/Debugging/PCB/HAN_ESP_Simple/PCB/AMSMQTT.PcbLib similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/AMSMQTT.PcbLib rename to Debugging/PCB/HAN_ESP_Simple/PCB/AMSMQTT.PcbLib diff --git a/Electrical/HAN_ESP_Simple/PCB/AMSTOMQTT.PcbDoc b/Debugging/PCB/HAN_ESP_Simple/PCB/AMSTOMQTT.PcbDoc similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/AMSTOMQTT.PcbDoc rename to Debugging/PCB/HAN_ESP_Simple/PCB/AMSTOMQTT.PcbDoc diff --git a/Electrical/HAN_ESP_Simple/PCB/AMSTOMQTT.PrjPcb b/Debugging/PCB/HAN_ESP_Simple/PCB/AMSTOMQTT.PrjPcb similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/AMSTOMQTT.PrjPcb rename to Debugging/PCB/HAN_ESP_Simple/PCB/AMSTOMQTT.PrjPcb diff --git a/Electrical/HAN_ESP_Simple/PCB/AMSTOMQTT.PrjPcbStructure b/Debugging/PCB/HAN_ESP_Simple/PCB/AMSTOMQTT.PrjPcbStructure similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/AMSTOMQTT.PrjPcbStructure rename to Debugging/PCB/HAN_ESP_Simple/PCB/AMSTOMQTT.PrjPcbStructure diff --git a/Electrical/HAN_ESP_Simple/PCB/AMSTOMQTT.SchDoc b/Debugging/PCB/HAN_ESP_Simple/PCB/AMSTOMQTT.SchDoc similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/AMSTOMQTT.SchDoc rename to Debugging/PCB/HAN_ESP_Simple/PCB/AMSTOMQTT.SchDoc diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT-macro.APR_LIB b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT-macro.APR_LIB similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT-macro.APR_LIB rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT-macro.APR_LIB diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.DRR b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.DRR similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.DRR rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.DRR diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.EXTREP b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.EXTREP similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.EXTREP rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.EXTREP diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GBL b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GBL similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GBL rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GBL diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GBS b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GBS similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GBS rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GBS diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GKO b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GKO similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GKO rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GKO diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM1 b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM1 similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM1 rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM1 diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM13 b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM13 similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM13 rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM13 diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM15 b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM15 similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM15 rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GM15 diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GPB b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GPB similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GPB rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GPB diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GPT b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GPT similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GPT rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GPT diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTL b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTL similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTL rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTL diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTO b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTO similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTO rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTO diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTP b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTP similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTP rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTP diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTS b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTS similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTS rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.GTS diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.LDP b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.LDP similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.LDP rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.LDP diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.REP b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.REP similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.REP rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.REP diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.RUL b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.RUL similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.RUL rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.RUL diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.TXT b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.TXT similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.TXT rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.TXT diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.apr b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.apr similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.apr rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/AMSTOMQTT.apr diff --git a/Electrical/HAN_ESP_Simple/PCB/Gerber/Status Report.Txt b/Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/Status Report.Txt similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/Gerber/Status Report.Txt rename to Debugging/PCB/HAN_ESP_Simple/PCB/Gerber/Status Report.Txt diff --git a/Electrical/HAN_ESP_Simple/PCB/National Semiconductor Amplifier.IntLib b/Debugging/PCB/HAN_ESP_Simple/PCB/National Semiconductor Amplifier.IntLib similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/National Semiconductor Amplifier.IntLib rename to Debugging/PCB/HAN_ESP_Simple/PCB/National Semiconductor Amplifier.IntLib diff --git a/Electrical/HAN_ESP_Simple/PCB/National Semiconductor LDO.IntLib b/Debugging/PCB/HAN_ESP_Simple/PCB/National Semiconductor LDO.IntLib similarity index 100% rename from Electrical/HAN_ESP_Simple/PCB/National Semiconductor LDO.IntLib rename to Debugging/PCB/HAN_ESP_Simple/PCB/National Semiconductor LDO.IntLib diff --git a/Electrical/HAN_ESP_Simple/Prototype.jpg b/Debugging/PCB/HAN_ESP_Simple/Prototype.jpg similarity index 100% rename from Electrical/HAN_ESP_Simple/Prototype.jpg rename to Debugging/PCB/HAN_ESP_Simple/Prototype.jpg diff --git a/Electrical/HAN_ESP_Simple/README.md b/Debugging/PCB/HAN_ESP_Simple/README.md similarity index 100% rename from Electrical/HAN_ESP_Simple/README.md rename to Debugging/PCB/HAN_ESP_Simple/README.md diff --git a/Electrical/HAN_ESP_Simple/Raw HAN (scope).jpg b/Debugging/PCB/HAN_ESP_Simple/Raw HAN (scope).jpg similarity index 100% rename from Electrical/HAN_ESP_Simple/Raw HAN (scope).jpg rename to Debugging/PCB/HAN_ESP_Simple/Raw HAN (scope).jpg diff --git a/Electrical/HAN_ESP_Simple/Schematics.PNG b/Debugging/PCB/HAN_ESP_Simple/Schematics.PNG similarity index 100% rename from Electrical/HAN_ESP_Simple/Schematics.PNG rename to Debugging/PCB/HAN_ESP_Simple/Schematics.PNG diff --git a/Electrical/HAN_ESP_Simple/Schematics.pdf b/Debugging/PCB/HAN_ESP_Simple/Schematics.pdf similarity index 100% rename from Electrical/HAN_ESP_Simple/Schematics.pdf rename to Debugging/PCB/HAN_ESP_Simple/Schematics.pdf diff --git a/Electrical/HAN_ESP_Simple/Simple HAN to FTDI Circuit (breadboard).jpg b/Debugging/PCB/HAN_ESP_Simple/Simple HAN to FTDI Circuit (breadboard).jpg similarity index 100% rename from Electrical/HAN_ESP_Simple/Simple HAN to FTDI Circuit (breadboard).jpg rename to Debugging/PCB/HAN_ESP_Simple/Simple HAN to FTDI Circuit (breadboard).jpg diff --git a/Electrical/HAN_TTL_TSS721/.gitignore b/Debugging/PCB/HAN_TTL_TSS721/.gitignore similarity index 100% rename from Electrical/HAN_TTL_TSS721/.gitignore rename to Debugging/PCB/HAN_TTL_TSS721/.gitignore diff --git a/Electrical/HAN_TTL_TSS721/README.md b/Debugging/PCB/HAN_TTL_TSS721/README.md similarity index 100% rename from Electrical/HAN_TTL_TSS721/README.md rename to Debugging/PCB/HAN_TTL_TSS721/README.md diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wings b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wings similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wings rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wings diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wrl b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wrl similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wrl rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wrl diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wings b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wings similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wings rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wings diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wings b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wings similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wings rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wings diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wrl b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wrl similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wrl rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wrl diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Arduino_1pin.kicad_mod b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Arduino_1pin.kicad_mod similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Arduino_1pin.kicad_mod rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Arduino_1pin.kicad_mod diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x06.kicad_mod b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x06.kicad_mod similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x06.kicad_mod rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x06.kicad_mod diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x08.kicad_mod b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x08.kicad_mod similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x08.kicad_mod rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x08.kicad_mod diff --git a/Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x10.kicad_mod b/Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x10.kicad_mod similarity index 100% rename from Electrical/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x10.kicad_mod rename to Debugging/PCB/HAN_TTL_TSS721/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x10.kicad_mod diff --git a/Electrical/HAN_TTL_TSS721/docs/tss721a.pdf b/Debugging/PCB/HAN_TTL_TSS721/docs/tss721a.pdf similarity index 100% rename from Electrical/HAN_TTL_TSS721/docs/tss721a.pdf rename to Debugging/PCB/HAN_TTL_TSS721/docs/tss721a.pdf diff --git a/Electrical/HAN_TTL_TSS721/fp-lib-table b/Debugging/PCB/HAN_TTL_TSS721/fp-lib-table similarity index 100% rename from Electrical/HAN_TTL_TSS721/fp-lib-table rename to Debugging/PCB/HAN_TTL_TSS721/fp-lib-table diff --git a/Electrical/HAN_TTL_TSS721/lib/amstomqtt.dcm b/Debugging/PCB/HAN_TTL_TSS721/lib/amstomqtt.dcm similarity index 100% rename from Electrical/HAN_TTL_TSS721/lib/amstomqtt.dcm rename to Debugging/PCB/HAN_TTL_TSS721/lib/amstomqtt.dcm diff --git a/Electrical/HAN_TTL_TSS721/lib/amstomqtt.lib b/Debugging/PCB/HAN_TTL_TSS721/lib/amstomqtt.lib similarity index 100% rename from Electrical/HAN_TTL_TSS721/lib/amstomqtt.lib rename to Debugging/PCB/HAN_TTL_TSS721/lib/amstomqtt.lib diff --git a/Electrical/HAN_TTL_TSS721/mbus-receiver-opto.png b/Debugging/PCB/HAN_TTL_TSS721/mbus-receiver-opto.png similarity index 100% rename from Electrical/HAN_TTL_TSS721/mbus-receiver-opto.png rename to Debugging/PCB/HAN_TTL_TSS721/mbus-receiver-opto.png diff --git a/Electrical/HAN_TTL_TSS721/mbus-receiver-opto.sch b/Debugging/PCB/HAN_TTL_TSS721/mbus-receiver-opto.sch similarity index 100% rename from Electrical/HAN_TTL_TSS721/mbus-receiver-opto.sch rename to Debugging/PCB/HAN_TTL_TSS721/mbus-receiver-opto.sch diff --git a/Electrical/HAN_TTL_TSS721/shield1-cache.lib b/Debugging/PCB/HAN_TTL_TSS721/shield1-cache.lib similarity index 100% rename from Electrical/HAN_TTL_TSS721/shield1-cache.lib rename to Debugging/PCB/HAN_TTL_TSS721/shield1-cache.lib diff --git a/Electrical/HAN_TTL_TSS721/shield1.kicad_pcb b/Debugging/PCB/HAN_TTL_TSS721/shield1.kicad_pcb similarity index 100% rename from Electrical/HAN_TTL_TSS721/shield1.kicad_pcb rename to Debugging/PCB/HAN_TTL_TSS721/shield1.kicad_pcb diff --git a/Electrical/HAN_TTL_TSS721/shield1.net b/Debugging/PCB/HAN_TTL_TSS721/shield1.net similarity index 100% rename from Electrical/HAN_TTL_TSS721/shield1.net rename to Debugging/PCB/HAN_TTL_TSS721/shield1.net diff --git a/Electrical/HAN_TTL_TSS721/shield1.png b/Debugging/PCB/HAN_TTL_TSS721/shield1.png similarity index 100% rename from Electrical/HAN_TTL_TSS721/shield1.png rename to Debugging/PCB/HAN_TTL_TSS721/shield1.png diff --git a/Electrical/HAN_TTL_TSS721/shield1.pro b/Debugging/PCB/HAN_TTL_TSS721/shield1.pro similarity index 100% rename from Electrical/HAN_TTL_TSS721/shield1.pro rename to Debugging/PCB/HAN_TTL_TSS721/shield1.pro diff --git a/Electrical/HAN_TTL_TSS721/shield1.sch b/Debugging/PCB/HAN_TTL_TSS721/shield1.sch similarity index 100% rename from Electrical/HAN_TTL_TSS721/shield1.sch rename to Debugging/PCB/HAN_TTL_TSS721/shield1.sch diff --git a/Electrical/MBus_Simulator/.gitignore b/Debugging/PCB/MBus_Simulator/.gitignore similarity index 100% rename from Electrical/MBus_Simulator/.gitignore rename to Debugging/PCB/MBus_Simulator/.gitignore diff --git a/Electrical/MBus_Simulator/MBus_Simulator.B.Cu.png b/Debugging/PCB/MBus_Simulator/MBus_Simulator.B.Cu.png similarity index 100% rename from Electrical/MBus_Simulator/MBus_Simulator.B.Cu.png rename to Debugging/PCB/MBus_Simulator/MBus_Simulator.B.Cu.png diff --git a/Electrical/MBus_Simulator/MBus_Simulator.B.Cu.svg b/Debugging/PCB/MBus_Simulator/MBus_Simulator.B.Cu.svg similarity index 100% rename from Electrical/MBus_Simulator/MBus_Simulator.B.Cu.svg rename to Debugging/PCB/MBus_Simulator/MBus_Simulator.B.Cu.svg diff --git a/Electrical/MBus_Simulator/MBus_Simulator.F.Cu.png b/Debugging/PCB/MBus_Simulator/MBus_Simulator.F.Cu.png similarity index 100% rename from Electrical/MBus_Simulator/MBus_Simulator.F.Cu.png rename to Debugging/PCB/MBus_Simulator/MBus_Simulator.F.Cu.png diff --git a/Electrical/MBus_Simulator/MBus_Simulator.F.Cu.svg b/Debugging/PCB/MBus_Simulator/MBus_Simulator.F.Cu.svg similarity index 100% rename from Electrical/MBus_Simulator/MBus_Simulator.F.Cu.svg rename to Debugging/PCB/MBus_Simulator/MBus_Simulator.F.Cu.svg diff --git a/Electrical/MBus_Simulator/MBus_Simulator.png b/Debugging/PCB/MBus_Simulator/MBus_Simulator.png similarity index 100% rename from Electrical/MBus_Simulator/MBus_Simulator.png rename to Debugging/PCB/MBus_Simulator/MBus_Simulator.png diff --git a/Electrical/MBus_Simulator/MBus_Simulator.schematic.png b/Debugging/PCB/MBus_Simulator/MBus_Simulator.schematic.png similarity index 100% rename from Electrical/MBus_Simulator/MBus_Simulator.schematic.png rename to Debugging/PCB/MBus_Simulator/MBus_Simulator.schematic.png diff --git a/Electrical/MBus_Simulator/MBus_Simulator.schematic.svg b/Debugging/PCB/MBus_Simulator/MBus_Simulator.schematic.svg similarity index 100% rename from Electrical/MBus_Simulator/MBus_Simulator.schematic.svg rename to Debugging/PCB/MBus_Simulator/MBus_Simulator.schematic.svg diff --git a/Electrical/MBus_Simulator/Makefile b/Debugging/PCB/MBus_Simulator/Makefile similarity index 100% rename from Electrical/MBus_Simulator/Makefile rename to Debugging/PCB/MBus_Simulator/Makefile diff --git a/Electrical/MBus_Simulator/README.md b/Debugging/PCB/MBus_Simulator/README.md similarity index 100% rename from Electrical/MBus_Simulator/README.md rename to Debugging/PCB/MBus_Simulator/README.md diff --git a/Electrical/MBus_Simulator/doc/MBus_USB.pdf b/Debugging/PCB/MBus_Simulator/doc/MBus_USB.pdf similarity index 100% rename from Electrical/MBus_Simulator/doc/MBus_USB.pdf rename to Debugging/PCB/MBus_Simulator/doc/MBus_USB.pdf diff --git a/Electrical/MBus_Simulator/doc/minimaster.tif b/Debugging/PCB/MBus_Simulator/doc/minimaster.tif similarity index 100% rename from Electrical/MBus_Simulator/doc/minimaster.tif rename to Debugging/PCB/MBus_Simulator/doc/minimaster.tif diff --git a/Electrical/MBus_Simulator/fp-lib-table b/Debugging/PCB/MBus_Simulator/fp-lib-table similarity index 100% rename from Electrical/MBus_Simulator/fp-lib-table rename to Debugging/PCB/MBus_Simulator/fp-lib-table diff --git a/Electrical/MBus_Simulator/lib/6mm_logo_copper.emp b/Debugging/PCB/MBus_Simulator/lib/6mm_logo_copper.emp similarity index 100% rename from Electrical/MBus_Simulator/lib/6mm_logo_copper.emp rename to Debugging/PCB/MBus_Simulator/lib/6mm_logo_copper.emp diff --git a/Electrical/MBus_Simulator/mbus_master-cache.lib b/Debugging/PCB/MBus_Simulator/mbus_master-cache.lib similarity index 100% rename from Electrical/MBus_Simulator/mbus_master-cache.lib rename to Debugging/PCB/MBus_Simulator/mbus_master-cache.lib diff --git a/Electrical/MBus_Simulator/mbus_master.kicad_pcb b/Debugging/PCB/MBus_Simulator/mbus_master.kicad_pcb similarity index 100% rename from Electrical/MBus_Simulator/mbus_master.kicad_pcb rename to Debugging/PCB/MBus_Simulator/mbus_master.kicad_pcb diff --git a/Electrical/MBus_Simulator/mbus_master.net b/Debugging/PCB/MBus_Simulator/mbus_master.net similarity index 100% rename from Electrical/MBus_Simulator/mbus_master.net rename to Debugging/PCB/MBus_Simulator/mbus_master.net diff --git a/Electrical/MBus_Simulator/mbus_master.pro b/Debugging/PCB/MBus_Simulator/mbus_master.pro similarity index 100% rename from Electrical/MBus_Simulator/mbus_master.pro rename to Debugging/PCB/MBus_Simulator/mbus_master.pro diff --git a/Electrical/MBus_Simulator/mbus_master.sch b/Debugging/PCB/MBus_Simulator/mbus_master.sch similarity index 100% rename from Electrical/MBus_Simulator/mbus_master.sch rename to Debugging/PCB/MBus_Simulator/mbus_master.sch diff --git a/Electrical/MBus_Simulator/simulation/.gitignore b/Debugging/PCB/MBus_Simulator/simulation/.gitignore similarity index 100% rename from Electrical/MBus_Simulator/simulation/.gitignore rename to Debugging/PCB/MBus_Simulator/simulation/.gitignore diff --git a/Electrical/MBus_Simulator/simulation/README.md b/Debugging/PCB/MBus_Simulator/simulation/README.md similarity index 100% rename from Electrical/MBus_Simulator/simulation/README.md rename to Debugging/PCB/MBus_Simulator/simulation/README.md diff --git a/Electrical/MBus_Simulator/simulation/current_limit.png b/Debugging/PCB/MBus_Simulator/simulation/current_limit.png similarity index 100% rename from Electrical/MBus_Simulator/simulation/current_limit.png rename to Debugging/PCB/MBus_Simulator/simulation/current_limit.png diff --git a/Electrical/MBus_Simulator/simulation/current_limit.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/current_limit.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/current_limit.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/current_limit.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/current_limit.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/current_limit.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/current_limit.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/current_limit.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_001.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_001.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_001.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_001.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_001.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_001.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_001.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_001.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_002.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_002.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_002.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_002.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_002.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_002.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_002.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_002.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_003.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_003.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_003.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_003.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_003.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_003.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_003.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_003.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_004.png b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_004.png similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_004.png rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_004.png diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_004.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_004.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_004.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_004.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_004.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_004.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_004.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_004.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_100.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_100.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_100.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_100.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_100.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_100.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_100.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_100.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_100_v2.png b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_100_v2.png similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_100_v2.png rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_100_v2.png diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_100_v3.png b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_100_v3.png similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_100_v3.png rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_100_v3.png diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_101.png b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_101.png similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_101.png rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_101.png diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_101.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_101.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_101.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_101.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/mbus_master_101.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/mbus_master_101.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/mbus_master_101.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/mbus_master_101.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/minimaster_001.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/minimaster_001.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/minimaster_001.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/minimaster_001.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/minimaster_001.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/minimaster_001.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/minimaster_001.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/minimaster_001.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/minimaster_002.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/minimaster_002.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/minimaster_002.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/minimaster_002.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/minimaster_002.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/minimaster_002.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/minimaster_002.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/minimaster_002.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/minimaster_003.qucs-s.dpl b/Debugging/PCB/MBus_Simulator/simulation/minimaster_003.qucs-s.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/minimaster_003.qucs-s.dpl rename to Debugging/PCB/MBus_Simulator/simulation/minimaster_003.qucs-s.dpl diff --git a/Electrical/MBus_Simulator/simulation/minimaster_003.qucs-s.sch b/Debugging/PCB/MBus_Simulator/simulation/minimaster_003.qucs-s.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/minimaster_003.qucs-s.sch rename to Debugging/PCB/MBus_Simulator/simulation/minimaster_003.qucs-s.sch diff --git a/Electrical/MBus_Simulator/simulation/zener_test.dpl b/Debugging/PCB/MBus_Simulator/simulation/zener_test.dpl similarity index 100% rename from Electrical/MBus_Simulator/simulation/zener_test.dpl rename to Debugging/PCB/MBus_Simulator/simulation/zener_test.dpl diff --git a/Electrical/MBus_Simulator/simulation/zener_test.sch b/Debugging/PCB/MBus_Simulator/simulation/zener_test.sch similarity index 100% rename from Electrical/MBus_Simulator/simulation/zener_test.sch rename to Debugging/PCB/MBus_Simulator/simulation/zener_test.sch diff --git a/Electrical/MBus_Simulator/simulation/zener_test_v2.png b/Debugging/PCB/MBus_Simulator/simulation/zener_test_v2.png similarity index 100% rename from Electrical/MBus_Simulator/simulation/zener_test_v2.png rename to Debugging/PCB/MBus_Simulator/simulation/zener_test_v2.png diff --git a/Electrical/MBus_Simulator/simulation/zener_test_v3.png b/Debugging/PCB/MBus_Simulator/simulation/zener_test_v3.png similarity index 100% rename from Electrical/MBus_Simulator/simulation/zener_test_v3.png rename to Debugging/PCB/MBus_Simulator/simulation/zener_test_v3.png diff --git a/Electrical/MBus_Simulator/zener_not_ok.png b/Debugging/PCB/MBus_Simulator/zener_not_ok.png similarity index 100% rename from Electrical/MBus_Simulator/zener_not_ok.png rename to Debugging/PCB/MBus_Simulator/zener_not_ok.png diff --git a/Electrical/MBus_Simulator/zener_ok.png b/Debugging/PCB/MBus_Simulator/zener_ok.png similarity index 100% rename from Electrical/MBus_Simulator/zener_ok.png rename to Debugging/PCB/MBus_Simulator/zener_ok.png diff --git a/Electrical/README.md b/Debugging/PCB/README.md similarity index 100% rename from Electrical/README.md rename to Debugging/PCB/README.md diff --git a/Samples/Kaifa/ESP 20170918 Raw.txt b/Debugging/Samples/Kaifa/ESP 20170918 Raw.txt similarity index 100% rename from Samples/Kaifa/ESP 20170918 Raw.txt rename to Debugging/Samples/Kaifa/ESP 20170918 Raw.txt diff --git a/Samples/Kaifa/HAN 20170912-2.txt b/Debugging/Samples/Kaifa/HAN 20170912-2.txt similarity index 100% rename from Samples/Kaifa/HAN 20170912-2.txt rename to Debugging/Samples/Kaifa/HAN 20170912-2.txt diff --git a/Samples/Kaifa/HAN 20170912-3.txt b/Debugging/Samples/Kaifa/HAN 20170912-3.txt similarity index 100% rename from Samples/Kaifa/HAN 20170912-3.txt rename to Debugging/Samples/Kaifa/HAN 20170912-3.txt diff --git a/Samples/Kaifa/HAN 20170914.txt b/Debugging/Samples/Kaifa/HAN 20170914.txt similarity index 100% rename from Samples/Kaifa/HAN 20170914.txt rename to Debugging/Samples/Kaifa/HAN 20170914.txt diff --git a/Samples/Kaifa/Samples from ESP.txt b/Debugging/Samples/Kaifa/Samples from ESP.txt similarity index 100% rename from Samples/Kaifa/Samples from ESP.txt rename to Debugging/Samples/Kaifa/Samples from ESP.txt diff --git a/Samples/Kaifa/obisdata.md b/Debugging/Samples/Kaifa/obisdata.md similarity index 100% rename from Samples/Kaifa/obisdata.md rename to Debugging/Samples/Kaifa/obisdata.md diff --git a/Samples/Kaifa/raw-20170915.txt b/Debugging/Samples/Kaifa/raw-20170915.txt similarity index 100% rename from Samples/Kaifa/raw-20170915.txt rename to Debugging/Samples/Kaifa/raw-20170915.txt diff --git a/Samples/Kaifa/readme.md b/Debugging/Samples/Kaifa/readme.md similarity index 100% rename from Samples/Kaifa/readme.md rename to Debugging/Samples/Kaifa/readme.md diff --git a/Samples/Kamstrup/HAN 20171019 xibriz4.txt b/Debugging/Samples/Kamstrup/HAN 20171019 xibriz4.txt similarity index 100% rename from Samples/Kamstrup/HAN 20171019 xibriz4.txt rename to Debugging/Samples/Kamstrup/HAN 20171019 xibriz4.txt diff --git a/Samples/Kamstrup/obisdata.md b/Debugging/Samples/Kamstrup/obisdata.md similarity index 100% rename from Samples/Kamstrup/obisdata.md rename to Debugging/Samples/Kamstrup/obisdata.md diff --git a/Samples/Kamstrup/readme.md b/Debugging/Samples/Kamstrup/readme.md similarity index 100% rename from Samples/Kamstrup/readme.md rename to Debugging/Samples/Kamstrup/readme.md diff --git a/Samples/readme.md b/Debugging/Samples/readme.md similarity index 100% rename from Samples/readme.md rename to Debugging/Samples/readme.md diff --git a/Electrical/HAN_ESP_TSS721/gerber.zip b/Electrical/HAN_ESP_TSS721/gerber.zip deleted file mode 100644 index 9aba2786..00000000 Binary files a/Electrical/HAN_ESP_TSS721/gerber.zip and /dev/null differ diff --git a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.Cu.gbl b/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.Cu.gbl deleted file mode 100644 index ed7c6af5..00000000 --- a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.Cu.gbl +++ /dev/null @@ -1,3758 +0,0 @@ -G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.0.0-rc2-dev-40-gfef1ba999)* -G04 #@! TF.CreationDate,2018-03-01T23:08:39+01:00* -G04 #@! TF.ProjectId,HAN_ESP_TSS721,48414E5F4553505F5453533732312E6B,rev?* -G04 #@! TF.SameCoordinates,Original* -G04 #@! TF.FileFunction,Copper,L2,Bot,Signal* -G04 #@! TF.FilePolarity,Positive* -%FSLAX46Y46*% -G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* -G04 Created by KiCad (PCBNEW (5.0.0-rc2-dev-40-gfef1ba999)) date 03/01/18 23:08:39* -%MOMM*% -%LPD*% -G01* -G04 APERTURE LIST* -%ADD10C,1.600000*% -%ADD11O,1.600000X1.600000*% -%ADD12C,3.650000*% -%ADD13R,1.500000X1.500000*% -%ADD14C,1.500000*% -%ADD15O,1.250000X0.950000*% -%ADD16O,1.000000X1.550000*% -%ADD17R,2.000000X2.000000*% -%ADD18C,2.000000*% -%ADD19R,1.700000X1.700000*% -%ADD20O,1.700000X1.700000*% -%ADD21R,1.520000X1.520000*% -%ADD22C,1.520000*% -%ADD23C,0.600000*% -%ADD24C,0.800000*% -%ADD25C,0.250000*% -%ADD26C,1.000000*% -%ADD27C,0.254000*% -G04 APERTURE END LIST* -D10* -X53340000Y-102235000D03* -D11* -X63500000Y-102235000D03* -D10* -X53340000Y-115570000D03* -D11* -X63500000Y-115570000D03* -D12* -X42960000Y-76200000D03* -X54830000Y-76200000D03* -D13* -X53340000Y-82550000D03* -D14* -X52070000Y-85090000D03* -X50800000Y-82550000D03* -X49530000Y-85090000D03* -X48260000Y-82550000D03* -X46990000Y-85090000D03* -X45720000Y-82550000D03* -X44450000Y-85090000D03* -D15* -X34330000Y-161210000D03* -X39330000Y-161210000D03* -D16* -X33330000Y-163910000D03* -X40330000Y-163910000D03* -D17* -X40005000Y-92710000D03* -D18* -X35005000Y-92710000D03* -D10* -X45720000Y-94615000D03* -X50720000Y-94615000D03* -X34290000Y-156210000D03* -X39290000Y-156210000D03* -D17* -X62230000Y-92710000D03* -D18* -X57230000Y-92710000D03* -D10* -X43180000Y-100965000D03* -D11* -X33020000Y-100965000D03* -D10* -X53340000Y-111125000D03* -D11* -X63500000Y-111125000D03* -D10* -X63500000Y-120015000D03* -D11* -X53340000Y-120015000D03* -D10* -X63500000Y-128905000D03* -D11* -X53340000Y-128905000D03* -D10* -X63500000Y-124460000D03* -D11* -X53340000Y-124460000D03* -D10* -X59690000Y-74930000D03* -D11* -X59690000Y-85090000D03* -D10* -X38100000Y-85090000D03* -D11* -X38100000Y-74930000D03* -D10* -X63500000Y-106680000D03* -D11* -X53340000Y-106680000D03* -D19* -X45720000Y-113030000D03* -D20* -X45720000Y-115570000D03* -D19* -X49530000Y-113030000D03* -D20* -X49530000Y-115570000D03* -D11* -X33020000Y-104140000D03* -D10* -X43180000Y-104140000D03* -D21* -X35560000Y-109855000D03* -D22* -X40640000Y-109855000D03* -X38100000Y-109855000D03* -D10* -X56595000Y-135255000D03* -X61595000Y-135255000D03* -D18* -X40560000Y-137795000D03* -D17* -X35560000Y-137795000D03* -D20* -X46990000Y-134620000D03* -X46990000Y-132080000D03* -X46990000Y-129540000D03* -X46990000Y-127000000D03* -X46990000Y-124460000D03* -D19* -X46990000Y-121920000D03* -D18* -X35560000Y-114785000D03* -X40060000Y-114785000D03* -X35560000Y-121285000D03* -X40060000Y-121285000D03* -X40060000Y-130960000D03* -X35560000Y-130960000D03* -X40060000Y-124460000D03* -X35560000Y-124460000D03* -D23* -X52070000Y-85090000D03* -X53340000Y-99695000D03* -X52070000Y-88265000D03* -X48260000Y-92075000D03* -X45720000Y-94615000D03* -X48260000Y-102235000D03* -D24* -X55245000Y-109220000D03* -D23* -X55245000Y-132080000D03* -X55245000Y-151765000D03* -X58420000Y-147955000D03* -X52070000Y-144145000D03* -X59690000Y-143510000D03* -X43180000Y-145415000D03* -X49530000Y-153670000D03* -X50800000Y-154940000D03* -X44450000Y-150495000D03* -D25* -X52070000Y-85090000D02* -X50165000Y-86995000D01* -X38100000Y-81915000D02* -X38100000Y-74930000D01* -X43180000Y-86995000D02* -X38100000Y-81915000D01* -X50165000Y-86995000D02* -X43180000Y-86995000D01* -X48260000Y-92075000D02* -X47625000Y-92710000D01* -X47625000Y-92710000D02* -X40005000Y-92710000D01* -X45720000Y-94615000D02* -X47625000Y-94615000D01* -X48260000Y-95250000D02* -X48260000Y-102235000D01* -X47625000Y-94615000D02* -X48260000Y-95250000D01* -D26* -X43180000Y-109220000D02* -X43180000Y-109855000D01* -X43180000Y-104140000D02* -X43180000Y-109220000D01* -X55245000Y-109220000D02* -X43180000Y-109220000D01* -X43180000Y-109855000D02* -X40640000Y-109855000D01* -D25* -X55245000Y-151765000D02* -X55245000Y-132080000D01* -X58420000Y-129540000D02* -X53340000Y-124460000D01* -X58420000Y-147955000D02* -X58420000Y-129540000D01* -X53340000Y-142875000D02* -X53340000Y-128905000D01* -X52070000Y-144145000D02* -X53340000Y-142875000D01* -X59690000Y-143510000D02* -X59690000Y-117475000D01* -X59690000Y-117475000D02* -X53340000Y-111125000D01* -X40060000Y-130960000D02* -X40060000Y-129545787D01* -X40060000Y-129545787D02* -X40060000Y-124460000D01* -X43180000Y-145415000D02* -X43180000Y-134080000D01* -X43180000Y-134080000D02* -X40060000Y-130960000D01* -X46990000Y-127000000D02* -X48260000Y-127000000D01* -X49530000Y-128270000D02* -X49530000Y-153670000D01* -X48260000Y-127000000D02* -X49530000Y-128270000D01* -X45720000Y-115570000D02* -X44450000Y-116840000D01* -X45720000Y-127000000D02* -X46990000Y-127000000D01* -X44450000Y-125730000D02* -X45720000Y-127000000D01* -X44450000Y-116840000D02* -X44450000Y-125730000D01* -X46990000Y-124460000D02* -X50800000Y-124460000D01* -X50800000Y-116840000D02* -X49530000Y-115570000D01* -X50800000Y-154940000D02* -X50800000Y-124460000D01* -X50800000Y-124460000D02* -X50800000Y-116840000D01* -X43180000Y-128270000D02* -X43180000Y-114935000D01* -X43180000Y-114935000D02* -X38100000Y-109855000D01* -X44450000Y-129540000D02* -X43180000Y-128270000D01* -X44450000Y-150495000D02* -X44450000Y-129540000D01* -D27* -G36* -X64695000Y-101457792D02* -X64355134Y-101082611D01* -X63849041Y-100843086D01* -X63627000Y-100964371D01* -X63627000Y-102108000D01* -X63647000Y-102108000D01* -X63647000Y-102362000D01* -X63627000Y-102362000D01* -X63627000Y-103505629D01* -X63849041Y-103626914D01* -X64355134Y-103387389D01* -X64695000Y-103012208D01* -X64695000Y-105908265D01* -X64507745Y-105851861D01* -X63679605Y-106680000D01* -X64507745Y-107508139D01* -X64695000Y-107451735D01* -X64695000Y-110330514D01* -X64534577Y-110090423D01* -X64059909Y-109773260D01* -X63641333Y-109690000D01* -X63358667Y-109690000D01* -X62940091Y-109773260D01* -X62465423Y-110090423D01* -X62148260Y-110565091D01* -X62036887Y-111125000D01* -X62148260Y-111684909D01* -X62465423Y-112159577D01* -X62940091Y-112476740D01* -X63358667Y-112560000D01* -X63641333Y-112560000D01* -X64059909Y-112476740D01* -X64534577Y-112159577D01* -X64695000Y-111919486D01* -X64695000Y-114775514D01* -X64534577Y-114535423D01* -X64059909Y-114218260D01* -X63641333Y-114135000D01* -X63358667Y-114135000D01* -X62940091Y-114218260D01* -X62465423Y-114535423D01* -X62148260Y-115010091D01* -X62036887Y-115570000D01* -X62148260Y-116129909D01* -X62465423Y-116604577D01* -X62940091Y-116921740D01* -X63358667Y-117005000D01* -X63641333Y-117005000D01* -X64059909Y-116921740D01* -X64534577Y-116604577D01* -X64695000Y-116364486D01* -X64695001Y-119180605D01* -X64312862Y-118798466D01* -X63785439Y-118580000D01* -X63214561Y-118580000D01* -X62687138Y-118798466D01* -X62283466Y-119202138D01* -X62065000Y-119729561D01* -X62065000Y-120300439D01* -X62283466Y-120827862D01* -X62687138Y-121231534D01* -X63214561Y-121450000D01* -X63785439Y-121450000D01* -X64312862Y-121231534D01* -X64695001Y-120849395D01* -X64695001Y-123625605D01* -X64312862Y-123243466D01* -X63785439Y-123025000D01* -X63214561Y-123025000D01* -X62687138Y-123243466D01* -X62283466Y-123647138D01* -X62065000Y-124174561D01* -X62065000Y-124745439D01* -X62283466Y-125272862D01* -X62687138Y-125676534D01* -X63214561Y-125895000D01* -X63785439Y-125895000D01* -X64312862Y-125676534D01* -X64695001Y-125294395D01* -X64695001Y-128133265D01* -X64507745Y-128076861D01* -X63679605Y-128905000D01* -X64507745Y-129733139D01* -X64695001Y-129676735D01* -X64695001Y-165025000D01* -X64262000Y-165025000D01* -X64262000Y-158115000D01* -X64252333Y-158066399D01* -X64224803Y-158025197D01* -X64183601Y-157997667D01* -X64135000Y-157988000D01* -X46355000Y-157988000D01* -X46306399Y-157997667D01* -X46265197Y-158025197D01* -X46237667Y-158066399D01* -X46228000Y-158115000D01* -X46228000Y-165025000D01* -X41086915Y-165025000D01* -X41330002Y-164736678D01* -X41465000Y-164312000D01* -X41465000Y-164037000D01* -X40457000Y-164037000D01* -X40457000Y-164057000D01* -X40203000Y-164057000D01* -X40203000Y-164037000D01* -X39195000Y-164037000D01* -X39195000Y-164312000D01* -X39329998Y-164736678D01* -X39573085Y-165025000D01* -X34086915Y-165025000D01* -X34330002Y-164736678D01* -X34465000Y-164312000D01* -X34465000Y-164037000D01* -X33457000Y-164037000D01* -X33457000Y-164057000D01* -X33203000Y-164057000D01* -X33203000Y-164037000D01* -X33183000Y-164037000D01* -X33183000Y-163783000D01* -X33203000Y-163783000D01* -X33203000Y-162667046D01* -X33457000Y-162667046D01* -X33457000Y-163783000D01* -X34465000Y-163783000D01* -X34465000Y-163508000D01* -X39195000Y-163508000D01* -X39195000Y-163783000D01* -X40203000Y-163783000D01* -X40203000Y-162667046D01* -X40457000Y-162667046D01* -X40457000Y-163783000D01* -X41465000Y-163783000D01* -X41465000Y-163508000D01* -X41330002Y-163083322D01* -X41042763Y-162742632D01* -X40631874Y-162540881D01* -X40457000Y-162667046D01* -X40203000Y-162667046D01* -X40028126Y-162540881D01* -X39617237Y-162742632D01* -X39329998Y-163083322D01* -X39195000Y-163508000D01* -X34465000Y-163508000D01* -X34330002Y-163083322D01* -X34042763Y-162742632D01* -X33631874Y-162540881D01* -X33457000Y-162667046D01* -X33203000Y-162667046D01* -X33028126Y-162540881D01* -X32617237Y-162742632D01* -X32460000Y-162929129D01* -X32460000Y-161507938D01* -X33110732Y-161507938D01* -X33294448Y-161881821D01* -X33618951Y-162169568D01* -X34028869Y-162311229D01* -X34203000Y-162162563D01* -X34203000Y-161337000D01* -X34457000Y-161337000D01* -X34457000Y-162162563D01* -X34631131Y-162311229D01* -X35041049Y-162169568D01* -X35365552Y-161881821D01* -X35549268Y-161507938D01* -X38110732Y-161507938D01* -X38294448Y-161881821D01* -X38618951Y-162169568D01* -X39028869Y-162311229D01* -X39203000Y-162162563D01* -X39203000Y-161337000D01* -X39457000Y-161337000D01* -X39457000Y-162162563D01* -X39631131Y-162311229D01* -X40041049Y-162169568D01* -X40365552Y-161881821D01* -X40549268Y-161507938D01* -X40422734Y-161337000D01* -X39457000Y-161337000D01* -X39203000Y-161337000D01* -X38237266Y-161337000D01* -X38110732Y-161507938D01* -X35549268Y-161507938D01* -X35422734Y-161337000D01* -X34457000Y-161337000D01* -X34203000Y-161337000D01* -X33237266Y-161337000D01* -X33110732Y-161507938D01* -X32460000Y-161507938D01* -X32460000Y-160912062D01* -X33110732Y-160912062D01* -X33237266Y-161083000D01* -X34203000Y-161083000D01* -X34203000Y-160257437D01* -X34457000Y-160257437D01* -X34457000Y-161083000D01* -X35422734Y-161083000D01* -X35549268Y-160912062D01* -X38110732Y-160912062D01* -X38237266Y-161083000D01* -X39203000Y-161083000D01* -X39203000Y-160257437D01* -X39457000Y-160257437D01* -X39457000Y-161083000D01* -X40422734Y-161083000D01* -X40549268Y-160912062D01* -X40365552Y-160538179D01* -X40041049Y-160250432D01* -X39631131Y-160108771D01* -X39457000Y-160257437D01* -X39203000Y-160257437D01* -X39028869Y-160108771D01* -X38618951Y-160250432D01* -X38294448Y-160538179D01* -X38110732Y-160912062D01* -X35549268Y-160912062D01* -X35365552Y-160538179D01* -X35041049Y-160250432D01* -X34631131Y-160108771D01* -X34457000Y-160257437D01* -X34203000Y-160257437D01* -X34028869Y-160108771D01* -X33618951Y-160250432D01* -X33294448Y-160538179D01* -X33110732Y-160912062D01* -X32460000Y-160912062D01* -X32460000Y-155924561D01* -X32855000Y-155924561D01* -X32855000Y-156495439D01* -X33073466Y-157022862D01* -X33477138Y-157426534D01* -X34004561Y-157645000D01* -X34575439Y-157645000D01* -X35102862Y-157426534D01* -X35311651Y-157217745D01* -X38461861Y-157217745D01* -X38535995Y-157463864D01* -X39073223Y-157656965D01* -X39643454Y-157629778D01* -X40044005Y-157463864D01* -X40118139Y-157217745D01* -X39290000Y-156389605D01* -X38461861Y-157217745D01* -X35311651Y-157217745D01* -X35506534Y-157022862D01* -X35725000Y-156495439D01* -X35725000Y-155993223D01* -X37843035Y-155993223D01* -X37870222Y-156563454D01* -X38036136Y-156964005D01* -X38282255Y-157038139D01* -X39110395Y-156210000D01* -X39469605Y-156210000D01* -X40297745Y-157038139D01* -X40543864Y-156964005D01* -X40736965Y-156426777D01* -X40709778Y-155856546D01* -X40543864Y-155455995D01* -X40297745Y-155381861D01* -X39469605Y-156210000D01* -X39110395Y-156210000D01* -X38282255Y-155381861D01* -X38036136Y-155455995D01* -X37843035Y-155993223D01* -X35725000Y-155993223D01* -X35725000Y-155924561D01* -X35506534Y-155397138D01* -X35311651Y-155202255D01* -X38461861Y-155202255D01* -X39290000Y-156030395D01* -X40118139Y-155202255D01* -X40044005Y-154956136D01* -X39506777Y-154763035D01* -X38936546Y-154790222D01* -X38535995Y-154956136D01* -X38461861Y-155202255D01* -X35311651Y-155202255D01* -X35102862Y-154993466D01* -X34575439Y-154775000D01* -X34004561Y-154775000D01* -X33477138Y-154993466D01* -X33073466Y-155397138D01* -X32855000Y-155924561D01* -X32460000Y-155924561D01* -X32460000Y-136795000D01* -X33912560Y-136795000D01* -X33912560Y-138795000D01* -X33961843Y-139042765D01* -X34102191Y-139252809D01* -X34312235Y-139393157D01* -X34560000Y-139442440D01* -X36560000Y-139442440D01* -X36807765Y-139393157D01* -X37017809Y-139252809D01* -X37158157Y-139042765D01* -X37177099Y-138947532D01* -X39587073Y-138947532D01* -X39685736Y-139214387D01* -X40295461Y-139440908D01* -X40945460Y-139416856D01* -X41434264Y-139214387D01* -X41532927Y-138947532D01* -X40560000Y-137974605D01* -X39587073Y-138947532D01* -X37177099Y-138947532D01* -X37207440Y-138795000D01* -X37207440Y-137530461D01* -X38914092Y-137530461D01* -X38938144Y-138180460D01* -X39140613Y-138669264D01* -X39407468Y-138767927D01* -X40380395Y-137795000D01* -X40739605Y-137795000D01* -X41712532Y-138767927D01* -X41979387Y-138669264D01* -X42205908Y-138059539D01* -X42181856Y-137409540D01* -X41979387Y-136920736D01* -X41712532Y-136822073D01* -X40739605Y-137795000D01* -X40380395Y-137795000D01* -X39407468Y-136822073D01* -X39140613Y-136920736D01* -X38914092Y-137530461D01* -X37207440Y-137530461D01* -X37207440Y-136795000D01* -X37177100Y-136642468D01* -X39587073Y-136642468D01* -X40560000Y-137615395D01* -X41532927Y-136642468D01* -X41434264Y-136375613D01* -X40824539Y-136149092D01* -X40174540Y-136173144D01* -X39685736Y-136375613D01* -X39587073Y-136642468D01* -X37177100Y-136642468D01* -X37158157Y-136547235D01* -X37017809Y-136337191D01* -X36807765Y-136196843D01* -X36560000Y-136147560D01* -X34560000Y-136147560D01* -X34312235Y-136196843D01* -X34102191Y-136337191D01* -X33961843Y-136547235D01* -X33912560Y-136795000D01* -X32460000Y-136795000D01* -X32460000Y-132112532D01* -X34587073Y-132112532D01* -X34685736Y-132379387D01* -X35295461Y-132605908D01* -X35945460Y-132581856D01* -X36434264Y-132379387D01* -X36532927Y-132112532D01* -X35560000Y-131139605D01* -X34587073Y-132112532D01* -X32460000Y-132112532D01* -X32460000Y-130695461D01* -X33914092Y-130695461D01* -X33938144Y-131345460D01* -X34140613Y-131834264D01* -X34407468Y-131932927D01* -X35380395Y-130960000D01* -X35739605Y-130960000D01* -X36712532Y-131932927D01* -X36979387Y-131834264D01* -X37205908Y-131224539D01* -X37181856Y-130574540D01* -X36979387Y-130085736D01* -X36712532Y-129987073D01* -X35739605Y-130960000D01* -X35380395Y-130960000D01* -X34407468Y-129987073D01* -X34140613Y-130085736D01* -X33914092Y-130695461D01* -X32460000Y-130695461D01* -X32460000Y-129807468D01* -X34587073Y-129807468D01* -X35560000Y-130780395D01* -X36532927Y-129807468D01* -X36434264Y-129540613D01* -X35824539Y-129314092D01* -X35174540Y-129338144D01* -X34685736Y-129540613D01* -X34587073Y-129807468D01* -X32460000Y-129807468D01* -X32460000Y-125612532D01* -X34587073Y-125612532D01* -X34685736Y-125879387D01* -X35295461Y-126105908D01* -X35945460Y-126081856D01* -X36434264Y-125879387D01* -X36532927Y-125612532D01* -X35560000Y-124639605D01* -X34587073Y-125612532D01* -X32460000Y-125612532D01* -X32460000Y-124195461D01* -X33914092Y-124195461D01* -X33938144Y-124845460D01* -X34140613Y-125334264D01* -X34407468Y-125432927D01* -X35380395Y-124460000D01* -X35739605Y-124460000D01* -X36712532Y-125432927D01* -X36979387Y-125334264D01* -X37205908Y-124724539D01* -X37181856Y-124074540D01* -X36979387Y-123585736D01* -X36712532Y-123487073D01* -X35739605Y-124460000D01* -X35380395Y-124460000D01* -X34407468Y-123487073D01* -X34140613Y-123585736D01* -X33914092Y-124195461D01* -X32460000Y-124195461D01* -X32460000Y-122437532D01* -X34587073Y-122437532D01* -X34685736Y-122704387D01* -X35113653Y-122863364D01* -X34685736Y-123040613D01* -X34587073Y-123307468D01* -X35560000Y-124280395D01* -X36532927Y-123307468D01* -X36434264Y-123040613D01* -X36006347Y-122881636D01* -X36434264Y-122704387D01* -X36532927Y-122437532D01* -X35560000Y-121464605D01* -X34587073Y-122437532D01* -X32460000Y-122437532D01* -X32460000Y-121020461D01* -X33914092Y-121020461D01* -X33938144Y-121670460D01* -X34140613Y-122159264D01* -X34407468Y-122257927D01* -X35380395Y-121285000D01* -X35739605Y-121285000D01* -X36712532Y-122257927D01* -X36979387Y-122159264D01* -X37205908Y-121549539D01* -X37181856Y-120899540D01* -X36979387Y-120410736D01* -X36712532Y-120312073D01* -X35739605Y-121285000D01* -X35380395Y-121285000D01* -X34407468Y-120312073D01* -X34140613Y-120410736D01* -X33914092Y-121020461D01* -X32460000Y-121020461D01* -X32460000Y-120132468D01* -X34587073Y-120132468D01* -X35560000Y-121105395D01* -X36532927Y-120132468D01* -X36434264Y-119865613D01* -X35824539Y-119639092D01* -X35174540Y-119663144D01* -X34685736Y-119865613D01* -X34587073Y-120132468D01* -X32460000Y-120132468D01* -X32460000Y-115937532D01* -X34587073Y-115937532D01* -X34685736Y-116204387D01* -X35295461Y-116430908D01* -X35945460Y-116406856D01* -X36434264Y-116204387D01* -X36532927Y-115937532D01* -X35560000Y-114964605D01* -X34587073Y-115937532D01* -X32460000Y-115937532D01* -X32460000Y-114520461D01* -X33914092Y-114520461D01* -X33938144Y-115170460D01* -X34140613Y-115659264D01* -X34407468Y-115757927D01* -X35380395Y-114785000D01* -X35739605Y-114785000D01* -X36712532Y-115757927D01* -X36979387Y-115659264D01* -X37205908Y-115049539D01* -X37181856Y-114399540D01* -X36979387Y-113910736D01* -X36712532Y-113812073D01* -X35739605Y-114785000D01* -X35380395Y-114785000D01* -X34407468Y-113812073D01* -X34140613Y-113910736D01* -X33914092Y-114520461D01* -X32460000Y-114520461D01* -X32460000Y-113632468D01* -X34587073Y-113632468D01* -X35560000Y-114605395D01* -X36532927Y-113632468D01* -X36434264Y-113365613D01* -X35824539Y-113139092D01* -X35174540Y-113163144D01* -X34685736Y-113365613D01* -X34587073Y-113632468D01* -X32460000Y-113632468D01* -X32460000Y-110140750D01* -X34165000Y-110140750D01* -X34165000Y-110741309D01* -X34261673Y-110974698D01* -X34440301Y-111153327D01* -X34673690Y-111250000D01* -X35274250Y-111250000D01* -X35433000Y-111091250D01* -X35433000Y-109982000D01* -X34323750Y-109982000D01* -X34165000Y-110140750D01* -X32460000Y-110140750D01* -X32460000Y-108968691D01* -X34165000Y-108968691D01* -X34165000Y-109569250D01* -X34323750Y-109728000D01* -X35433000Y-109728000D01* -X35433000Y-108618750D01* -X35687000Y-108618750D01* -X35687000Y-109728000D01* -X35707000Y-109728000D01* -X35707000Y-109982000D01* -X35687000Y-109982000D01* -X35687000Y-111091250D01* -X35845750Y-111250000D01* -X36446310Y-111250000D01* -X36679699Y-111153327D01* -X36858327Y-110974698D01* -X36955000Y-110741309D01* -X36955000Y-110682828D01* -X37309796Y-111037624D01* -X37822517Y-111250000D01* -X38377483Y-111250000D01* -X38407688Y-111237489D01* -X40320198Y-113150000D01* -X39734778Y-113150000D01* -X39133847Y-113398914D01* -X38673914Y-113858847D01* -X38425000Y-114459778D01* -X38425000Y-115110222D01* -X38673914Y-115711153D01* -X39133847Y-116171086D01* -X39734778Y-116420000D01* -X40385222Y-116420000D01* -X40986153Y-116171086D01* -X41446086Y-115711153D01* -X41695000Y-115110222D01* -X41695000Y-114524802D01* -X42420001Y-115249803D01* -X42420000Y-128195153D01* -X42405112Y-128270000D01* -X42420000Y-128344847D01* -X42420000Y-128344851D01* -X42464096Y-128566536D01* -X42632071Y-128817929D01* -X42695530Y-128860331D01* -X43690001Y-129854803D01* -X43690001Y-133506728D01* -X43664476Y-133489673D01* -X41626177Y-131451375D01* -X41695000Y-131285222D01* -X41695000Y-130634778D01* -X41446086Y-130033847D01* -X40986153Y-129573914D01* -X40820000Y-129505091D01* -X40820000Y-125914909D01* -X40986153Y-125846086D01* -X41446086Y-125386153D01* -X41695000Y-124785222D01* -X41695000Y-124134778D01* -X41446086Y-123533847D01* -X40986153Y-123073914D01* -X40499897Y-122872500D01* -X40986153Y-122671086D01* -X41446086Y-122211153D01* -X41695000Y-121610222D01* -X41695000Y-120959778D01* -X41446086Y-120358847D01* -X40986153Y-119898914D01* -X40385222Y-119650000D01* -X39734778Y-119650000D01* -X39133847Y-119898914D01* -X38673914Y-120358847D01* -X38425000Y-120959778D01* -X38425000Y-121610222D01* -X38673914Y-122211153D01* -X39133847Y-122671086D01* -X39620103Y-122872500D01* -X39133847Y-123073914D01* -X38673914Y-123533847D01* -X38425000Y-124134778D01* -X38425000Y-124785222D01* -X38673914Y-125386153D01* -X39133847Y-125846086D01* -X39300001Y-125914909D01* -X39300000Y-129505091D01* -X39133847Y-129573914D01* -X38673914Y-130033847D01* -X38425000Y-130634778D01* -X38425000Y-131285222D01* -X38673914Y-131886153D01* -X39133847Y-132346086D01* -X39734778Y-132595000D01* -X40385222Y-132595000D01* -X40551375Y-132526177D01* -X42420001Y-134394804D01* -X42420000Y-144852710D01* -X42387345Y-144885365D01* -X42245000Y-145229017D01* -X42245000Y-145600983D01* -X42387345Y-145944635D01* -X42650365Y-146207655D01* -X42994017Y-146350000D01* -X43365983Y-146350000D01* -X43690000Y-146215788D01* -X43690000Y-149932710D01* -X43657345Y-149965365D01* -X43515000Y-150309017D01* -X43515000Y-150680983D01* -X43657345Y-151024635D01* -X43920365Y-151287655D01* -X44264017Y-151430000D01* -X44635983Y-151430000D01* -X44979635Y-151287655D01* -X45242655Y-151024635D01* -X45385000Y-150680983D01* -X45385000Y-150309017D01* -X45242655Y-149965365D01* -X45210000Y-149932710D01* -X45210000Y-134976890D01* -X45548524Y-134976890D01* -X45718355Y-135386924D01* -X46108642Y-135815183D01* -X46633108Y-136061486D01* -X46863000Y-135940819D01* -X46863000Y-134747000D01* -X47117000Y-134747000D01* -X47117000Y-135940819D01* -X47346892Y-136061486D01* -X47871358Y-135815183D01* -X48261645Y-135386924D01* -X48431476Y-134976890D01* -X48310155Y-134747000D01* -X47117000Y-134747000D01* -X46863000Y-134747000D01* -X45669845Y-134747000D01* -X45548524Y-134976890D01* -X45210000Y-134976890D01* -X45210000Y-129614846D01* -X45224888Y-129539999D01* -X45210000Y-129465152D01* -X45210000Y-129465148D01* -X45165904Y-129243463D01* -X44997929Y-128992071D01* -X44934473Y-128949671D01* -X43940000Y-127955199D01* -X43940000Y-126303272D01* -X43965528Y-126320329D01* -X45129670Y-127484472D01* -X45172071Y-127547929D01* -X45423463Y-127715904D01* -X45645148Y-127760000D01* -X45645152Y-127760000D01* -X45719999Y-127774888D01* -X45721562Y-127774577D01* -X45919375Y-128070625D01* -X46217761Y-128270000D01* -X45919375Y-128469375D01* -X45591161Y-128960582D01* -X45475908Y-129540000D01* -X45591161Y-130119418D01* -X45919375Y-130610625D01* -X46217761Y-130810000D01* -X45919375Y-131009375D01* -X45591161Y-131500582D01* -X45475908Y-132080000D01* -X45591161Y-132659418D01* -X45919375Y-133150625D01* -X46238478Y-133363843D01* -X46108642Y-133424817D01* -X45718355Y-133853076D01* -X45548524Y-134263110D01* -X45669845Y-134493000D01* -X46863000Y-134493000D01* -X46863000Y-134473000D01* -X47117000Y-134473000D01* -X47117000Y-134493000D01* -X48310155Y-134493000D01* -X48431476Y-134263110D01* -X48261645Y-133853076D01* -X47871358Y-133424817D01* -X47741522Y-133363843D01* -X48060625Y-133150625D01* -X48388839Y-132659418D01* -X48504092Y-132080000D01* -X48388839Y-131500582D01* -X48060625Y-131009375D01* -X47762239Y-130810000D01* -X48060625Y-130610625D01* -X48388839Y-130119418D01* -X48504092Y-129540000D01* -X48388839Y-128960582D01* -X48060625Y-128469375D01* -X47762239Y-128270000D01* -X48060625Y-128070625D01* -X48138811Y-127953612D01* -X48770000Y-128584802D01* -X48770001Y-153107709D01* -X48737345Y-153140365D01* -X48595000Y-153484017D01* -X48595000Y-153855983D01* -X48737345Y-154199635D01* -X49000365Y-154462655D01* -X49344017Y-154605000D01* -X49715983Y-154605000D01* -X49970371Y-154499629D01* -X49865000Y-154754017D01* -X49865000Y-155125983D01* -X50007345Y-155469635D01* -X50270365Y-155732655D01* -X50614017Y-155875000D01* -X50985983Y-155875000D01* -X51329635Y-155732655D01* -X51592655Y-155469635D01* -X51735000Y-155125983D01* -X51735000Y-154754017D01* -X51592655Y-154410365D01* -X51560000Y-154377710D01* -X51560000Y-144945788D01* -X51884017Y-145080000D01* -X52255983Y-145080000D01* -X52599635Y-144937655D01* -X52862655Y-144674635D01* -X53005000Y-144330983D01* -X53005000Y-144284801D01* -X53824473Y-143465329D01* -X53887929Y-143422929D01* -X54055904Y-143171537D01* -X54100000Y-142949852D01* -X54100000Y-142949848D01* -X54114888Y-142875001D01* -X54100000Y-142800154D01* -X54100000Y-131894017D01* -X54310000Y-131894017D01* -X54310000Y-132265983D01* -X54452345Y-132609635D01* -X54485001Y-132642291D01* -X54485000Y-151202710D01* -X54452345Y-151235365D01* -X54310000Y-151579017D01* -X54310000Y-151950983D01* -X54452345Y-152294635D01* -X54715365Y-152557655D01* -X55059017Y-152700000D01* -X55430983Y-152700000D01* -X55774635Y-152557655D01* -X56037655Y-152294635D01* -X56180000Y-151950983D01* -X56180000Y-151579017D01* -X56037655Y-151235365D01* -X56005000Y-151202710D01* -X56005000Y-136567814D01* -X56378223Y-136701965D01* -X56948454Y-136674778D01* -X57349005Y-136508864D01* -X57423139Y-136262745D01* -X56595000Y-135434605D01* -X56580858Y-135448748D01* -X56401253Y-135269143D01* -X56415395Y-135255000D01* -X56401253Y-135240858D01* -X56580858Y-135061252D01* -X56595000Y-135075395D01* -X57423139Y-134247255D01* -X57349005Y-134001136D01* -X56811777Y-133808035D01* -X56241546Y-133835222D01* -X56005000Y-133933203D01* -X56005000Y-132642290D01* -X56037655Y-132609635D01* -X56180000Y-132265983D01* -X56180000Y-131894017D01* -X56037655Y-131550365D01* -X55774635Y-131287345D01* -X55430983Y-131145000D01* -X55059017Y-131145000D01* -X54715365Y-131287345D01* -X54452345Y-131550365D01* -X54310000Y-131894017D01* -X54100000Y-131894017D01* -X54100000Y-130123043D01* -X54374577Y-129939577D01* -X54691740Y-129464909D01* -X54803113Y-128905000D01* -X54691740Y-128345091D01* -X54374577Y-127870423D01* -X53899909Y-127553260D01* -X53481333Y-127470000D01* -X53198667Y-127470000D01* -X52780091Y-127553260D01* -X52305423Y-127870423D01* -X51988260Y-128345091D01* -X51876887Y-128905000D01* -X51988260Y-129464909D01* -X52305423Y-129939577D01* -X52580001Y-130123044D01* -X52580000Y-142560198D01* -X51930199Y-143210000D01* -X51884017Y-143210000D01* -X51560000Y-143344212D01* -X51560000Y-124534851D01* -X51574889Y-124460000D01* -X51560000Y-124385148D01* -X51560000Y-120015000D01* -X51876887Y-120015000D01* -X51988260Y-120574909D01* -X52305423Y-121049577D01* -X52780091Y-121366740D01* -X53198667Y-121450000D01* -X53481333Y-121450000D01* -X53899909Y-121366740D01* -X54374577Y-121049577D01* -X54691740Y-120574909D01* -X54803113Y-120015000D01* -X54691740Y-119455091D01* -X54374577Y-118980423D01* -X53899909Y-118663260D01* -X53481333Y-118580000D01* -X53198667Y-118580000D01* -X52780091Y-118663260D01* -X52305423Y-118980423D01* -X51988260Y-119455091D01* -X51876887Y-120015000D01* -X51560000Y-120015000D01* -X51560000Y-116914846D01* -X51574888Y-116839999D01* -X51560000Y-116765152D01* -X51560000Y-116765148D01* -X51515904Y-116543463D01* -X51347929Y-116292071D01* -X51284473Y-116249671D01* -X50971209Y-115936408D01* -X51044092Y-115570000D01* -X50987315Y-115284561D01* -X51905000Y-115284561D01* -X51905000Y-115855439D01* -X52123466Y-116382862D01* -X52527138Y-116786534D01* -X53054561Y-117005000D01* -X53625439Y-117005000D01* -X54152862Y-116786534D01* -X54556534Y-116382862D01* -X54775000Y-115855439D01* -X54775000Y-115284561D01* -X54556534Y-114757138D01* -X54152862Y-114353466D01* -X53625439Y-114135000D01* -X53054561Y-114135000D01* -X52527138Y-114353466D01* -X52123466Y-114757138D01* -X51905000Y-115284561D01* -X50987315Y-115284561D01* -X50928839Y-114990582D01* -X50600625Y-114499375D01* -X50582381Y-114487184D01* -X50627765Y-114478157D01* -X50837809Y-114337809D01* -X50978157Y-114127765D01* -X51027440Y-113880000D01* -X51027440Y-112180000D01* -X50978157Y-111932235D01* -X50837809Y-111722191D01* -X50627765Y-111581843D01* -X50380000Y-111532560D01* -X48680000Y-111532560D01* -X48432235Y-111581843D01* -X48222191Y-111722191D01* -X48081843Y-111932235D01* -X48032560Y-112180000D01* -X48032560Y-113880000D01* -X48081843Y-114127765D01* -X48222191Y-114337809D01* -X48432235Y-114478157D01* -X48477619Y-114487184D01* -X48459375Y-114499375D01* -X48131161Y-114990582D01* -X48015908Y-115570000D01* -X48131161Y-116149418D01* -X48459375Y-116640625D01* -X48950582Y-116968839D01* -X49383744Y-117055000D01* -X49676256Y-117055000D01* -X49896408Y-117011209D01* -X50040001Y-117154803D01* -X50040000Y-123700000D01* -X48268178Y-123700000D01* -X48060625Y-123389375D01* -X48042381Y-123377184D01* -X48087765Y-123368157D01* -X48297809Y-123227809D01* -X48438157Y-123017765D01* -X48487440Y-122770000D01* -X48487440Y-121070000D01* -X48438157Y-120822235D01* -X48297809Y-120612191D01* -X48087765Y-120471843D01* -X47840000Y-120422560D01* -X46140000Y-120422560D01* -X45892235Y-120471843D01* -X45682191Y-120612191D01* -X45541843Y-120822235D01* -X45492560Y-121070000D01* -X45492560Y-122770000D01* -X45541843Y-123017765D01* -X45682191Y-123227809D01* -X45892235Y-123368157D01* -X45937619Y-123377184D01* -X45919375Y-123389375D01* -X45591161Y-123880582D01* -X45475908Y-124460000D01* -X45591161Y-125039418D01* -X45919375Y-125530625D01* -X46217761Y-125730000D01* -X45919375Y-125929375D01* -X45841190Y-126046388D01* -X45210000Y-125415199D01* -X45210000Y-117154801D01* -X45353592Y-117011209D01* -X45573744Y-117055000D01* -X45866256Y-117055000D01* -X46299418Y-116968839D01* -X46790625Y-116640625D01* -X47118839Y-116149418D01* -X47234092Y-115570000D01* -X47118839Y-114990582D01* -X46790625Y-114499375D01* -X46772381Y-114487184D01* -X46817765Y-114478157D01* -X47027809Y-114337809D01* -X47168157Y-114127765D01* -X47217440Y-113880000D01* -X47217440Y-112180000D01* -X47168157Y-111932235D01* -X47027809Y-111722191D01* -X46817765Y-111581843D01* -X46570000Y-111532560D01* -X44870000Y-111532560D01* -X44622235Y-111581843D01* -X44412191Y-111722191D01* -X44271843Y-111932235D01* -X44222560Y-112180000D01* -X44222560Y-113880000D01* -X44271843Y-114127765D01* -X44412191Y-114337809D01* -X44622235Y-114478157D01* -X44667619Y-114487184D01* -X44649375Y-114499375D01* -X44321161Y-114990582D01* -X44205908Y-115570000D01* -X44278791Y-115936408D01* -X43965530Y-116249669D01* -X43940000Y-116266728D01* -X43940000Y-115009847D01* -X43954888Y-114935000D01* -X43940000Y-114860153D01* -X43940000Y-114860148D01* -X43895904Y-114638463D01* -X43727929Y-114387071D01* -X43664473Y-114344671D01* -X40569801Y-111250000D01* -X40917483Y-111250000D01* -X41430204Y-111037624D01* -X41477828Y-110990000D01* -X43068217Y-110990000D01* -X43180000Y-111012235D01* -X43291783Y-110990000D01* -X43622855Y-110924146D01* -X43998289Y-110673289D01* -X44210963Y-110355000D01* -X52105712Y-110355000D01* -X51905000Y-110839561D01* -X51905000Y-111410439D01* -X52123466Y-111937862D01* -X52527138Y-112341534D01* -X53054561Y-112560000D01* -X53625439Y-112560000D01* -X53678302Y-112538103D01* -X58930001Y-117789803D01* -X58930001Y-128966728D01* -X58904473Y-128949671D01* -X54738688Y-124783887D01* -X54803113Y-124460000D01* -X54691740Y-123900091D01* -X54374577Y-123425423D01* -X53899909Y-123108260D01* -X53481333Y-123025000D01* -X53198667Y-123025000D01* -X52780091Y-123108260D01* -X52305423Y-123425423D01* -X51988260Y-123900091D01* -X51876887Y-124460000D01* -X51988260Y-125019909D01* -X52305423Y-125494577D01* -X52780091Y-125811740D01* -X53198667Y-125895000D01* -X53481333Y-125895000D01* -X53663887Y-125858688D01* -X57660001Y-129854803D01* -X57660001Y-134444107D01* -X57602745Y-134426861D01* -X56774605Y-135255000D01* -X57602745Y-136083139D01* -X57660001Y-136065893D01* -X57660000Y-147392710D01* -X57627345Y-147425365D01* -X57485000Y-147769017D01* -X57485000Y-148140983D01* -X57627345Y-148484635D01* -X57890365Y-148747655D01* -X58234017Y-148890000D01* -X58605983Y-148890000D01* -X58949635Y-148747655D01* -X59212655Y-148484635D01* -X59355000Y-148140983D01* -X59355000Y-147769017D01* -X59212655Y-147425365D01* -X59180000Y-147392710D01* -X59180000Y-144310788D01* -X59504017Y-144445000D01* -X59875983Y-144445000D01* -X60219635Y-144302655D01* -X60482655Y-144039635D01* -X60625000Y-143695983D01* -X60625000Y-143324017D01* -X60482655Y-142980365D01* -X60450000Y-142947710D01* -X60450000Y-136139396D01* -X60782138Y-136471534D01* -X61309561Y-136690000D01* -X61880439Y-136690000D01* -X62407862Y-136471534D01* -X62811534Y-136067862D01* -X63030000Y-135540439D01* -X63030000Y-134969561D01* -X62811534Y-134442138D01* -X62407862Y-134038466D01* -X61880439Y-133820000D01* -X61309561Y-133820000D01* -X60782138Y-134038466D01* -X60450000Y-134370604D01* -X60450000Y-129912745D01* -X62671861Y-129912745D01* -X62745995Y-130158864D01* -X63283223Y-130351965D01* -X63853454Y-130324778D01* -X64254005Y-130158864D01* -X64328139Y-129912745D01* -X63500000Y-129084605D01* -X62671861Y-129912745D01* -X60450000Y-129912745D01* -X60450000Y-128688223D01* -X62053035Y-128688223D01* -X62080222Y-129258454D01* -X62246136Y-129659005D01* -X62492255Y-129733139D01* -X63320395Y-128905000D01* -X62492255Y-128076861D01* -X62246136Y-128150995D01* -X62053035Y-128688223D01* -X60450000Y-128688223D01* -X60450000Y-127897255D01* -X62671861Y-127897255D01* -X63500000Y-128725395D01* -X64328139Y-127897255D01* -X64254005Y-127651136D01* -X63716777Y-127458035D01* -X63146546Y-127485222D01* -X62745995Y-127651136D01* -X62671861Y-127897255D01* -X60450000Y-127897255D01* -X60450000Y-117549846D01* -X60464888Y-117474999D01* -X60450000Y-117400152D01* -X60450000Y-117400148D01* -X60405904Y-117178463D01* -X60237929Y-116927071D01* -X60174473Y-116884671D01* -X54753103Y-111463302D01* -X54775000Y-111410439D01* -X54775000Y-110839561D01* -X54574288Y-110355000D01* -X55356783Y-110355000D01* -X55687855Y-110289146D01* -X56063289Y-110038289D01* -X56314146Y-109662855D01* -X56402235Y-109220000D01* -X56314146Y-108777145D01* -X56063289Y-108401711D01* -X55687855Y-108150854D01* -X55356783Y-108085000D01* -X53632153Y-108085000D01* -X53899909Y-108031740D01* -X54374577Y-107714577D01* -X54392505Y-107687745D01* -X62671861Y-107687745D01* -X62745995Y-107933864D01* -X63283223Y-108126965D01* -X63853454Y-108099778D01* -X64254005Y-107933864D01* -X64328139Y-107687745D01* -X63500000Y-106859605D01* -X62671861Y-107687745D01* -X54392505Y-107687745D01* -X54691740Y-107239909D01* -X54803113Y-106680000D01* -X54759994Y-106463223D01* -X62053035Y-106463223D01* -X62080222Y-107033454D01* -X62246136Y-107434005D01* -X62492255Y-107508139D01* -X63320395Y-106680000D01* -X62492255Y-105851861D01* -X62246136Y-105925995D01* -X62053035Y-106463223D01* -X54759994Y-106463223D01* -X54691740Y-106120091D01* -X54392506Y-105672255D01* -X62671861Y-105672255D01* -X63500000Y-106500395D01* -X64328139Y-105672255D01* -X64254005Y-105426136D01* -X63716777Y-105233035D01* -X63146546Y-105260222D01* -X62745995Y-105426136D01* -X62671861Y-105672255D01* -X54392506Y-105672255D01* -X54374577Y-105645423D01* -X53899909Y-105328260D01* -X53481333Y-105245000D01* -X53198667Y-105245000D01* -X52780091Y-105328260D01* -X52305423Y-105645423D01* -X51988260Y-106120091D01* -X51876887Y-106680000D01* -X51988260Y-107239909D01* -X52305423Y-107714577D01* -X52780091Y-108031740D01* -X53047847Y-108085000D01* -X44315000Y-108085000D01* -X44315000Y-105034396D01* -X44396534Y-104952862D01* -X44615000Y-104425439D01* -X44615000Y-103854561D01* -X44396534Y-103327138D01* -X43992862Y-102923466D01* -X43465439Y-102705000D01* -X42894561Y-102705000D01* -X42367138Y-102923466D01* -X41963466Y-103327138D01* -X41745000Y-103854561D01* -X41745000Y-104425439D01* -X41963466Y-104952862D01* -X42045000Y-105034396D01* -X42045001Y-108720000D01* -X41477828Y-108720000D01* -X41430204Y-108672376D01* -X40917483Y-108460000D01* -X40362517Y-108460000D01* -X39849796Y-108672376D01* -X39457376Y-109064796D01* -X39370000Y-109275740D01* -X39282624Y-109064796D01* -X38890204Y-108672376D01* -X38377483Y-108460000D01* -X37822517Y-108460000D01* -X37309796Y-108672376D01* -X36955000Y-109027172D01* -X36955000Y-108968691D01* -X36858327Y-108735302D01* -X36679699Y-108556673D01* -X36446310Y-108460000D01* -X35845750Y-108460000D01* -X35687000Y-108618750D01* -X35433000Y-108618750D01* -X35274250Y-108460000D01* -X34673690Y-108460000D01* -X34440301Y-108556673D01* -X34261673Y-108735302D01* -X34165000Y-108968691D01* -X32460000Y-108968691D01* -X32460000Y-105491679D01* -X32460091Y-105491740D01* -X32878667Y-105575000D01* -X33161333Y-105575000D01* -X33579909Y-105491740D01* -X34054577Y-105174577D01* -X34371740Y-104699909D01* -X34483113Y-104140000D01* -X34371740Y-103580091D01* -X34054577Y-103105423D01* -X33579909Y-102788260D01* -X33161333Y-102705000D01* -X32878667Y-102705000D01* -X32460091Y-102788260D01* -X32460000Y-102788321D01* -X32460000Y-102257071D01* -X32670959Y-102356914D01* -X32893000Y-102235629D01* -X32893000Y-101092000D01* -X33147000Y-101092000D01* -X33147000Y-102235629D01* -X33369041Y-102356914D01* -X33875134Y-102117389D01* -X34251041Y-101702423D01* -X34411904Y-101314039D01* -X34289915Y-101092000D01* -X33147000Y-101092000D01* -X32893000Y-101092000D01* -X32873000Y-101092000D01* -X32873000Y-100838000D01* -X32893000Y-100838000D01* -X32893000Y-99694371D01* -X33147000Y-99694371D01* -X33147000Y-100838000D01* -X34289915Y-100838000D01* -X34376961Y-100679561D01* -X41745000Y-100679561D01* -X41745000Y-101250439D01* -X41963466Y-101777862D01* -X42367138Y-102181534D01* -X42894561Y-102400000D01* -X43465439Y-102400000D01* -X43992862Y-102181534D01* -X44396534Y-101777862D01* -X44615000Y-101250439D01* -X44615000Y-100679561D01* -X44396534Y-100152138D01* -X43992862Y-99748466D01* -X43465439Y-99530000D01* -X42894561Y-99530000D01* -X42367138Y-99748466D01* -X41963466Y-100152138D01* -X41745000Y-100679561D01* -X34376961Y-100679561D01* -X34411904Y-100615961D01* -X34251041Y-100227577D01* -X33875134Y-99812611D01* -X33369041Y-99573086D01* -X33147000Y-99694371D01* -X32893000Y-99694371D01* -X32670959Y-99573086D01* -X32460000Y-99672929D01* -X32460000Y-93862532D01* -X34032073Y-93862532D01* -X34130736Y-94129387D01* -X34740461Y-94355908D01* -X35390460Y-94331856D01* -X35879264Y-94129387D01* -X35977927Y-93862532D01* -X35005000Y-92889605D01* -X34032073Y-93862532D01* -X32460000Y-93862532D01* -X32460000Y-92445461D01* -X33359092Y-92445461D01* -X33383144Y-93095460D01* -X33585613Y-93584264D01* -X33852468Y-93682927D01* -X34825395Y-92710000D01* -X35184605Y-92710000D01* -X36157532Y-93682927D01* -X36424387Y-93584264D01* -X36650908Y-92974539D01* -X36626856Y-92324540D01* -X36424387Y-91835736D01* -X36157532Y-91737073D01* -X35184605Y-92710000D01* -X34825395Y-92710000D01* -X33852468Y-91737073D01* -X33585613Y-91835736D01* -X33359092Y-92445461D01* -X32460000Y-92445461D01* -X32460000Y-91557468D01* -X34032073Y-91557468D01* -X35005000Y-92530395D01* -X35825395Y-91710000D01* -X38357560Y-91710000D01* -X38357560Y-93710000D01* -X38406843Y-93957765D01* -X38547191Y-94167809D01* -X38757235Y-94308157D01* -X39005000Y-94357440D01* -X41005000Y-94357440D01* -X41252765Y-94308157D01* -X41462809Y-94167809D01* -X41603157Y-93957765D01* -X41652440Y-93710000D01* -X41652440Y-93470000D01* -X44835604Y-93470000D01* -X44503466Y-93802138D01* -X44285000Y-94329561D01* -X44285000Y-94900439D01* -X44503466Y-95427862D01* -X44907138Y-95831534D01* -X45434561Y-96050000D01* -X46005439Y-96050000D01* -X46532862Y-95831534D01* -X46936534Y-95427862D01* -X46958430Y-95375000D01* -X47310199Y-95375000D01* -X47500000Y-95564802D01* -X47500001Y-101672709D01* -X47467345Y-101705365D01* -X47325000Y-102049017D01* -X47325000Y-102420983D01* -X47467345Y-102764635D01* -X47730365Y-103027655D01* -X48074017Y-103170000D01* -X48445983Y-103170000D01* -X48789635Y-103027655D01* -X49052655Y-102764635D01* -X49195000Y-102420983D01* -X49195000Y-102049017D01* -X49153805Y-101949561D01* -X51905000Y-101949561D01* -X51905000Y-102520439D01* -X52123466Y-103047862D01* -X52527138Y-103451534D01* -X53054561Y-103670000D01* -X53625439Y-103670000D01* -X54152862Y-103451534D01* -X54556534Y-103047862D01* -X54748655Y-102584039D01* -X62108096Y-102584039D01* -X62268959Y-102972423D01* -X62644866Y-103387389D01* -X63150959Y-103626914D01* -X63373000Y-103505629D01* -X63373000Y-102362000D01* -X62230085Y-102362000D01* -X62108096Y-102584039D01* -X54748655Y-102584039D01* -X54775000Y-102520439D01* -X54775000Y-101949561D01* -X54748656Y-101885961D01* -X62108096Y-101885961D01* -X62230085Y-102108000D01* -X63373000Y-102108000D01* -X63373000Y-100964371D01* -X63150959Y-100843086D01* -X62644866Y-101082611D01* -X62268959Y-101497577D01* -X62108096Y-101885961D01* -X54748656Y-101885961D01* -X54556534Y-101422138D01* -X54152862Y-101018466D01* -X53625439Y-100800000D01* -X53054561Y-100800000D01* -X52527138Y-101018466D01* -X52123466Y-101422138D01* -X51905000Y-101949561D01* -X49153805Y-101949561D01* -X49052655Y-101705365D01* -X49020000Y-101672710D01* -X49020000Y-95622745D01* -X49891861Y-95622745D01* -X49965995Y-95868864D01* -X50503223Y-96061965D01* -X51073454Y-96034778D01* -X51474005Y-95868864D01* -X51548139Y-95622745D01* -X50720000Y-94794605D01* -X49891861Y-95622745D01* -X49020000Y-95622745D01* -X49020000Y-95324848D01* -X49034888Y-95250000D01* -X49020000Y-95175152D01* -X49020000Y-95175148D01* -X48975904Y-94953463D01* -X48807929Y-94702071D01* -X48744473Y-94659671D01* -X48483025Y-94398223D01* -X49273035Y-94398223D01* -X49300222Y-94968454D01* -X49466136Y-95369005D01* -X49712255Y-95443139D01* -X50540395Y-94615000D01* -X50899605Y-94615000D01* -X51727745Y-95443139D01* -X51973864Y-95369005D01* -X52166965Y-94831777D01* -X52139778Y-94261546D01* -X51974501Y-93862532D01* -X56257073Y-93862532D01* -X56355736Y-94129387D01* -X56965461Y-94355908D01* -X57615460Y-94331856D01* -X58104264Y-94129387D01* -X58202927Y-93862532D01* -X57230000Y-92889605D01* -X56257073Y-93862532D01* -X51974501Y-93862532D01* -X51973864Y-93860995D01* -X51727745Y-93786861D01* -X50899605Y-94615000D01* -X50540395Y-94615000D01* -X49712255Y-93786861D01* -X49466136Y-93860995D01* -X49273035Y-94398223D01* -X48483025Y-94398223D01* -X48215331Y-94130530D01* -X48172929Y-94067071D01* -X47921537Y-93899096D01* -X47699852Y-93855000D01* -X47699847Y-93855000D01* -X47625000Y-93840112D01* -X47550153Y-93855000D01* -X46958430Y-93855000D01* -X46936534Y-93802138D01* -X46741651Y-93607255D01* -X49891861Y-93607255D01* -X50720000Y-94435395D01* -X51548139Y-93607255D01* -X51474005Y-93361136D01* -X50936777Y-93168035D01* -X50366546Y-93195222D01* -X49965995Y-93361136D01* -X49891861Y-93607255D01* -X46741651Y-93607255D01* -X46604396Y-93470000D01* -X47550153Y-93470000D01* -X47625000Y-93484888D01* -X47699847Y-93470000D01* -X47699852Y-93470000D01* -X47921537Y-93425904D01* -X48172929Y-93257929D01* -X48215331Y-93194470D01* -X48399801Y-93010000D01* -X48445983Y-93010000D01* -X48789635Y-92867655D01* -X49052655Y-92604635D01* -X49118586Y-92445461D01* -X55584092Y-92445461D01* -X55608144Y-93095460D01* -X55810613Y-93584264D01* -X56077468Y-93682927D01* -X57050395Y-92710000D01* -X57409605Y-92710000D01* -X58382532Y-93682927D01* -X58649387Y-93584264D01* -X58875908Y-92974539D01* -X58851856Y-92324540D01* -X58649387Y-91835736D01* -X58382532Y-91737073D01* -X57409605Y-92710000D01* -X57050395Y-92710000D01* -X56077468Y-91737073D01* -X55810613Y-91835736D01* -X55584092Y-92445461D01* -X49118586Y-92445461D01* -X49195000Y-92260983D01* -X49195000Y-91889017D01* -X49057669Y-91557468D01* -X56257073Y-91557468D01* -X57230000Y-92530395D01* -X58050395Y-91710000D01* -X60582560Y-91710000D01* -X60582560Y-93710000D01* -X60631843Y-93957765D01* -X60772191Y-94167809D01* -X60982235Y-94308157D01* -X61230000Y-94357440D01* -X63230000Y-94357440D01* -X63477765Y-94308157D01* -X63687809Y-94167809D01* -X63828157Y-93957765D01* -X63877440Y-93710000D01* -X63877440Y-91710000D01* -X63828157Y-91462235D01* -X63687809Y-91252191D01* -X63477765Y-91111843D01* -X63230000Y-91062560D01* -X61230000Y-91062560D01* -X60982235Y-91111843D01* -X60772191Y-91252191D01* -X60631843Y-91462235D01* -X60582560Y-91710000D01* -X58050395Y-91710000D01* -X58202927Y-91557468D01* -X58104264Y-91290613D01* -X57494539Y-91064092D01* -X56844540Y-91088144D01* -X56355736Y-91290613D01* -X56257073Y-91557468D01* -X49057669Y-91557468D01* -X49052655Y-91545365D01* -X48789635Y-91282345D01* -X48445983Y-91140000D01* -X48074017Y-91140000D01* -X47730365Y-91282345D01* -X47467345Y-91545365D01* -X47325000Y-91889017D01* -X47325000Y-91935199D01* -X47310199Y-91950000D01* -X41652440Y-91950000D01* -X41652440Y-91710000D01* -X41603157Y-91462235D01* -X41462809Y-91252191D01* -X41252765Y-91111843D01* -X41005000Y-91062560D01* -X39005000Y-91062560D01* -X38757235Y-91111843D01* -X38547191Y-91252191D01* -X38406843Y-91462235D01* -X38357560Y-91710000D01* -X35825395Y-91710000D01* -X35977927Y-91557468D01* -X35879264Y-91290613D01* -X35269539Y-91064092D01* -X34619540Y-91088144D01* -X34130736Y-91290613D01* -X34032073Y-91557468D01* -X32460000Y-91557468D01* -X32460000Y-84804561D01* -X36665000Y-84804561D01* -X36665000Y-85375439D01* -X36883466Y-85902862D01* -X37287138Y-86306534D01* -X37814561Y-86525000D01* -X38385439Y-86525000D01* -X38912862Y-86306534D01* -X39316534Y-85902862D01* -X39535000Y-85375439D01* -X39535000Y-84804561D01* -X39316534Y-84277138D01* -X38912862Y-83873466D01* -X38385439Y-83655000D01* -X37814561Y-83655000D01* -X37287138Y-83873466D01* -X36883466Y-84277138D01* -X36665000Y-84804561D01* -X32460000Y-84804561D01* -X32460000Y-74930000D01* -X36636887Y-74930000D01* -X36748260Y-75489909D01* -X37065423Y-75964577D01* -X37340001Y-76148044D01* -X37340000Y-81840153D01* -X37325112Y-81915000D01* -X37340000Y-81989847D01* -X37340000Y-81989851D01* -X37384096Y-82211536D01* -X37552071Y-82462929D01* -X37615530Y-82505331D01* -X42589671Y-87479473D01* -X42632071Y-87542929D01* -X42883463Y-87710904D01* -X43105148Y-87755000D01* -X43105153Y-87755000D01* -X43180000Y-87769888D01* -X43254847Y-87755000D01* -X50090153Y-87755000D01* -X50165000Y-87769888D01* -X50239847Y-87755000D01* -X50239852Y-87755000D01* -X50461537Y-87710904D01* -X50712929Y-87542929D01* -X50755331Y-87479470D01* -X51769966Y-86464835D01* -X51794506Y-86475000D01* -X52345494Y-86475000D01* -X52854540Y-86264147D01* -X53244147Y-85874540D01* -X53455000Y-85365494D01* -X53455000Y-85090000D01* -X58226887Y-85090000D01* -X58338260Y-85649909D01* -X58655423Y-86124577D01* -X59130091Y-86441740D01* -X59548667Y-86525000D01* -X59831333Y-86525000D01* -X60249909Y-86441740D01* -X60724577Y-86124577D01* -X61041740Y-85649909D01* -X61153113Y-85090000D01* -X61041740Y-84530091D01* -X60724577Y-84055423D01* -X60249909Y-83738260D01* -X59831333Y-83655000D01* -X59548667Y-83655000D01* -X59130091Y-83738260D01* -X58655423Y-84055423D01* -X58338260Y-84530091D01* -X58226887Y-85090000D01* -X53455000Y-85090000D01* -X53455000Y-84814506D01* -X53244147Y-84305460D01* -X52886127Y-83947440D01* -X54090000Y-83947440D01* -X54337765Y-83898157D01* -X54547809Y-83757809D01* -X54688157Y-83547765D01* -X54737440Y-83300000D01* -X54737440Y-81800000D01* -X54688157Y-81552235D01* -X54547809Y-81342191D01* -X54337765Y-81201843D01* -X54090000Y-81152560D01* -X52590000Y-81152560D01* -X52342235Y-81201843D01* -X52132191Y-81342191D01* -X51991843Y-81552235D01* -X51953531Y-81744844D01* -X51584540Y-81375853D01* -X51075494Y-81165000D01* -X50524506Y-81165000D01* -X50015460Y-81375853D01* -X49625853Y-81765460D01* -X49530000Y-81996870D01* -X49434147Y-81765460D01* -X49044540Y-81375853D01* -X48535494Y-81165000D01* -X47984506Y-81165000D01* -X47475460Y-81375853D01* -X47085853Y-81765460D01* -X46990000Y-81996870D01* -X46894147Y-81765460D01* -X46504540Y-81375853D01* -X45995494Y-81165000D01* -X45444506Y-81165000D01* -X44935460Y-81375853D01* -X44545853Y-81765460D01* -X44335000Y-82274506D01* -X44335000Y-82825494D01* -X44545853Y-83334540D01* -X44935460Y-83724147D01* -X45444506Y-83935000D01* -X45995494Y-83935000D01* -X46504540Y-83724147D01* -X46894147Y-83334540D01* -X46990000Y-83103130D01* -X47085853Y-83334540D01* -X47475460Y-83724147D01* -X47984506Y-83935000D01* -X48535494Y-83935000D01* -X49044540Y-83724147D01* -X49434147Y-83334540D01* -X49530000Y-83103130D01* -X49625853Y-83334540D01* -X50015460Y-83724147D01* -X50524506Y-83935000D01* -X51075494Y-83935000D01* -X51584540Y-83724147D01* -X51953531Y-83355156D01* -X51991843Y-83547765D01* -X52096905Y-83705000D01* -X51794506Y-83705000D01* -X51285460Y-83915853D01* -X50895853Y-84305460D01* -X50800000Y-84536870D01* -X50704147Y-84305460D01* -X50314540Y-83915853D01* -X49805494Y-83705000D01* -X49254506Y-83705000D01* -X48745460Y-83915853D01* -X48355853Y-84305460D01* -X48260000Y-84536870D01* -X48164147Y-84305460D01* -X47774540Y-83915853D01* -X47265494Y-83705000D01* -X46714506Y-83705000D01* -X46205460Y-83915853D01* -X45815853Y-84305460D01* -X45720000Y-84536870D01* -X45624147Y-84305460D01* -X45234540Y-83915853D01* -X44725494Y-83705000D01* -X44174506Y-83705000D01* -X43665460Y-83915853D01* -X43275853Y-84305460D01* -X43065000Y-84814506D01* -X43065000Y-85365494D01* -X43275853Y-85874540D01* -X43636313Y-86235000D01* -X43494802Y-86235000D01* -X38860000Y-81600199D01* -X38860000Y-76148043D01* -X39134577Y-75964577D01* -X39304228Y-75710676D01* -X40500000Y-75710676D01* -X40500000Y-76689324D01* -X40874513Y-77593478D01* -X41566522Y-78285487D01* -X42470676Y-78660000D01* -X43449324Y-78660000D01* -X44353478Y-78285487D01* -X45045487Y-77593478D01* -X45420000Y-76689324D01* -X45420000Y-75710676D01* -X52370000Y-75710676D01* -X52370000Y-76689324D01* -X52744513Y-77593478D01* -X53436522Y-78285487D01* -X54340676Y-78660000D01* -X55319324Y-78660000D01* -X56223478Y-78285487D01* -X56915487Y-77593478D01* -X57290000Y-76689324D01* -X57290000Y-75710676D01* -X56915487Y-74806522D01* -X56753526Y-74644561D01* -X58255000Y-74644561D01* -X58255000Y-75215439D01* -X58473466Y-75742862D01* -X58877138Y-76146534D01* -X59404561Y-76365000D01* -X59975439Y-76365000D01* -X60502862Y-76146534D01* -X60906534Y-75742862D01* -X61125000Y-75215439D01* -X61125000Y-74644561D01* -X60906534Y-74117138D01* -X60502862Y-73713466D01* -X59975439Y-73495000D01* -X59404561Y-73495000D01* -X58877138Y-73713466D01* -X58473466Y-74117138D01* -X58255000Y-74644561D01* -X56753526Y-74644561D01* -X56223478Y-74114513D01* -X55319324Y-73740000D01* -X54340676Y-73740000D01* -X53436522Y-74114513D01* -X52744513Y-74806522D01* -X52370000Y-75710676D01* -X45420000Y-75710676D01* -X45045487Y-74806522D01* -X44353478Y-74114513D01* -X43449324Y-73740000D01* -X42470676Y-73740000D01* -X41566522Y-74114513D01* -X40874513Y-74806522D01* -X40500000Y-75710676D01* -X39304228Y-75710676D01* -X39451740Y-75489909D01* -X39563113Y-74930000D01* -X39451740Y-74370091D01* -X39134577Y-73895423D01* -X38659909Y-73578260D01* -X38241333Y-73495000D01* -X37958667Y-73495000D01* -X37540091Y-73578260D01* -X37065423Y-73895423D01* -X36748260Y-74370091D01* -X36636887Y-74930000D01* -X32460000Y-74930000D01* -X32460000Y-68655000D01* -X64695000Y-68655000D01* -X64695000Y-101457792D01* -X64695000Y-101457792D01* -G37* -X64695000Y-101457792D02* -X64355134Y-101082611D01* -X63849041Y-100843086D01* -X63627000Y-100964371D01* -X63627000Y-102108000D01* -X63647000Y-102108000D01* -X63647000Y-102362000D01* -X63627000Y-102362000D01* -X63627000Y-103505629D01* -X63849041Y-103626914D01* -X64355134Y-103387389D01* -X64695000Y-103012208D01* -X64695000Y-105908265D01* -X64507745Y-105851861D01* -X63679605Y-106680000D01* -X64507745Y-107508139D01* -X64695000Y-107451735D01* -X64695000Y-110330514D01* -X64534577Y-110090423D01* -X64059909Y-109773260D01* -X63641333Y-109690000D01* -X63358667Y-109690000D01* -X62940091Y-109773260D01* -X62465423Y-110090423D01* -X62148260Y-110565091D01* -X62036887Y-111125000D01* -X62148260Y-111684909D01* -X62465423Y-112159577D01* -X62940091Y-112476740D01* -X63358667Y-112560000D01* -X63641333Y-112560000D01* -X64059909Y-112476740D01* -X64534577Y-112159577D01* -X64695000Y-111919486D01* -X64695000Y-114775514D01* -X64534577Y-114535423D01* -X64059909Y-114218260D01* -X63641333Y-114135000D01* -X63358667Y-114135000D01* -X62940091Y-114218260D01* -X62465423Y-114535423D01* -X62148260Y-115010091D01* -X62036887Y-115570000D01* -X62148260Y-116129909D01* -X62465423Y-116604577D01* -X62940091Y-116921740D01* -X63358667Y-117005000D01* -X63641333Y-117005000D01* -X64059909Y-116921740D01* -X64534577Y-116604577D01* -X64695000Y-116364486D01* -X64695001Y-119180605D01* -X64312862Y-118798466D01* -X63785439Y-118580000D01* -X63214561Y-118580000D01* -X62687138Y-118798466D01* -X62283466Y-119202138D01* -X62065000Y-119729561D01* -X62065000Y-120300439D01* -X62283466Y-120827862D01* -X62687138Y-121231534D01* -X63214561Y-121450000D01* -X63785439Y-121450000D01* -X64312862Y-121231534D01* -X64695001Y-120849395D01* -X64695001Y-123625605D01* -X64312862Y-123243466D01* -X63785439Y-123025000D01* -X63214561Y-123025000D01* -X62687138Y-123243466D01* -X62283466Y-123647138D01* -X62065000Y-124174561D01* -X62065000Y-124745439D01* -X62283466Y-125272862D01* -X62687138Y-125676534D01* -X63214561Y-125895000D01* -X63785439Y-125895000D01* -X64312862Y-125676534D01* -X64695001Y-125294395D01* -X64695001Y-128133265D01* -X64507745Y-128076861D01* -X63679605Y-128905000D01* -X64507745Y-129733139D01* -X64695001Y-129676735D01* -X64695001Y-165025000D01* -X64262000Y-165025000D01* -X64262000Y-158115000D01* -X64252333Y-158066399D01* -X64224803Y-158025197D01* -X64183601Y-157997667D01* -X64135000Y-157988000D01* -X46355000Y-157988000D01* -X46306399Y-157997667D01* -X46265197Y-158025197D01* -X46237667Y-158066399D01* -X46228000Y-158115000D01* -X46228000Y-165025000D01* -X41086915Y-165025000D01* -X41330002Y-164736678D01* -X41465000Y-164312000D01* -X41465000Y-164037000D01* -X40457000Y-164037000D01* -X40457000Y-164057000D01* -X40203000Y-164057000D01* -X40203000Y-164037000D01* -X39195000Y-164037000D01* -X39195000Y-164312000D01* -X39329998Y-164736678D01* -X39573085Y-165025000D01* -X34086915Y-165025000D01* -X34330002Y-164736678D01* -X34465000Y-164312000D01* -X34465000Y-164037000D01* -X33457000Y-164037000D01* -X33457000Y-164057000D01* -X33203000Y-164057000D01* -X33203000Y-164037000D01* -X33183000Y-164037000D01* -X33183000Y-163783000D01* -X33203000Y-163783000D01* -X33203000Y-162667046D01* -X33457000Y-162667046D01* -X33457000Y-163783000D01* -X34465000Y-163783000D01* -X34465000Y-163508000D01* -X39195000Y-163508000D01* -X39195000Y-163783000D01* -X40203000Y-163783000D01* -X40203000Y-162667046D01* -X40457000Y-162667046D01* -X40457000Y-163783000D01* -X41465000Y-163783000D01* -X41465000Y-163508000D01* -X41330002Y-163083322D01* -X41042763Y-162742632D01* -X40631874Y-162540881D01* -X40457000Y-162667046D01* -X40203000Y-162667046D01* -X40028126Y-162540881D01* -X39617237Y-162742632D01* -X39329998Y-163083322D01* -X39195000Y-163508000D01* -X34465000Y-163508000D01* -X34330002Y-163083322D01* -X34042763Y-162742632D01* -X33631874Y-162540881D01* -X33457000Y-162667046D01* -X33203000Y-162667046D01* -X33028126Y-162540881D01* -X32617237Y-162742632D01* -X32460000Y-162929129D01* -X32460000Y-161507938D01* -X33110732Y-161507938D01* -X33294448Y-161881821D01* -X33618951Y-162169568D01* -X34028869Y-162311229D01* -X34203000Y-162162563D01* -X34203000Y-161337000D01* -X34457000Y-161337000D01* -X34457000Y-162162563D01* -X34631131Y-162311229D01* -X35041049Y-162169568D01* -X35365552Y-161881821D01* -X35549268Y-161507938D01* -X38110732Y-161507938D01* -X38294448Y-161881821D01* -X38618951Y-162169568D01* -X39028869Y-162311229D01* -X39203000Y-162162563D01* -X39203000Y-161337000D01* -X39457000Y-161337000D01* -X39457000Y-162162563D01* -X39631131Y-162311229D01* -X40041049Y-162169568D01* -X40365552Y-161881821D01* -X40549268Y-161507938D01* -X40422734Y-161337000D01* -X39457000Y-161337000D01* -X39203000Y-161337000D01* -X38237266Y-161337000D01* -X38110732Y-161507938D01* -X35549268Y-161507938D01* -X35422734Y-161337000D01* -X34457000Y-161337000D01* -X34203000Y-161337000D01* -X33237266Y-161337000D01* -X33110732Y-161507938D01* -X32460000Y-161507938D01* -X32460000Y-160912062D01* -X33110732Y-160912062D01* -X33237266Y-161083000D01* -X34203000Y-161083000D01* -X34203000Y-160257437D01* -X34457000Y-160257437D01* -X34457000Y-161083000D01* -X35422734Y-161083000D01* -X35549268Y-160912062D01* -X38110732Y-160912062D01* -X38237266Y-161083000D01* -X39203000Y-161083000D01* -X39203000Y-160257437D01* -X39457000Y-160257437D01* -X39457000Y-161083000D01* -X40422734Y-161083000D01* -X40549268Y-160912062D01* -X40365552Y-160538179D01* -X40041049Y-160250432D01* -X39631131Y-160108771D01* -X39457000Y-160257437D01* -X39203000Y-160257437D01* -X39028869Y-160108771D01* -X38618951Y-160250432D01* -X38294448Y-160538179D01* -X38110732Y-160912062D01* -X35549268Y-160912062D01* -X35365552Y-160538179D01* -X35041049Y-160250432D01* -X34631131Y-160108771D01* -X34457000Y-160257437D01* -X34203000Y-160257437D01* -X34028869Y-160108771D01* -X33618951Y-160250432D01* -X33294448Y-160538179D01* -X33110732Y-160912062D01* -X32460000Y-160912062D01* -X32460000Y-155924561D01* -X32855000Y-155924561D01* -X32855000Y-156495439D01* -X33073466Y-157022862D01* -X33477138Y-157426534D01* -X34004561Y-157645000D01* -X34575439Y-157645000D01* -X35102862Y-157426534D01* -X35311651Y-157217745D01* -X38461861Y-157217745D01* -X38535995Y-157463864D01* -X39073223Y-157656965D01* -X39643454Y-157629778D01* -X40044005Y-157463864D01* -X40118139Y-157217745D01* -X39290000Y-156389605D01* -X38461861Y-157217745D01* -X35311651Y-157217745D01* -X35506534Y-157022862D01* -X35725000Y-156495439D01* -X35725000Y-155993223D01* -X37843035Y-155993223D01* -X37870222Y-156563454D01* -X38036136Y-156964005D01* -X38282255Y-157038139D01* -X39110395Y-156210000D01* -X39469605Y-156210000D01* -X40297745Y-157038139D01* -X40543864Y-156964005D01* -X40736965Y-156426777D01* -X40709778Y-155856546D01* -X40543864Y-155455995D01* -X40297745Y-155381861D01* -X39469605Y-156210000D01* -X39110395Y-156210000D01* -X38282255Y-155381861D01* -X38036136Y-155455995D01* -X37843035Y-155993223D01* -X35725000Y-155993223D01* -X35725000Y-155924561D01* -X35506534Y-155397138D01* -X35311651Y-155202255D01* -X38461861Y-155202255D01* -X39290000Y-156030395D01* -X40118139Y-155202255D01* -X40044005Y-154956136D01* -X39506777Y-154763035D01* -X38936546Y-154790222D01* -X38535995Y-154956136D01* -X38461861Y-155202255D01* -X35311651Y-155202255D01* -X35102862Y-154993466D01* -X34575439Y-154775000D01* -X34004561Y-154775000D01* -X33477138Y-154993466D01* -X33073466Y-155397138D01* -X32855000Y-155924561D01* -X32460000Y-155924561D01* -X32460000Y-136795000D01* -X33912560Y-136795000D01* -X33912560Y-138795000D01* -X33961843Y-139042765D01* -X34102191Y-139252809D01* -X34312235Y-139393157D01* -X34560000Y-139442440D01* -X36560000Y-139442440D01* -X36807765Y-139393157D01* -X37017809Y-139252809D01* -X37158157Y-139042765D01* -X37177099Y-138947532D01* -X39587073Y-138947532D01* -X39685736Y-139214387D01* -X40295461Y-139440908D01* -X40945460Y-139416856D01* -X41434264Y-139214387D01* -X41532927Y-138947532D01* -X40560000Y-137974605D01* -X39587073Y-138947532D01* -X37177099Y-138947532D01* -X37207440Y-138795000D01* -X37207440Y-137530461D01* -X38914092Y-137530461D01* -X38938144Y-138180460D01* -X39140613Y-138669264D01* -X39407468Y-138767927D01* -X40380395Y-137795000D01* -X40739605Y-137795000D01* -X41712532Y-138767927D01* -X41979387Y-138669264D01* -X42205908Y-138059539D01* -X42181856Y-137409540D01* -X41979387Y-136920736D01* -X41712532Y-136822073D01* -X40739605Y-137795000D01* -X40380395Y-137795000D01* -X39407468Y-136822073D01* -X39140613Y-136920736D01* -X38914092Y-137530461D01* -X37207440Y-137530461D01* -X37207440Y-136795000D01* -X37177100Y-136642468D01* -X39587073Y-136642468D01* -X40560000Y-137615395D01* -X41532927Y-136642468D01* -X41434264Y-136375613D01* -X40824539Y-136149092D01* -X40174540Y-136173144D01* -X39685736Y-136375613D01* -X39587073Y-136642468D01* -X37177100Y-136642468D01* -X37158157Y-136547235D01* -X37017809Y-136337191D01* -X36807765Y-136196843D01* -X36560000Y-136147560D01* -X34560000Y-136147560D01* -X34312235Y-136196843D01* -X34102191Y-136337191D01* -X33961843Y-136547235D01* -X33912560Y-136795000D01* -X32460000Y-136795000D01* -X32460000Y-132112532D01* -X34587073Y-132112532D01* -X34685736Y-132379387D01* -X35295461Y-132605908D01* -X35945460Y-132581856D01* -X36434264Y-132379387D01* -X36532927Y-132112532D01* -X35560000Y-131139605D01* -X34587073Y-132112532D01* -X32460000Y-132112532D01* -X32460000Y-130695461D01* -X33914092Y-130695461D01* -X33938144Y-131345460D01* -X34140613Y-131834264D01* -X34407468Y-131932927D01* -X35380395Y-130960000D01* -X35739605Y-130960000D01* -X36712532Y-131932927D01* -X36979387Y-131834264D01* -X37205908Y-131224539D01* -X37181856Y-130574540D01* -X36979387Y-130085736D01* -X36712532Y-129987073D01* -X35739605Y-130960000D01* -X35380395Y-130960000D01* -X34407468Y-129987073D01* -X34140613Y-130085736D01* -X33914092Y-130695461D01* -X32460000Y-130695461D01* -X32460000Y-129807468D01* -X34587073Y-129807468D01* -X35560000Y-130780395D01* -X36532927Y-129807468D01* -X36434264Y-129540613D01* -X35824539Y-129314092D01* -X35174540Y-129338144D01* -X34685736Y-129540613D01* -X34587073Y-129807468D01* -X32460000Y-129807468D01* -X32460000Y-125612532D01* -X34587073Y-125612532D01* -X34685736Y-125879387D01* -X35295461Y-126105908D01* -X35945460Y-126081856D01* -X36434264Y-125879387D01* -X36532927Y-125612532D01* -X35560000Y-124639605D01* -X34587073Y-125612532D01* -X32460000Y-125612532D01* -X32460000Y-124195461D01* -X33914092Y-124195461D01* -X33938144Y-124845460D01* -X34140613Y-125334264D01* -X34407468Y-125432927D01* -X35380395Y-124460000D01* -X35739605Y-124460000D01* -X36712532Y-125432927D01* -X36979387Y-125334264D01* -X37205908Y-124724539D01* -X37181856Y-124074540D01* -X36979387Y-123585736D01* -X36712532Y-123487073D01* -X35739605Y-124460000D01* -X35380395Y-124460000D01* -X34407468Y-123487073D01* -X34140613Y-123585736D01* -X33914092Y-124195461D01* -X32460000Y-124195461D01* -X32460000Y-122437532D01* -X34587073Y-122437532D01* -X34685736Y-122704387D01* -X35113653Y-122863364D01* -X34685736Y-123040613D01* -X34587073Y-123307468D01* -X35560000Y-124280395D01* -X36532927Y-123307468D01* -X36434264Y-123040613D01* -X36006347Y-122881636D01* -X36434264Y-122704387D01* -X36532927Y-122437532D01* -X35560000Y-121464605D01* -X34587073Y-122437532D01* -X32460000Y-122437532D01* -X32460000Y-121020461D01* -X33914092Y-121020461D01* -X33938144Y-121670460D01* -X34140613Y-122159264D01* -X34407468Y-122257927D01* -X35380395Y-121285000D01* -X35739605Y-121285000D01* -X36712532Y-122257927D01* -X36979387Y-122159264D01* -X37205908Y-121549539D01* -X37181856Y-120899540D01* -X36979387Y-120410736D01* -X36712532Y-120312073D01* -X35739605Y-121285000D01* -X35380395Y-121285000D01* -X34407468Y-120312073D01* -X34140613Y-120410736D01* -X33914092Y-121020461D01* -X32460000Y-121020461D01* -X32460000Y-120132468D01* -X34587073Y-120132468D01* -X35560000Y-121105395D01* -X36532927Y-120132468D01* -X36434264Y-119865613D01* -X35824539Y-119639092D01* -X35174540Y-119663144D01* -X34685736Y-119865613D01* -X34587073Y-120132468D01* -X32460000Y-120132468D01* -X32460000Y-115937532D01* -X34587073Y-115937532D01* -X34685736Y-116204387D01* -X35295461Y-116430908D01* -X35945460Y-116406856D01* -X36434264Y-116204387D01* -X36532927Y-115937532D01* -X35560000Y-114964605D01* -X34587073Y-115937532D01* -X32460000Y-115937532D01* -X32460000Y-114520461D01* -X33914092Y-114520461D01* -X33938144Y-115170460D01* -X34140613Y-115659264D01* -X34407468Y-115757927D01* -X35380395Y-114785000D01* -X35739605Y-114785000D01* -X36712532Y-115757927D01* -X36979387Y-115659264D01* -X37205908Y-115049539D01* -X37181856Y-114399540D01* -X36979387Y-113910736D01* -X36712532Y-113812073D01* -X35739605Y-114785000D01* -X35380395Y-114785000D01* -X34407468Y-113812073D01* -X34140613Y-113910736D01* -X33914092Y-114520461D01* -X32460000Y-114520461D01* -X32460000Y-113632468D01* -X34587073Y-113632468D01* -X35560000Y-114605395D01* -X36532927Y-113632468D01* -X36434264Y-113365613D01* -X35824539Y-113139092D01* -X35174540Y-113163144D01* -X34685736Y-113365613D01* -X34587073Y-113632468D01* -X32460000Y-113632468D01* -X32460000Y-110140750D01* -X34165000Y-110140750D01* -X34165000Y-110741309D01* -X34261673Y-110974698D01* -X34440301Y-111153327D01* -X34673690Y-111250000D01* -X35274250Y-111250000D01* -X35433000Y-111091250D01* -X35433000Y-109982000D01* -X34323750Y-109982000D01* -X34165000Y-110140750D01* -X32460000Y-110140750D01* -X32460000Y-108968691D01* -X34165000Y-108968691D01* -X34165000Y-109569250D01* -X34323750Y-109728000D01* -X35433000Y-109728000D01* -X35433000Y-108618750D01* -X35687000Y-108618750D01* -X35687000Y-109728000D01* -X35707000Y-109728000D01* -X35707000Y-109982000D01* -X35687000Y-109982000D01* -X35687000Y-111091250D01* -X35845750Y-111250000D01* -X36446310Y-111250000D01* -X36679699Y-111153327D01* -X36858327Y-110974698D01* -X36955000Y-110741309D01* -X36955000Y-110682828D01* -X37309796Y-111037624D01* -X37822517Y-111250000D01* -X38377483Y-111250000D01* -X38407688Y-111237489D01* -X40320198Y-113150000D01* -X39734778Y-113150000D01* -X39133847Y-113398914D01* -X38673914Y-113858847D01* -X38425000Y-114459778D01* -X38425000Y-115110222D01* -X38673914Y-115711153D01* -X39133847Y-116171086D01* -X39734778Y-116420000D01* -X40385222Y-116420000D01* -X40986153Y-116171086D01* -X41446086Y-115711153D01* -X41695000Y-115110222D01* -X41695000Y-114524802D01* -X42420001Y-115249803D01* -X42420000Y-128195153D01* -X42405112Y-128270000D01* -X42420000Y-128344847D01* -X42420000Y-128344851D01* -X42464096Y-128566536D01* -X42632071Y-128817929D01* -X42695530Y-128860331D01* -X43690001Y-129854803D01* -X43690001Y-133506728D01* -X43664476Y-133489673D01* -X41626177Y-131451375D01* -X41695000Y-131285222D01* -X41695000Y-130634778D01* -X41446086Y-130033847D01* -X40986153Y-129573914D01* -X40820000Y-129505091D01* -X40820000Y-125914909D01* -X40986153Y-125846086D01* -X41446086Y-125386153D01* -X41695000Y-124785222D01* -X41695000Y-124134778D01* -X41446086Y-123533847D01* -X40986153Y-123073914D01* -X40499897Y-122872500D01* -X40986153Y-122671086D01* -X41446086Y-122211153D01* -X41695000Y-121610222D01* -X41695000Y-120959778D01* -X41446086Y-120358847D01* -X40986153Y-119898914D01* -X40385222Y-119650000D01* -X39734778Y-119650000D01* -X39133847Y-119898914D01* -X38673914Y-120358847D01* -X38425000Y-120959778D01* -X38425000Y-121610222D01* -X38673914Y-122211153D01* -X39133847Y-122671086D01* -X39620103Y-122872500D01* -X39133847Y-123073914D01* -X38673914Y-123533847D01* -X38425000Y-124134778D01* -X38425000Y-124785222D01* -X38673914Y-125386153D01* -X39133847Y-125846086D01* -X39300001Y-125914909D01* -X39300000Y-129505091D01* -X39133847Y-129573914D01* -X38673914Y-130033847D01* -X38425000Y-130634778D01* -X38425000Y-131285222D01* -X38673914Y-131886153D01* -X39133847Y-132346086D01* -X39734778Y-132595000D01* -X40385222Y-132595000D01* -X40551375Y-132526177D01* -X42420001Y-134394804D01* -X42420000Y-144852710D01* -X42387345Y-144885365D01* -X42245000Y-145229017D01* -X42245000Y-145600983D01* -X42387345Y-145944635D01* -X42650365Y-146207655D01* -X42994017Y-146350000D01* -X43365983Y-146350000D01* -X43690000Y-146215788D01* -X43690000Y-149932710D01* -X43657345Y-149965365D01* -X43515000Y-150309017D01* -X43515000Y-150680983D01* -X43657345Y-151024635D01* -X43920365Y-151287655D01* -X44264017Y-151430000D01* -X44635983Y-151430000D01* -X44979635Y-151287655D01* -X45242655Y-151024635D01* -X45385000Y-150680983D01* -X45385000Y-150309017D01* -X45242655Y-149965365D01* -X45210000Y-149932710D01* -X45210000Y-134976890D01* -X45548524Y-134976890D01* -X45718355Y-135386924D01* -X46108642Y-135815183D01* -X46633108Y-136061486D01* -X46863000Y-135940819D01* -X46863000Y-134747000D01* -X47117000Y-134747000D01* -X47117000Y-135940819D01* -X47346892Y-136061486D01* -X47871358Y-135815183D01* -X48261645Y-135386924D01* -X48431476Y-134976890D01* -X48310155Y-134747000D01* -X47117000Y-134747000D01* -X46863000Y-134747000D01* -X45669845Y-134747000D01* -X45548524Y-134976890D01* -X45210000Y-134976890D01* -X45210000Y-129614846D01* -X45224888Y-129539999D01* -X45210000Y-129465152D01* -X45210000Y-129465148D01* -X45165904Y-129243463D01* -X44997929Y-128992071D01* -X44934473Y-128949671D01* -X43940000Y-127955199D01* -X43940000Y-126303272D01* -X43965528Y-126320329D01* -X45129670Y-127484472D01* -X45172071Y-127547929D01* -X45423463Y-127715904D01* -X45645148Y-127760000D01* -X45645152Y-127760000D01* -X45719999Y-127774888D01* -X45721562Y-127774577D01* -X45919375Y-128070625D01* -X46217761Y-128270000D01* -X45919375Y-128469375D01* -X45591161Y-128960582D01* -X45475908Y-129540000D01* -X45591161Y-130119418D01* -X45919375Y-130610625D01* -X46217761Y-130810000D01* -X45919375Y-131009375D01* -X45591161Y-131500582D01* -X45475908Y-132080000D01* -X45591161Y-132659418D01* -X45919375Y-133150625D01* -X46238478Y-133363843D01* -X46108642Y-133424817D01* -X45718355Y-133853076D01* -X45548524Y-134263110D01* -X45669845Y-134493000D01* -X46863000Y-134493000D01* -X46863000Y-134473000D01* -X47117000Y-134473000D01* -X47117000Y-134493000D01* -X48310155Y-134493000D01* -X48431476Y-134263110D01* -X48261645Y-133853076D01* -X47871358Y-133424817D01* -X47741522Y-133363843D01* -X48060625Y-133150625D01* -X48388839Y-132659418D01* -X48504092Y-132080000D01* -X48388839Y-131500582D01* -X48060625Y-131009375D01* -X47762239Y-130810000D01* -X48060625Y-130610625D01* -X48388839Y-130119418D01* -X48504092Y-129540000D01* -X48388839Y-128960582D01* -X48060625Y-128469375D01* -X47762239Y-128270000D01* -X48060625Y-128070625D01* -X48138811Y-127953612D01* -X48770000Y-128584802D01* -X48770001Y-153107709D01* -X48737345Y-153140365D01* -X48595000Y-153484017D01* -X48595000Y-153855983D01* -X48737345Y-154199635D01* -X49000365Y-154462655D01* -X49344017Y-154605000D01* -X49715983Y-154605000D01* -X49970371Y-154499629D01* -X49865000Y-154754017D01* -X49865000Y-155125983D01* -X50007345Y-155469635D01* -X50270365Y-155732655D01* -X50614017Y-155875000D01* -X50985983Y-155875000D01* -X51329635Y-155732655D01* -X51592655Y-155469635D01* -X51735000Y-155125983D01* -X51735000Y-154754017D01* -X51592655Y-154410365D01* -X51560000Y-154377710D01* -X51560000Y-144945788D01* -X51884017Y-145080000D01* -X52255983Y-145080000D01* -X52599635Y-144937655D01* -X52862655Y-144674635D01* -X53005000Y-144330983D01* -X53005000Y-144284801D01* -X53824473Y-143465329D01* -X53887929Y-143422929D01* -X54055904Y-143171537D01* -X54100000Y-142949852D01* -X54100000Y-142949848D01* -X54114888Y-142875001D01* -X54100000Y-142800154D01* -X54100000Y-131894017D01* -X54310000Y-131894017D01* -X54310000Y-132265983D01* -X54452345Y-132609635D01* -X54485001Y-132642291D01* -X54485000Y-151202710D01* -X54452345Y-151235365D01* -X54310000Y-151579017D01* -X54310000Y-151950983D01* -X54452345Y-152294635D01* -X54715365Y-152557655D01* -X55059017Y-152700000D01* -X55430983Y-152700000D01* -X55774635Y-152557655D01* -X56037655Y-152294635D01* -X56180000Y-151950983D01* -X56180000Y-151579017D01* -X56037655Y-151235365D01* -X56005000Y-151202710D01* -X56005000Y-136567814D01* -X56378223Y-136701965D01* -X56948454Y-136674778D01* -X57349005Y-136508864D01* -X57423139Y-136262745D01* -X56595000Y-135434605D01* -X56580858Y-135448748D01* -X56401253Y-135269143D01* -X56415395Y-135255000D01* -X56401253Y-135240858D01* -X56580858Y-135061252D01* -X56595000Y-135075395D01* -X57423139Y-134247255D01* -X57349005Y-134001136D01* -X56811777Y-133808035D01* -X56241546Y-133835222D01* -X56005000Y-133933203D01* -X56005000Y-132642290D01* -X56037655Y-132609635D01* -X56180000Y-132265983D01* -X56180000Y-131894017D01* -X56037655Y-131550365D01* -X55774635Y-131287345D01* -X55430983Y-131145000D01* -X55059017Y-131145000D01* -X54715365Y-131287345D01* -X54452345Y-131550365D01* -X54310000Y-131894017D01* -X54100000Y-131894017D01* -X54100000Y-130123043D01* -X54374577Y-129939577D01* -X54691740Y-129464909D01* -X54803113Y-128905000D01* -X54691740Y-128345091D01* -X54374577Y-127870423D01* -X53899909Y-127553260D01* -X53481333Y-127470000D01* -X53198667Y-127470000D01* -X52780091Y-127553260D01* -X52305423Y-127870423D01* -X51988260Y-128345091D01* -X51876887Y-128905000D01* -X51988260Y-129464909D01* -X52305423Y-129939577D01* -X52580001Y-130123044D01* -X52580000Y-142560198D01* -X51930199Y-143210000D01* -X51884017Y-143210000D01* -X51560000Y-143344212D01* -X51560000Y-124534851D01* -X51574889Y-124460000D01* -X51560000Y-124385148D01* -X51560000Y-120015000D01* -X51876887Y-120015000D01* -X51988260Y-120574909D01* -X52305423Y-121049577D01* -X52780091Y-121366740D01* -X53198667Y-121450000D01* -X53481333Y-121450000D01* -X53899909Y-121366740D01* -X54374577Y-121049577D01* -X54691740Y-120574909D01* -X54803113Y-120015000D01* -X54691740Y-119455091D01* -X54374577Y-118980423D01* -X53899909Y-118663260D01* -X53481333Y-118580000D01* -X53198667Y-118580000D01* -X52780091Y-118663260D01* -X52305423Y-118980423D01* -X51988260Y-119455091D01* -X51876887Y-120015000D01* -X51560000Y-120015000D01* -X51560000Y-116914846D01* -X51574888Y-116839999D01* -X51560000Y-116765152D01* -X51560000Y-116765148D01* -X51515904Y-116543463D01* -X51347929Y-116292071D01* -X51284473Y-116249671D01* -X50971209Y-115936408D01* -X51044092Y-115570000D01* -X50987315Y-115284561D01* -X51905000Y-115284561D01* -X51905000Y-115855439D01* -X52123466Y-116382862D01* -X52527138Y-116786534D01* -X53054561Y-117005000D01* -X53625439Y-117005000D01* -X54152862Y-116786534D01* -X54556534Y-116382862D01* -X54775000Y-115855439D01* -X54775000Y-115284561D01* -X54556534Y-114757138D01* -X54152862Y-114353466D01* -X53625439Y-114135000D01* -X53054561Y-114135000D01* -X52527138Y-114353466D01* -X52123466Y-114757138D01* -X51905000Y-115284561D01* -X50987315Y-115284561D01* -X50928839Y-114990582D01* -X50600625Y-114499375D01* -X50582381Y-114487184D01* -X50627765Y-114478157D01* -X50837809Y-114337809D01* -X50978157Y-114127765D01* -X51027440Y-113880000D01* -X51027440Y-112180000D01* -X50978157Y-111932235D01* -X50837809Y-111722191D01* -X50627765Y-111581843D01* -X50380000Y-111532560D01* -X48680000Y-111532560D01* -X48432235Y-111581843D01* -X48222191Y-111722191D01* -X48081843Y-111932235D01* -X48032560Y-112180000D01* -X48032560Y-113880000D01* -X48081843Y-114127765D01* -X48222191Y-114337809D01* -X48432235Y-114478157D01* -X48477619Y-114487184D01* -X48459375Y-114499375D01* -X48131161Y-114990582D01* -X48015908Y-115570000D01* -X48131161Y-116149418D01* -X48459375Y-116640625D01* -X48950582Y-116968839D01* -X49383744Y-117055000D01* -X49676256Y-117055000D01* -X49896408Y-117011209D01* -X50040001Y-117154803D01* -X50040000Y-123700000D01* -X48268178Y-123700000D01* -X48060625Y-123389375D01* -X48042381Y-123377184D01* -X48087765Y-123368157D01* -X48297809Y-123227809D01* -X48438157Y-123017765D01* -X48487440Y-122770000D01* -X48487440Y-121070000D01* -X48438157Y-120822235D01* -X48297809Y-120612191D01* -X48087765Y-120471843D01* -X47840000Y-120422560D01* -X46140000Y-120422560D01* -X45892235Y-120471843D01* -X45682191Y-120612191D01* -X45541843Y-120822235D01* -X45492560Y-121070000D01* -X45492560Y-122770000D01* -X45541843Y-123017765D01* -X45682191Y-123227809D01* -X45892235Y-123368157D01* -X45937619Y-123377184D01* -X45919375Y-123389375D01* -X45591161Y-123880582D01* -X45475908Y-124460000D01* -X45591161Y-125039418D01* -X45919375Y-125530625D01* -X46217761Y-125730000D01* -X45919375Y-125929375D01* -X45841190Y-126046388D01* -X45210000Y-125415199D01* -X45210000Y-117154801D01* -X45353592Y-117011209D01* -X45573744Y-117055000D01* -X45866256Y-117055000D01* -X46299418Y-116968839D01* -X46790625Y-116640625D01* -X47118839Y-116149418D01* -X47234092Y-115570000D01* -X47118839Y-114990582D01* -X46790625Y-114499375D01* -X46772381Y-114487184D01* -X46817765Y-114478157D01* -X47027809Y-114337809D01* -X47168157Y-114127765D01* -X47217440Y-113880000D01* -X47217440Y-112180000D01* -X47168157Y-111932235D01* -X47027809Y-111722191D01* -X46817765Y-111581843D01* -X46570000Y-111532560D01* -X44870000Y-111532560D01* -X44622235Y-111581843D01* -X44412191Y-111722191D01* -X44271843Y-111932235D01* -X44222560Y-112180000D01* -X44222560Y-113880000D01* -X44271843Y-114127765D01* -X44412191Y-114337809D01* -X44622235Y-114478157D01* -X44667619Y-114487184D01* -X44649375Y-114499375D01* -X44321161Y-114990582D01* -X44205908Y-115570000D01* -X44278791Y-115936408D01* -X43965530Y-116249669D01* -X43940000Y-116266728D01* -X43940000Y-115009847D01* -X43954888Y-114935000D01* -X43940000Y-114860153D01* -X43940000Y-114860148D01* -X43895904Y-114638463D01* -X43727929Y-114387071D01* -X43664473Y-114344671D01* -X40569801Y-111250000D01* -X40917483Y-111250000D01* -X41430204Y-111037624D01* -X41477828Y-110990000D01* -X43068217Y-110990000D01* -X43180000Y-111012235D01* -X43291783Y-110990000D01* -X43622855Y-110924146D01* -X43998289Y-110673289D01* -X44210963Y-110355000D01* -X52105712Y-110355000D01* -X51905000Y-110839561D01* -X51905000Y-111410439D01* -X52123466Y-111937862D01* -X52527138Y-112341534D01* -X53054561Y-112560000D01* -X53625439Y-112560000D01* -X53678302Y-112538103D01* -X58930001Y-117789803D01* -X58930001Y-128966728D01* -X58904473Y-128949671D01* -X54738688Y-124783887D01* -X54803113Y-124460000D01* -X54691740Y-123900091D01* -X54374577Y-123425423D01* -X53899909Y-123108260D01* -X53481333Y-123025000D01* -X53198667Y-123025000D01* -X52780091Y-123108260D01* -X52305423Y-123425423D01* -X51988260Y-123900091D01* -X51876887Y-124460000D01* -X51988260Y-125019909D01* -X52305423Y-125494577D01* -X52780091Y-125811740D01* -X53198667Y-125895000D01* -X53481333Y-125895000D01* -X53663887Y-125858688D01* -X57660001Y-129854803D01* -X57660001Y-134444107D01* -X57602745Y-134426861D01* -X56774605Y-135255000D01* -X57602745Y-136083139D01* -X57660001Y-136065893D01* -X57660000Y-147392710D01* -X57627345Y-147425365D01* -X57485000Y-147769017D01* -X57485000Y-148140983D01* -X57627345Y-148484635D01* -X57890365Y-148747655D01* -X58234017Y-148890000D01* -X58605983Y-148890000D01* -X58949635Y-148747655D01* -X59212655Y-148484635D01* -X59355000Y-148140983D01* -X59355000Y-147769017D01* -X59212655Y-147425365D01* -X59180000Y-147392710D01* -X59180000Y-144310788D01* -X59504017Y-144445000D01* -X59875983Y-144445000D01* -X60219635Y-144302655D01* -X60482655Y-144039635D01* -X60625000Y-143695983D01* -X60625000Y-143324017D01* -X60482655Y-142980365D01* -X60450000Y-142947710D01* -X60450000Y-136139396D01* -X60782138Y-136471534D01* -X61309561Y-136690000D01* -X61880439Y-136690000D01* -X62407862Y-136471534D01* -X62811534Y-136067862D01* -X63030000Y-135540439D01* -X63030000Y-134969561D01* -X62811534Y-134442138D01* -X62407862Y-134038466D01* -X61880439Y-133820000D01* -X61309561Y-133820000D01* -X60782138Y-134038466D01* -X60450000Y-134370604D01* -X60450000Y-129912745D01* -X62671861Y-129912745D01* -X62745995Y-130158864D01* -X63283223Y-130351965D01* -X63853454Y-130324778D01* -X64254005Y-130158864D01* -X64328139Y-129912745D01* -X63500000Y-129084605D01* -X62671861Y-129912745D01* -X60450000Y-129912745D01* -X60450000Y-128688223D01* -X62053035Y-128688223D01* -X62080222Y-129258454D01* -X62246136Y-129659005D01* -X62492255Y-129733139D01* -X63320395Y-128905000D01* -X62492255Y-128076861D01* -X62246136Y-128150995D01* -X62053035Y-128688223D01* -X60450000Y-128688223D01* -X60450000Y-127897255D01* -X62671861Y-127897255D01* -X63500000Y-128725395D01* -X64328139Y-127897255D01* -X64254005Y-127651136D01* -X63716777Y-127458035D01* -X63146546Y-127485222D01* -X62745995Y-127651136D01* -X62671861Y-127897255D01* -X60450000Y-127897255D01* -X60450000Y-117549846D01* -X60464888Y-117474999D01* -X60450000Y-117400152D01* -X60450000Y-117400148D01* -X60405904Y-117178463D01* -X60237929Y-116927071D01* -X60174473Y-116884671D01* -X54753103Y-111463302D01* -X54775000Y-111410439D01* -X54775000Y-110839561D01* -X54574288Y-110355000D01* -X55356783Y-110355000D01* -X55687855Y-110289146D01* -X56063289Y-110038289D01* -X56314146Y-109662855D01* -X56402235Y-109220000D01* -X56314146Y-108777145D01* -X56063289Y-108401711D01* -X55687855Y-108150854D01* -X55356783Y-108085000D01* -X53632153Y-108085000D01* -X53899909Y-108031740D01* -X54374577Y-107714577D01* -X54392505Y-107687745D01* -X62671861Y-107687745D01* -X62745995Y-107933864D01* -X63283223Y-108126965D01* -X63853454Y-108099778D01* -X64254005Y-107933864D01* -X64328139Y-107687745D01* -X63500000Y-106859605D01* -X62671861Y-107687745D01* -X54392505Y-107687745D01* -X54691740Y-107239909D01* -X54803113Y-106680000D01* -X54759994Y-106463223D01* -X62053035Y-106463223D01* -X62080222Y-107033454D01* -X62246136Y-107434005D01* -X62492255Y-107508139D01* -X63320395Y-106680000D01* -X62492255Y-105851861D01* -X62246136Y-105925995D01* -X62053035Y-106463223D01* -X54759994Y-106463223D01* -X54691740Y-106120091D01* -X54392506Y-105672255D01* -X62671861Y-105672255D01* -X63500000Y-106500395D01* -X64328139Y-105672255D01* -X64254005Y-105426136D01* -X63716777Y-105233035D01* -X63146546Y-105260222D01* -X62745995Y-105426136D01* -X62671861Y-105672255D01* -X54392506Y-105672255D01* -X54374577Y-105645423D01* -X53899909Y-105328260D01* -X53481333Y-105245000D01* -X53198667Y-105245000D01* -X52780091Y-105328260D01* -X52305423Y-105645423D01* -X51988260Y-106120091D01* -X51876887Y-106680000D01* -X51988260Y-107239909D01* -X52305423Y-107714577D01* -X52780091Y-108031740D01* -X53047847Y-108085000D01* -X44315000Y-108085000D01* -X44315000Y-105034396D01* -X44396534Y-104952862D01* -X44615000Y-104425439D01* -X44615000Y-103854561D01* -X44396534Y-103327138D01* -X43992862Y-102923466D01* -X43465439Y-102705000D01* -X42894561Y-102705000D01* -X42367138Y-102923466D01* -X41963466Y-103327138D01* -X41745000Y-103854561D01* -X41745000Y-104425439D01* -X41963466Y-104952862D01* -X42045000Y-105034396D01* -X42045001Y-108720000D01* -X41477828Y-108720000D01* -X41430204Y-108672376D01* -X40917483Y-108460000D01* -X40362517Y-108460000D01* -X39849796Y-108672376D01* -X39457376Y-109064796D01* -X39370000Y-109275740D01* -X39282624Y-109064796D01* -X38890204Y-108672376D01* -X38377483Y-108460000D01* -X37822517Y-108460000D01* -X37309796Y-108672376D01* -X36955000Y-109027172D01* -X36955000Y-108968691D01* -X36858327Y-108735302D01* -X36679699Y-108556673D01* -X36446310Y-108460000D01* -X35845750Y-108460000D01* -X35687000Y-108618750D01* -X35433000Y-108618750D01* -X35274250Y-108460000D01* -X34673690Y-108460000D01* -X34440301Y-108556673D01* -X34261673Y-108735302D01* -X34165000Y-108968691D01* -X32460000Y-108968691D01* -X32460000Y-105491679D01* -X32460091Y-105491740D01* -X32878667Y-105575000D01* -X33161333Y-105575000D01* -X33579909Y-105491740D01* -X34054577Y-105174577D01* -X34371740Y-104699909D01* -X34483113Y-104140000D01* -X34371740Y-103580091D01* -X34054577Y-103105423D01* -X33579909Y-102788260D01* -X33161333Y-102705000D01* -X32878667Y-102705000D01* -X32460091Y-102788260D01* -X32460000Y-102788321D01* -X32460000Y-102257071D01* -X32670959Y-102356914D01* -X32893000Y-102235629D01* -X32893000Y-101092000D01* -X33147000Y-101092000D01* -X33147000Y-102235629D01* -X33369041Y-102356914D01* -X33875134Y-102117389D01* -X34251041Y-101702423D01* -X34411904Y-101314039D01* -X34289915Y-101092000D01* -X33147000Y-101092000D01* -X32893000Y-101092000D01* -X32873000Y-101092000D01* -X32873000Y-100838000D01* -X32893000Y-100838000D01* -X32893000Y-99694371D01* -X33147000Y-99694371D01* -X33147000Y-100838000D01* -X34289915Y-100838000D01* -X34376961Y-100679561D01* -X41745000Y-100679561D01* -X41745000Y-101250439D01* -X41963466Y-101777862D01* -X42367138Y-102181534D01* -X42894561Y-102400000D01* -X43465439Y-102400000D01* -X43992862Y-102181534D01* -X44396534Y-101777862D01* -X44615000Y-101250439D01* -X44615000Y-100679561D01* -X44396534Y-100152138D01* -X43992862Y-99748466D01* -X43465439Y-99530000D01* -X42894561Y-99530000D01* -X42367138Y-99748466D01* -X41963466Y-100152138D01* -X41745000Y-100679561D01* -X34376961Y-100679561D01* -X34411904Y-100615961D01* -X34251041Y-100227577D01* -X33875134Y-99812611D01* -X33369041Y-99573086D01* -X33147000Y-99694371D01* -X32893000Y-99694371D01* -X32670959Y-99573086D01* -X32460000Y-99672929D01* -X32460000Y-93862532D01* -X34032073Y-93862532D01* -X34130736Y-94129387D01* -X34740461Y-94355908D01* -X35390460Y-94331856D01* -X35879264Y-94129387D01* -X35977927Y-93862532D01* -X35005000Y-92889605D01* -X34032073Y-93862532D01* -X32460000Y-93862532D01* -X32460000Y-92445461D01* -X33359092Y-92445461D01* -X33383144Y-93095460D01* -X33585613Y-93584264D01* -X33852468Y-93682927D01* -X34825395Y-92710000D01* -X35184605Y-92710000D01* -X36157532Y-93682927D01* -X36424387Y-93584264D01* -X36650908Y-92974539D01* -X36626856Y-92324540D01* -X36424387Y-91835736D01* -X36157532Y-91737073D01* -X35184605Y-92710000D01* -X34825395Y-92710000D01* -X33852468Y-91737073D01* -X33585613Y-91835736D01* -X33359092Y-92445461D01* -X32460000Y-92445461D01* -X32460000Y-91557468D01* -X34032073Y-91557468D01* -X35005000Y-92530395D01* -X35825395Y-91710000D01* -X38357560Y-91710000D01* -X38357560Y-93710000D01* -X38406843Y-93957765D01* -X38547191Y-94167809D01* -X38757235Y-94308157D01* -X39005000Y-94357440D01* -X41005000Y-94357440D01* -X41252765Y-94308157D01* -X41462809Y-94167809D01* -X41603157Y-93957765D01* -X41652440Y-93710000D01* -X41652440Y-93470000D01* -X44835604Y-93470000D01* -X44503466Y-93802138D01* -X44285000Y-94329561D01* -X44285000Y-94900439D01* -X44503466Y-95427862D01* -X44907138Y-95831534D01* -X45434561Y-96050000D01* -X46005439Y-96050000D01* -X46532862Y-95831534D01* -X46936534Y-95427862D01* -X46958430Y-95375000D01* -X47310199Y-95375000D01* -X47500000Y-95564802D01* -X47500001Y-101672709D01* -X47467345Y-101705365D01* -X47325000Y-102049017D01* -X47325000Y-102420983D01* -X47467345Y-102764635D01* -X47730365Y-103027655D01* -X48074017Y-103170000D01* -X48445983Y-103170000D01* -X48789635Y-103027655D01* -X49052655Y-102764635D01* -X49195000Y-102420983D01* -X49195000Y-102049017D01* -X49153805Y-101949561D01* -X51905000Y-101949561D01* -X51905000Y-102520439D01* -X52123466Y-103047862D01* -X52527138Y-103451534D01* -X53054561Y-103670000D01* -X53625439Y-103670000D01* -X54152862Y-103451534D01* -X54556534Y-103047862D01* -X54748655Y-102584039D01* -X62108096Y-102584039D01* -X62268959Y-102972423D01* -X62644866Y-103387389D01* -X63150959Y-103626914D01* -X63373000Y-103505629D01* -X63373000Y-102362000D01* -X62230085Y-102362000D01* -X62108096Y-102584039D01* -X54748655Y-102584039D01* -X54775000Y-102520439D01* -X54775000Y-101949561D01* -X54748656Y-101885961D01* -X62108096Y-101885961D01* -X62230085Y-102108000D01* -X63373000Y-102108000D01* -X63373000Y-100964371D01* -X63150959Y-100843086D01* -X62644866Y-101082611D01* -X62268959Y-101497577D01* -X62108096Y-101885961D01* -X54748656Y-101885961D01* -X54556534Y-101422138D01* -X54152862Y-101018466D01* -X53625439Y-100800000D01* -X53054561Y-100800000D01* -X52527138Y-101018466D01* -X52123466Y-101422138D01* -X51905000Y-101949561D01* -X49153805Y-101949561D01* -X49052655Y-101705365D01* -X49020000Y-101672710D01* -X49020000Y-95622745D01* -X49891861Y-95622745D01* -X49965995Y-95868864D01* -X50503223Y-96061965D01* -X51073454Y-96034778D01* -X51474005Y-95868864D01* -X51548139Y-95622745D01* -X50720000Y-94794605D01* -X49891861Y-95622745D01* -X49020000Y-95622745D01* -X49020000Y-95324848D01* -X49034888Y-95250000D01* -X49020000Y-95175152D01* -X49020000Y-95175148D01* -X48975904Y-94953463D01* -X48807929Y-94702071D01* -X48744473Y-94659671D01* -X48483025Y-94398223D01* -X49273035Y-94398223D01* -X49300222Y-94968454D01* -X49466136Y-95369005D01* -X49712255Y-95443139D01* -X50540395Y-94615000D01* -X50899605Y-94615000D01* -X51727745Y-95443139D01* -X51973864Y-95369005D01* -X52166965Y-94831777D01* -X52139778Y-94261546D01* -X51974501Y-93862532D01* -X56257073Y-93862532D01* -X56355736Y-94129387D01* -X56965461Y-94355908D01* -X57615460Y-94331856D01* -X58104264Y-94129387D01* -X58202927Y-93862532D01* -X57230000Y-92889605D01* -X56257073Y-93862532D01* -X51974501Y-93862532D01* -X51973864Y-93860995D01* -X51727745Y-93786861D01* -X50899605Y-94615000D01* -X50540395Y-94615000D01* -X49712255Y-93786861D01* -X49466136Y-93860995D01* -X49273035Y-94398223D01* -X48483025Y-94398223D01* -X48215331Y-94130530D01* -X48172929Y-94067071D01* -X47921537Y-93899096D01* -X47699852Y-93855000D01* -X47699847Y-93855000D01* -X47625000Y-93840112D01* -X47550153Y-93855000D01* -X46958430Y-93855000D01* -X46936534Y-93802138D01* -X46741651Y-93607255D01* -X49891861Y-93607255D01* -X50720000Y-94435395D01* -X51548139Y-93607255D01* -X51474005Y-93361136D01* -X50936777Y-93168035D01* -X50366546Y-93195222D01* -X49965995Y-93361136D01* -X49891861Y-93607255D01* -X46741651Y-93607255D01* -X46604396Y-93470000D01* -X47550153Y-93470000D01* -X47625000Y-93484888D01* -X47699847Y-93470000D01* -X47699852Y-93470000D01* -X47921537Y-93425904D01* -X48172929Y-93257929D01* -X48215331Y-93194470D01* -X48399801Y-93010000D01* -X48445983Y-93010000D01* -X48789635Y-92867655D01* -X49052655Y-92604635D01* -X49118586Y-92445461D01* -X55584092Y-92445461D01* -X55608144Y-93095460D01* -X55810613Y-93584264D01* -X56077468Y-93682927D01* -X57050395Y-92710000D01* -X57409605Y-92710000D01* -X58382532Y-93682927D01* -X58649387Y-93584264D01* -X58875908Y-92974539D01* -X58851856Y-92324540D01* -X58649387Y-91835736D01* -X58382532Y-91737073D01* -X57409605Y-92710000D01* -X57050395Y-92710000D01* -X56077468Y-91737073D01* -X55810613Y-91835736D01* -X55584092Y-92445461D01* -X49118586Y-92445461D01* -X49195000Y-92260983D01* -X49195000Y-91889017D01* -X49057669Y-91557468D01* -X56257073Y-91557468D01* -X57230000Y-92530395D01* -X58050395Y-91710000D01* -X60582560Y-91710000D01* -X60582560Y-93710000D01* -X60631843Y-93957765D01* -X60772191Y-94167809D01* -X60982235Y-94308157D01* -X61230000Y-94357440D01* -X63230000Y-94357440D01* -X63477765Y-94308157D01* -X63687809Y-94167809D01* -X63828157Y-93957765D01* -X63877440Y-93710000D01* -X63877440Y-91710000D01* -X63828157Y-91462235D01* -X63687809Y-91252191D01* -X63477765Y-91111843D01* -X63230000Y-91062560D01* -X61230000Y-91062560D01* -X60982235Y-91111843D01* -X60772191Y-91252191D01* -X60631843Y-91462235D01* -X60582560Y-91710000D01* -X58050395Y-91710000D01* -X58202927Y-91557468D01* -X58104264Y-91290613D01* -X57494539Y-91064092D01* -X56844540Y-91088144D01* -X56355736Y-91290613D01* -X56257073Y-91557468D01* -X49057669Y-91557468D01* -X49052655Y-91545365D01* -X48789635Y-91282345D01* -X48445983Y-91140000D01* -X48074017Y-91140000D01* -X47730365Y-91282345D01* -X47467345Y-91545365D01* -X47325000Y-91889017D01* -X47325000Y-91935199D01* -X47310199Y-91950000D01* -X41652440Y-91950000D01* -X41652440Y-91710000D01* -X41603157Y-91462235D01* -X41462809Y-91252191D01* -X41252765Y-91111843D01* -X41005000Y-91062560D01* -X39005000Y-91062560D01* -X38757235Y-91111843D01* -X38547191Y-91252191D01* -X38406843Y-91462235D01* -X38357560Y-91710000D01* -X35825395Y-91710000D01* -X35977927Y-91557468D01* -X35879264Y-91290613D01* -X35269539Y-91064092D01* -X34619540Y-91088144D01* -X34130736Y-91290613D01* -X34032073Y-91557468D01* -X32460000Y-91557468D01* -X32460000Y-84804561D01* -X36665000Y-84804561D01* -X36665000Y-85375439D01* -X36883466Y-85902862D01* -X37287138Y-86306534D01* -X37814561Y-86525000D01* -X38385439Y-86525000D01* -X38912862Y-86306534D01* -X39316534Y-85902862D01* -X39535000Y-85375439D01* -X39535000Y-84804561D01* -X39316534Y-84277138D01* -X38912862Y-83873466D01* -X38385439Y-83655000D01* -X37814561Y-83655000D01* -X37287138Y-83873466D01* -X36883466Y-84277138D01* -X36665000Y-84804561D01* -X32460000Y-84804561D01* -X32460000Y-74930000D01* -X36636887Y-74930000D01* -X36748260Y-75489909D01* -X37065423Y-75964577D01* -X37340001Y-76148044D01* -X37340000Y-81840153D01* -X37325112Y-81915000D01* -X37340000Y-81989847D01* -X37340000Y-81989851D01* -X37384096Y-82211536D01* -X37552071Y-82462929D01* -X37615530Y-82505331D01* -X42589671Y-87479473D01* -X42632071Y-87542929D01* -X42883463Y-87710904D01* -X43105148Y-87755000D01* -X43105153Y-87755000D01* -X43180000Y-87769888D01* -X43254847Y-87755000D01* -X50090153Y-87755000D01* -X50165000Y-87769888D01* -X50239847Y-87755000D01* -X50239852Y-87755000D01* -X50461537Y-87710904D01* -X50712929Y-87542929D01* -X50755331Y-87479470D01* -X51769966Y-86464835D01* -X51794506Y-86475000D01* -X52345494Y-86475000D01* -X52854540Y-86264147D01* -X53244147Y-85874540D01* -X53455000Y-85365494D01* -X53455000Y-85090000D01* -X58226887Y-85090000D01* -X58338260Y-85649909D01* -X58655423Y-86124577D01* -X59130091Y-86441740D01* -X59548667Y-86525000D01* -X59831333Y-86525000D01* -X60249909Y-86441740D01* -X60724577Y-86124577D01* -X61041740Y-85649909D01* -X61153113Y-85090000D01* -X61041740Y-84530091D01* -X60724577Y-84055423D01* -X60249909Y-83738260D01* -X59831333Y-83655000D01* -X59548667Y-83655000D01* -X59130091Y-83738260D01* -X58655423Y-84055423D01* -X58338260Y-84530091D01* -X58226887Y-85090000D01* -X53455000Y-85090000D01* -X53455000Y-84814506D01* -X53244147Y-84305460D01* -X52886127Y-83947440D01* -X54090000Y-83947440D01* -X54337765Y-83898157D01* -X54547809Y-83757809D01* -X54688157Y-83547765D01* -X54737440Y-83300000D01* -X54737440Y-81800000D01* -X54688157Y-81552235D01* -X54547809Y-81342191D01* -X54337765Y-81201843D01* -X54090000Y-81152560D01* -X52590000Y-81152560D01* -X52342235Y-81201843D01* -X52132191Y-81342191D01* -X51991843Y-81552235D01* -X51953531Y-81744844D01* -X51584540Y-81375853D01* -X51075494Y-81165000D01* -X50524506Y-81165000D01* -X50015460Y-81375853D01* -X49625853Y-81765460D01* -X49530000Y-81996870D01* -X49434147Y-81765460D01* -X49044540Y-81375853D01* -X48535494Y-81165000D01* -X47984506Y-81165000D01* -X47475460Y-81375853D01* -X47085853Y-81765460D01* -X46990000Y-81996870D01* -X46894147Y-81765460D01* -X46504540Y-81375853D01* -X45995494Y-81165000D01* -X45444506Y-81165000D01* -X44935460Y-81375853D01* -X44545853Y-81765460D01* -X44335000Y-82274506D01* -X44335000Y-82825494D01* -X44545853Y-83334540D01* -X44935460Y-83724147D01* -X45444506Y-83935000D01* -X45995494Y-83935000D01* -X46504540Y-83724147D01* -X46894147Y-83334540D01* -X46990000Y-83103130D01* -X47085853Y-83334540D01* -X47475460Y-83724147D01* -X47984506Y-83935000D01* -X48535494Y-83935000D01* -X49044540Y-83724147D01* -X49434147Y-83334540D01* -X49530000Y-83103130D01* -X49625853Y-83334540D01* -X50015460Y-83724147D01* -X50524506Y-83935000D01* -X51075494Y-83935000D01* -X51584540Y-83724147D01* -X51953531Y-83355156D01* -X51991843Y-83547765D01* -X52096905Y-83705000D01* -X51794506Y-83705000D01* -X51285460Y-83915853D01* -X50895853Y-84305460D01* -X50800000Y-84536870D01* -X50704147Y-84305460D01* -X50314540Y-83915853D01* -X49805494Y-83705000D01* -X49254506Y-83705000D01* -X48745460Y-83915853D01* -X48355853Y-84305460D01* -X48260000Y-84536870D01* -X48164147Y-84305460D01* -X47774540Y-83915853D01* -X47265494Y-83705000D01* -X46714506Y-83705000D01* -X46205460Y-83915853D01* -X45815853Y-84305460D01* -X45720000Y-84536870D01* -X45624147Y-84305460D01* -X45234540Y-83915853D01* -X44725494Y-83705000D01* -X44174506Y-83705000D01* -X43665460Y-83915853D01* -X43275853Y-84305460D01* -X43065000Y-84814506D01* -X43065000Y-85365494D01* -X43275853Y-85874540D01* -X43636313Y-86235000D01* -X43494802Y-86235000D01* -X38860000Y-81600199D01* -X38860000Y-76148043D01* -X39134577Y-75964577D01* -X39304228Y-75710676D01* -X40500000Y-75710676D01* -X40500000Y-76689324D01* -X40874513Y-77593478D01* -X41566522Y-78285487D01* -X42470676Y-78660000D01* -X43449324Y-78660000D01* -X44353478Y-78285487D01* -X45045487Y-77593478D01* -X45420000Y-76689324D01* -X45420000Y-75710676D01* -X52370000Y-75710676D01* -X52370000Y-76689324D01* -X52744513Y-77593478D01* -X53436522Y-78285487D01* -X54340676Y-78660000D01* -X55319324Y-78660000D01* -X56223478Y-78285487D01* -X56915487Y-77593478D01* -X57290000Y-76689324D01* -X57290000Y-75710676D01* -X56915487Y-74806522D01* -X56753526Y-74644561D01* -X58255000Y-74644561D01* -X58255000Y-75215439D01* -X58473466Y-75742862D01* -X58877138Y-76146534D01* -X59404561Y-76365000D01* -X59975439Y-76365000D01* -X60502862Y-76146534D01* -X60906534Y-75742862D01* -X61125000Y-75215439D01* -X61125000Y-74644561D01* -X60906534Y-74117138D01* -X60502862Y-73713466D01* -X59975439Y-73495000D01* -X59404561Y-73495000D01* -X58877138Y-73713466D01* -X58473466Y-74117138D01* -X58255000Y-74644561D01* -X56753526Y-74644561D01* -X56223478Y-74114513D01* -X55319324Y-73740000D01* -X54340676Y-73740000D01* -X53436522Y-74114513D01* -X52744513Y-74806522D01* -X52370000Y-75710676D01* -X45420000Y-75710676D01* -X45045487Y-74806522D01* -X44353478Y-74114513D01* -X43449324Y-73740000D01* -X42470676Y-73740000D01* -X41566522Y-74114513D01* -X40874513Y-74806522D01* -X40500000Y-75710676D01* -X39304228Y-75710676D01* -X39451740Y-75489909D01* -X39563113Y-74930000D01* -X39451740Y-74370091D01* -X39134577Y-73895423D01* -X38659909Y-73578260D01* -X38241333Y-73495000D01* -X37958667Y-73495000D01* -X37540091Y-73578260D01* -X37065423Y-73895423D01* -X36748260Y-74370091D01* -X36636887Y-74930000D01* -X32460000Y-74930000D01* -X32460000Y-68655000D01* -X64695000Y-68655000D01* -X64695000Y-101457792D01* -M02* diff --git a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.Mask.gbs b/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.Mask.gbs deleted file mode 100644 index 348b4ba6..00000000 --- a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.Mask.gbs +++ /dev/null @@ -1,141 +0,0 @@ -G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.0.0-rc2-dev-40-gfef1ba999)* -G04 #@! TF.CreationDate,2018-03-01T23:08:39+01:00* -G04 #@! TF.ProjectId,HAN_ESP_TSS721,48414E5F4553505F5453533732312E6B,rev?* -G04 #@! TF.SameCoordinates,Original* -G04 #@! TF.FileFunction,Soldermask,Bot* -G04 #@! TF.FilePolarity,Negative* -%FSLAX46Y46*% -G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* -G04 Created by KiCad (PCBNEW (5.0.0-rc2-dev-40-gfef1ba999)) date 03/01/18 23:08:39* -%MOMM*% -%LPD*% -G01* -G04 APERTURE LIST* -%ADD10C,2.000000*% -%ADD11O,2.000000X2.000000*% -%ADD12C,4.050000*% -%ADD13R,1.900000X1.900000*% -%ADD14C,1.900000*% -%ADD15O,1.650000X1.350000*% -%ADD16O,1.400000X1.950000*% -%ADD17R,2.400000X2.400000*% -%ADD18C,2.400000*% -%ADD19R,2.100000X2.100000*% -%ADD20O,2.100000X2.100000*% -%ADD21R,1.920000X1.920000*% -%ADD22C,1.920000*% -G04 APERTURE END LIST* -D10* -X53340000Y-102235000D03* -D11* -X63500000Y-102235000D03* -D10* -X53340000Y-115570000D03* -D11* -X63500000Y-115570000D03* -D12* -X42960000Y-76200000D03* -X54830000Y-76200000D03* -D13* -X53340000Y-82550000D03* -D14* -X52070000Y-85090000D03* -X50800000Y-82550000D03* -X49530000Y-85090000D03* -X48260000Y-82550000D03* -X46990000Y-85090000D03* -X45720000Y-82550000D03* -X44450000Y-85090000D03* -D15* -X34330000Y-161210000D03* -X39330000Y-161210000D03* -D16* -X33330000Y-163910000D03* -X40330000Y-163910000D03* -D17* -X40005000Y-92710000D03* -D18* -X35005000Y-92710000D03* -D10* -X45720000Y-94615000D03* -X50720000Y-94615000D03* -X34290000Y-156210000D03* -X39290000Y-156210000D03* -D17* -X62230000Y-92710000D03* -D18* -X57230000Y-92710000D03* -D10* -X43180000Y-100965000D03* -D11* -X33020000Y-100965000D03* -D10* -X53340000Y-111125000D03* -D11* -X63500000Y-111125000D03* -D10* -X63500000Y-120015000D03* -D11* -X53340000Y-120015000D03* -D10* -X63500000Y-128905000D03* -D11* -X53340000Y-128905000D03* -D10* -X63500000Y-124460000D03* -D11* -X53340000Y-124460000D03* -D10* -X59690000Y-74930000D03* -D11* -X59690000Y-85090000D03* -D10* -X38100000Y-85090000D03* -D11* -X38100000Y-74930000D03* -D10* -X63500000Y-106680000D03* -D11* -X53340000Y-106680000D03* -D19* -X45720000Y-113030000D03* -D20* -X45720000Y-115570000D03* -D19* -X49530000Y-113030000D03* -D20* -X49530000Y-115570000D03* -D11* -X33020000Y-104140000D03* -D10* -X43180000Y-104140000D03* -D21* -X35560000Y-109855000D03* -D22* -X40640000Y-109855000D03* -X38100000Y-109855000D03* -D10* -X56595000Y-135255000D03* -X61595000Y-135255000D03* -D18* -X40560000Y-137795000D03* -D17* -X35560000Y-137795000D03* -D20* -X46990000Y-134620000D03* -X46990000Y-132080000D03* -X46990000Y-129540000D03* -X46990000Y-127000000D03* -X46990000Y-124460000D03* -D19* -X46990000Y-121920000D03* -D18* -X35560000Y-114785000D03* -X40060000Y-114785000D03* -X35560000Y-121285000D03* -X40060000Y-121285000D03* -X40060000Y-130960000D03* -X35560000Y-130960000D03* -X40060000Y-124460000D03* -X35560000Y-124460000D03* -M02* diff --git a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.SilkS.gbo b/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.SilkS.gbo deleted file mode 100644 index bd3515f0..00000000 --- a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-B.SilkS.gbo +++ /dev/null @@ -1,15 +0,0 @@ -G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.0.0-rc2-dev-40-gfef1ba999)* -G04 #@! TF.CreationDate,2018-03-01T23:08:39+01:00* -G04 #@! TF.ProjectId,HAN_ESP_TSS721,48414E5F4553505F5453533732312E6B,rev?* -G04 #@! TF.SameCoordinates,Original* -G04 #@! TF.FileFunction,Legend,Bot* -G04 #@! TF.FilePolarity,Positive* -%FSLAX46Y46*% -G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* -G04 Created by KiCad (PCBNEW (5.0.0-rc2-dev-40-gfef1ba999)) date 03/01/18 23:08:39* -%MOMM*% -%LPD*% -G01* -G04 APERTURE LIST* -G04 APERTURE END LIST* -M02* diff --git a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-Edge.Cuts.gm1 b/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-Edge.Cuts.gm1 deleted file mode 100644 index ee4503a9..00000000 --- a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-Edge.Cuts.gm1 +++ /dev/null @@ -1,26 +0,0 @@ -G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.0.0-rc2-dev-40-gfef1ba999)* -G04 #@! TF.CreationDate,2018-03-01T23:08:40+01:00* -G04 #@! TF.ProjectId,HAN_ESP_TSS721,48414E5F4553505F5453533732312E6B,rev?* -G04 #@! TF.SameCoordinates,Original* -G04 #@! TF.FileFunction,Profile,NP* -%FSLAX46Y46*% -G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* -G04 Created by KiCad (PCBNEW (5.0.0-rc2-dev-40-gfef1ba999)) date 03/01/18 23:08:40* -%MOMM*% -%LPD*% -G01* -G04 APERTURE LIST* -%ADD10C,0.150000*% -G04 APERTURE END LIST* -D10* -X65405000Y-165735000D02* -X64770000Y-165735000D01* -X65405000Y-67945000D02* -X65405000Y-165735000D01* -X31750000Y-67945000D02* -X65405000Y-67945000D01* -X31750000Y-165735000D02* -X31750000Y-67945000D01* -X64770000Y-165735000D02* -X31750000Y-165735000D01* -M02* diff --git a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.Cu.gtl b/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.Cu.gtl deleted file mode 100644 index cbbd920e..00000000 --- a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.Cu.gtl +++ /dev/null @@ -1,4956 +0,0 @@ -G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.0.0-rc2-dev-40-gfef1ba999)* -G04 #@! TF.CreationDate,2018-03-01T23:08:39+01:00* -G04 #@! TF.ProjectId,HAN_ESP_TSS721,48414E5F4553505F5453533732312E6B,rev?* -G04 #@! TF.SameCoordinates,Original* -G04 #@! TF.FileFunction,Copper,L1,Top,Signal* -G04 #@! TF.FilePolarity,Positive* -%FSLAX46Y46*% -G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* -G04 Created by KiCad (PCBNEW (5.0.0-rc2-dev-40-gfef1ba999)) date 03/01/18 23:08:39* -%MOMM*% -%LPD*% -G01* -G04 APERTURE LIST* -%ADD10R,0.800000X0.900000*% -%ADD11C,1.600000*% -%ADD12O,1.600000X1.600000*% -%ADD13C,3.650000*% -%ADD14R,1.500000X1.500000*% -%ADD15C,1.500000*% -%ADD16R,0.400000X1.350000*% -%ADD17O,1.250000X0.950000*% -%ADD18O,1.000000X1.550000*% -%ADD19R,1.500000X0.600000*% -%ADD20R,2.000000X2.000000*% -%ADD21C,2.000000*% -%ADD22R,3.800000X2.000000*% -%ADD23R,1.500000X2.000000*% -%ADD24R,1.700000X1.700000*% -%ADD25O,1.700000X1.700000*% -%ADD26R,2.500000X1.100000*% -%ADD27R,1.100000X2.500000*% -%ADD28R,1.520000X1.520000*% -%ADD29C,1.520000*% -%ADD30C,0.600000*% -%ADD31C,0.800000*% -%ADD32C,0.250000*% -%ADD33C,0.400000*% -%ADD34C,1.000000*% -%ADD35C,0.600000*% -%ADD36C,0.254000*% -G04 APERTURE END LIST* -D10* -X49210000Y-88535000D03* -X47310000Y-88535000D03* -X48260000Y-90535000D03* -D11* -X53340000Y-102235000D03* -D12* -X63500000Y-102235000D03* -D11* -X53340000Y-115570000D03* -D12* -X63500000Y-115570000D03* -D13* -X42960000Y-76200000D03* -X54830000Y-76200000D03* -D14* -X53340000Y-82550000D03* -D15* -X52070000Y-85090000D03* -X50800000Y-82550000D03* -X49530000Y-85090000D03* -X48260000Y-82550000D03* -X46990000Y-85090000D03* -X45720000Y-82550000D03* -X44450000Y-85090000D03* -D16* -X35530000Y-161210000D03* -X36180000Y-161210000D03* -X36830000Y-161210000D03* -X37480000Y-161210000D03* -X38130000Y-161210000D03* -D17* -X34330000Y-161210000D03* -X39330000Y-161210000D03* -D18* -X33330000Y-163910000D03* -X40330000Y-163910000D03* -D19* -X45560000Y-98425000D03* -X45560000Y-99695000D03* -X45560000Y-100965000D03* -X45560000Y-102235000D03* -X45560000Y-103505000D03* -X45560000Y-104775000D03* -X45560000Y-106045000D03* -X45560000Y-107315000D03* -X50960000Y-107315000D03* -X50960000Y-106045000D03* -X50960000Y-104775000D03* -X50960000Y-103505000D03* -X50960000Y-102235000D03* -X50960000Y-100965000D03* -X50960000Y-99695000D03* -X50960000Y-98425000D03* -D20* -X40005000Y-92710000D03* -D21* -X35005000Y-92710000D03* -D11* -X45720000Y-94615000D03* -X50720000Y-94615000D03* -X34290000Y-156210000D03* -X39290000Y-156210000D03* -D20* -X62230000Y-92710000D03* -D21* -X57230000Y-92710000D03* -D11* -X43180000Y-100965000D03* -D12* -X33020000Y-100965000D03* -D11* -X53340000Y-111125000D03* -D12* -X63500000Y-111125000D03* -D11* -X63500000Y-120015000D03* -D12* -X53340000Y-120015000D03* -D11* -X63500000Y-128905000D03* -D12* -X53340000Y-128905000D03* -D11* -X63500000Y-124460000D03* -D12* -X53340000Y-124460000D03* -D11* -X59690000Y-74930000D03* -D12* -X59690000Y-85090000D03* -D11* -X38100000Y-85090000D03* -D12* -X38100000Y-74930000D03* -D11* -X63500000Y-106680000D03* -D12* -X53340000Y-106680000D03* -D22* -X36830000Y-152375000D03* -D23* -X36830000Y-146075000D03* -X34530000Y-146075000D03* -X39130000Y-146075000D03* -D24* -X45720000Y-113030000D03* -D25* -X45720000Y-115570000D03* -D24* -X49530000Y-113030000D03* -D25* -X49530000Y-115570000D03* -D26* -X62930000Y-156210000D03* -X62930000Y-154210000D03* -X62930000Y-152210000D03* -X62930000Y-150210000D03* -X62930000Y-148210000D03* -X62930000Y-146210000D03* -X62930000Y-144210000D03* -X62930000Y-142210000D03* -X47530000Y-142210000D03* -X47530000Y-144210000D03* -X47530000Y-146210000D03* -X47530000Y-148210000D03* -X47530000Y-150210000D03* -X47530000Y-152210000D03* -X47530000Y-154210000D03* -X47530000Y-156210000D03* -D27* -X60240000Y-140510000D03* -X58240000Y-140510000D03* -X56240000Y-140510000D03* -X54240000Y-140510000D03* -X52240000Y-140510000D03* -X50240000Y-140510000D03* -D12* -X33020000Y-104140000D03* -D11* -X43180000Y-104140000D03* -D28* -X35560000Y-109855000D03* -D29* -X40640000Y-109855000D03* -X38100000Y-109855000D03* -D11* -X56595000Y-135255000D03* -X61595000Y-135255000D03* -D21* -X40560000Y-137795000D03* -D20* -X35560000Y-137795000D03* -D25* -X46990000Y-134620000D03* -X46990000Y-132080000D03* -X46990000Y-129540000D03* -X46990000Y-127000000D03* -X46990000Y-124460000D03* -D24* -X46990000Y-121920000D03* -D21* -X35560000Y-114785000D03* -X40060000Y-114785000D03* -X35560000Y-121285000D03* -X40060000Y-121285000D03* -X40060000Y-130960000D03* -X35560000Y-130960000D03* -X40060000Y-124460000D03* -X35560000Y-124460000D03* -D30* -X52070000Y-85090000D03* -X53340000Y-99695000D03* -X52070000Y-88265000D03* -X48260000Y-92075000D03* -X45720000Y-94615000D03* -X48260000Y-102235000D03* -D31* -X55245000Y-109220000D03* -D30* -X55245000Y-132080000D03* -X55245000Y-151765000D03* -X58420000Y-147955000D03* -X52070000Y-144145000D03* -X59690000Y-143510000D03* -X43180000Y-145415000D03* -X49530000Y-153670000D03* -X50800000Y-154940000D03* -X44450000Y-150495000D03* -D32* -X59690000Y-74930000D02* -X59690000Y-76200000D01* -X59690000Y-76200000D02* -X53340000Y-82550000D01* -D33* -X38130000Y-161210000D02* -X39330000Y-161210000D01* -D32* -X50960000Y-99695000D02* -X53340000Y-99695000D01* -X49210000Y-88185000D02* -X51990000Y-88185000D01* -X51990000Y-88185000D02* -X52070000Y-88265000D01* -X46355000Y-100965000D02* -X47310000Y-100010000D01* -X47310000Y-100010000D02* -X47310000Y-88535000D01* -X45560000Y-100965000D02* -X46355000Y-100965000D01* -X47230000Y-88265000D02* -X47310000Y-88185000D01* -X48260000Y-90535000D02* -X48260000Y-92075000D01* -X45560000Y-102235000D02* -X44450000Y-102235000D01* -X44450000Y-102235000D02* -X43180000Y-100965000D01* -X46990000Y-104775000D02* -X45560000Y-104775000D01* -X48260000Y-103505000D02* -X46990000Y-104775000D01* -X48260000Y-102235000D02* -X48260000Y-103505000D01* -D33* -X50960000Y-100965000D02* -X52070000Y-100965000D01* -X52070000Y-100965000D02* -X53340000Y-102235000D01* -X34290000Y-157480000D02* -X35530000Y-158720000D01* -X35530000Y-158720000D02* -X35530000Y-159940000D01* -X34290000Y-156210000D02* -X34290000Y-157480000D01* -D34* -X34530000Y-146075000D02* -X34530000Y-148075000D01* -X34530000Y-148075000D02* -X33490001Y-149114999D01* -X33490001Y-149114999D02* -X33490001Y-155410001D01* -X33490001Y-155410001D02* -X34290000Y-156210000D01* -D33* -X35530000Y-159940000D02* -X35530000Y-161210000D01* -D32* -X45720000Y-113030000D02* -X45720000Y-107155000D01* -X45720000Y-107155000D02* -X45560000Y-107315000D01* -D34* -X61595000Y-135255000D02* -X61595000Y-124460000D01* -X61595000Y-137795000D02* -X61595000Y-135255000D01* -X61595000Y-124460000D02* -X61595000Y-120015000D01* -X63500000Y-124460000D02* -X61595000Y-124460000D01* -X61595000Y-120015000D02* -X61595000Y-115570000D01* -X63500000Y-120015000D02* -X61595000Y-120015000D01* -X61595000Y-115570000D02* -X61595000Y-111125000D01* -X63500000Y-115570000D02* -X61595000Y-115570000D01* -X59690000Y-109220000D02* -X55245000Y-109220000D01* -X61595000Y-111125000D02* -X59690000Y-109220000D01* -X61595000Y-111125000D02* -X63500000Y-111125000D01* -X36735000Y-140970000D02* -X36830000Y-141065000D01* -X36830000Y-141065000D02* -X36830000Y-146075000D01* -X61595000Y-137795000D02* -X45720000Y-137795000D01* -X45720000Y-137795000D02* -X42545000Y-140970000D01* -X42545000Y-140970000D02* -X36735000Y-140970000D01* -X36735000Y-140970000D02* -X35560000Y-139795000D01* -X35560000Y-139795000D02* -X35560000Y-137795000D01* -X62865000Y-141575000D02* -X62230000Y-142210000D01* -X62865000Y-139065000D02* -X62865000Y-141575000D01* -X61595000Y-137795000D02* -X62865000Y-139065000D01* -D32* -X62230000Y-142210000D02* -X62260000Y-142210000D01* -X40060000Y-118110000D02* -X40060000Y-114785000D01* -X40060000Y-121285000D02* -X40060000Y-118110000D01* -X53340000Y-118110000D02* -X40640000Y-118110000D01* -X40640000Y-118110000D02* -X40060000Y-118110000D01* -X55245000Y-132080000D02* -X55245000Y-118745000D01* -X55245000Y-118745000D02* -X54610000Y-118110000D01* -X59690000Y-156210000D02* -X55245000Y-151765000D01* -X54610000Y-118110000D02* -X53340000Y-118110000D01* -X53340000Y-115570000D02* -X53340000Y-118110000D01* -X62230000Y-156210000D02* -X59690000Y-156210000D01* -X58420000Y-149860000D02* -X58420000Y-147955000D01* -X60770000Y-152210000D02* -X58420000Y-149860000D01* -X62230000Y-152210000D02* -X60770000Y-152210000D01* -X48230000Y-144210000D02* -X52005000Y-144210000D01* -X52005000Y-144210000D02* -X52070000Y-144145000D01* -X56990000Y-146210000D02* -X59690000Y-143510000D01* -X48230000Y-146210000D02* -X56990000Y-146210000D01* -X45304999Y-119215001D02* -X40060000Y-124460000D01* -X52540001Y-119215001D02* -X45304999Y-119215001D01* -X53340000Y-120015000D02* -X52540001Y-119215001D01* -X43180000Y-145415000D02* -X45975000Y-148210000D01* -X45975000Y-148210000D02* -X48230000Y-148210000D01* -X48990000Y-154210000D02* -X48230000Y-154210000D01* -X49530000Y-153670000D02* -X48990000Y-154210000D01* -X48230000Y-156210000D02* -X49530000Y-156210000D01* -X49530000Y-156210000D02* -X50800000Y-154940000D01* -D35* -X53340000Y-106680000D02* -X52705000Y-107315000D01* -X52705000Y-107315000D02* -X50960000Y-107315000D01* -X62230000Y-99695000D02* -X55245000Y-106680000D01* -X62230000Y-92710000D02* -X62230000Y-99695000D01* -X55245000Y-106680000D02* -X53340000Y-106680000D01* -X50960000Y-104775000D02* -X49530000Y-104775000D01* -X49530000Y-107315000D02* -X50960000Y-107315000D01* -X48895000Y-106680000D02* -X49530000Y-107315000D01* -X48895000Y-105410000D02* -X48895000Y-106680000D01* -X49530000Y-104775000D02* -X48895000Y-105410000D01* -D32* -X50960000Y-104775000D02* -X51435000Y-104775000D01* -X48260000Y-104775000D02* -X47625000Y-105410000D01* -X49530000Y-109220000D02* -X49530000Y-110490000D01* -X47625000Y-107315000D02* -X49530000Y-109220000D01* -X47625000Y-105410000D02* -X47625000Y-107315000D01* -X50960000Y-103505000D02* -X49530000Y-103505000D01* -X49530000Y-110490000D02* -X49530000Y-113030000D01* -X49530000Y-103505000D02* -X48260000Y-104775000D01* -X50960000Y-98425000D02* -X56515000Y-98425000D01* -X59690000Y-95250000D02* -X59690000Y-85090000D01* -X56515000Y-98425000D02* -X59690000Y-95250000D01* -X45560000Y-98425000D02* -X41910000Y-98425000D01* -X38100000Y-94615000D02* -X38100000Y-85090000D01* -X41910000Y-98425000D02* -X38100000Y-94615000D01* -X44450000Y-150750000D02* -X44450000Y-150495000D01* -X45910000Y-152210000D02* -X44450000Y-150750000D01* -X48230000Y-152210000D02* -X45910000Y-152210000D01* -X38100000Y-107950000D02* -X38100000Y-109855000D01* -X34290000Y-104140000D02* -X38100000Y-107950000D01* -X33020000Y-104140000D02* -X34290000Y-104140000D01* -D36* -G36* -X49091843Y-139012235D02* -X49042560Y-139260000D01* -X49042560Y-141081437D01* -X48906309Y-141025000D01* -X47815750Y-141025000D01* -X47657000Y-141183750D01* -X47657000Y-142083000D01* -X47677000Y-142083000D01* -X47677000Y-142337000D01* -X47657000Y-142337000D01* -X47657000Y-142357000D01* -X47403000Y-142357000D01* -X47403000Y-142337000D01* -X45803750Y-142337000D01* -X45645000Y-142495750D01* -X45645000Y-142886310D01* -X45741673Y-143119699D01* -X45823375Y-143201400D01* -X45822191Y-143202191D01* -X45681843Y-143412235D01* -X45632560Y-143660000D01* -X45632560Y-144760000D01* -X45681843Y-145007765D01* -X45816973Y-145210000D01* -X45681843Y-145412235D01* -X45632560Y-145660000D01* -X45632560Y-146760000D01* -X45640694Y-146800892D01* -X44115000Y-145275199D01* -X44115000Y-145229017D01* -X43972655Y-144885365D01* -X43709635Y-144622345D01* -X43365983Y-144480000D01* -X42994017Y-144480000D01* -X42650365Y-144622345D01* -X42387345Y-144885365D01* -X42245000Y-145229017D01* -X42245000Y-145600983D01* -X42387345Y-145944635D01* -X42650365Y-146207655D01* -X42994017Y-146350000D01* -X43040199Y-146350000D01* -X45384671Y-148694473D01* -X45427071Y-148757929D01* -X45663582Y-148915961D01* -X45681843Y-149007765D01* -X45816973Y-149210000D01* -X45681843Y-149412235D01* -X45632560Y-149660000D01* -X45632560Y-150760000D01* -X45656833Y-150882032D01* -X45385000Y-150610199D01* -X45385000Y-150309017D01* -X45242655Y-149965365D01* -X44979635Y-149702345D01* -X44635983Y-149560000D01* -X44264017Y-149560000D01* -X43920365Y-149702345D01* -X43657345Y-149965365D01* -X43515000Y-150309017D01* -X43515000Y-150680983D01* -X43657345Y-151024635D01* -X43844545Y-151211835D01* -X43902071Y-151297929D01* -X43965530Y-151340331D01* -X45319671Y-152694473D01* -X45362071Y-152757929D01* -X45425527Y-152800329D01* -X45613462Y-152925904D01* -X45661605Y-152935480D01* -X45667706Y-152936694D01* -X45681843Y-153007765D01* -X45816973Y-153210000D01* -X45681843Y-153412235D01* -X45632560Y-153660000D01* -X45632560Y-154760000D01* -X45681843Y-155007765D01* -X45816973Y-155210000D01* -X45681843Y-155412235D01* -X45632560Y-155660000D01* -X45632560Y-156760000D01* -X45681843Y-157007765D01* -X45822191Y-157217809D01* -X46032235Y-157358157D01* -X46280000Y-157407440D01* -X48780000Y-157407440D01* -X49027765Y-157358157D01* -X49237809Y-157217809D01* -X49378157Y-157007765D01* -X49385669Y-156970000D01* -X49455153Y-156970000D01* -X49530000Y-156984888D01* -X49604847Y-156970000D01* -X49604852Y-156970000D01* -X49826537Y-156925904D01* -X50077929Y-156757929D01* -X50120331Y-156694470D01* -X50939802Y-155875000D01* -X50985983Y-155875000D01* -X51329635Y-155732655D01* -X51592655Y-155469635D01* -X51735000Y-155125983D01* -X51735000Y-154754017D01* -X51592655Y-154410365D01* -X51329635Y-154147345D01* -X50985983Y-154005000D01* -X50614017Y-154005000D01* -X50359629Y-154110371D01* -X50465000Y-153855983D01* -X50465000Y-153484017D01* -X50322655Y-153140365D01* -X50059635Y-152877345D01* -X49715983Y-152735000D01* -X49427440Y-152735000D01* -X49427440Y-151660000D01* -X49378157Y-151412235D01* -X49243027Y-151210000D01* -X49378157Y-151007765D01* -X49427440Y-150760000D01* -X49427440Y-149660000D01* -X49378157Y-149412235D01* -X49243027Y-149210000D01* -X49378157Y-149007765D01* -X49427440Y-148760000D01* -X49427440Y-147660000D01* -X49378157Y-147412235D01* -X49243027Y-147210000D01* -X49378157Y-147007765D01* -X49385669Y-146970000D01* -X56915153Y-146970000D01* -X56990000Y-146984888D01* -X57064847Y-146970000D01* -X57064852Y-146970000D01* -X57286537Y-146925904D01* -X57537929Y-146757929D01* -X57580331Y-146694470D01* -X59829802Y-144445000D01* -X59875983Y-144445000D01* -X60219635Y-144302655D01* -X60482655Y-144039635D01* -X60625000Y-143695983D01* -X60625000Y-143324017D01* -X60482655Y-142980365D01* -X60219635Y-142717345D01* -X59875983Y-142575000D01* -X59504017Y-142575000D01* -X59160365Y-142717345D01* -X58897345Y-142980365D01* -X58755000Y-143324017D01* -X58755000Y-143370198D01* -X56675199Y-145450000D01* -X49385669Y-145450000D01* -X49378157Y-145412235D01* -X49243027Y-145210000D01* -X49378157Y-145007765D01* -X49385669Y-144970000D01* -X51618453Y-144970000D01* -X51884017Y-145080000D01* -X52255983Y-145080000D01* -X52599635Y-144937655D01* -X52862655Y-144674635D01* -X53005000Y-144330983D01* -X53005000Y-143959017D01* -X52862655Y-143615365D01* -X52599635Y-143352345D01* -X52255983Y-143210000D01* -X51884017Y-143210000D01* -X51540365Y-143352345D01* -X51442710Y-143450000D01* -X49385669Y-143450000D01* -X49378157Y-143412235D01* -X49237809Y-143202191D01* -X49236625Y-143201400D01* -X49318327Y-143119699D01* -X49415000Y-142886310D01* -X49415000Y-142495750D01* -X49256252Y-142337002D01* -X49410575Y-142337002D01* -X49442235Y-142358157D01* -X49690000Y-142407440D01* -X50790000Y-142407440D01* -X51037765Y-142358157D01* -X51240000Y-142223027D01* -X51442235Y-142358157D01* -X51690000Y-142407440D01* -X52790000Y-142407440D01* -X53037765Y-142358157D01* -X53240000Y-142223027D01* -X53442235Y-142358157D01* -X53690000Y-142407440D01* -X54790000Y-142407440D01* -X55037765Y-142358157D01* -X55240000Y-142223027D01* -X55442235Y-142358157D01* -X55690000Y-142407440D01* -X56790000Y-142407440D01* -X57037765Y-142358157D01* -X57240000Y-142223027D01* -X57442235Y-142358157D01* -X57690000Y-142407440D01* -X58790000Y-142407440D01* -X59037765Y-142358157D01* -X59240000Y-142223027D01* -X59442235Y-142358157D01* -X59690000Y-142407440D01* -X60790000Y-142407440D01* -X61032560Y-142359192D01* -X61032560Y-142760000D01* -X61081843Y-143007765D01* -X61216973Y-143210000D01* -X61081843Y-143412235D01* -X61032560Y-143660000D01* -X61032560Y-144760000D01* -X61081843Y-145007765D01* -X61216973Y-145210000D01* -X61081843Y-145412235D01* -X61032560Y-145660000D01* -X61032560Y-146760000D01* -X61081843Y-147007765D01* -X61216973Y-147210000D01* -X61081843Y-147412235D01* -X61032560Y-147660000D01* -X61032560Y-148760000D01* -X61081843Y-149007765D01* -X61216973Y-149210000D01* -X61081843Y-149412235D01* -X61032560Y-149660000D01* -X61032560Y-150760000D01* -X61081843Y-151007765D01* -X61216973Y-151210000D01* -X61081843Y-151412235D01* -X61076068Y-151441266D01* -X59180000Y-149545199D01* -X59180000Y-148517290D01* -X59212655Y-148484635D01* -X59355000Y-148140983D01* -X59355000Y-147769017D01* -X59212655Y-147425365D01* -X58949635Y-147162345D01* -X58605983Y-147020000D01* -X58234017Y-147020000D01* -X57890365Y-147162345D01* -X57627345Y-147425365D01* -X57485000Y-147769017D01* -X57485000Y-148140983D01* -X57627345Y-148484635D01* -X57660001Y-148517291D01* -X57660000Y-149785153D01* -X57645112Y-149860000D01* -X57660000Y-149934847D01* -X57660000Y-149934851D01* -X57704096Y-150156536D01* -X57872071Y-150407929D01* -X57935530Y-150450331D01* -X60179671Y-152694473D01* -X60222071Y-152757929D01* -X60473463Y-152925904D01* -X60695148Y-152970000D01* -X60695153Y-152970000D01* -X60770000Y-152984888D01* -X60844847Y-152970000D01* -X61074331Y-152970000D01* -X61081843Y-153007765D01* -X61216973Y-153210000D01* -X61081843Y-153412235D01* -X61032560Y-153660000D01* -X61032560Y-154760000D01* -X61081843Y-155007765D01* -X61216973Y-155210000D01* -X61081843Y-155412235D01* -X61074331Y-155450000D01* -X60004802Y-155450000D01* -X56180000Y-151625199D01* -X56180000Y-151579017D01* -X56037655Y-151235365D01* -X55774635Y-150972345D01* -X55430983Y-150830000D01* -X55059017Y-150830000D01* -X54715365Y-150972345D01* -X54452345Y-151235365D01* -X54310000Y-151579017D01* -X54310000Y-151950983D01* -X54452345Y-152294635D01* -X54715365Y-152557655D01* -X55059017Y-152700000D01* -X55105199Y-152700000D01* -X59099671Y-156694473D01* -X59142071Y-156757929D01* -X59393463Y-156925904D01* -X59615148Y-156970000D01* -X59615152Y-156970000D01* -X59689999Y-156984888D01* -X59764846Y-156970000D01* -X61074331Y-156970000D01* -X61081843Y-157007765D01* -X61222191Y-157217809D01* -X61432235Y-157358157D01* -X61680000Y-157407440D01* -X64180000Y-157407440D01* -X64427765Y-157358157D01* -X64637809Y-157217809D01* -X64695001Y-157132216D01* -X64695001Y-165025000D01* -X64262000Y-165025000D01* -X64262000Y-158115000D01* -X64252333Y-158066399D01* -X64224803Y-158025197D01* -X64183601Y-157997667D01* -X64135000Y-157988000D01* -X46355000Y-157988000D01* -X46306399Y-157997667D01* -X46265197Y-158025197D01* -X46237667Y-158066399D01* -X46228000Y-158115000D01* -X46228000Y-165025000D01* -X41086915Y-165025000D01* -X41330002Y-164736678D01* -X41465000Y-164312000D01* -X41465000Y-164037000D01* -X40457000Y-164037000D01* -X40457000Y-164057000D01* -X40203000Y-164057000D01* -X40203000Y-164037000D01* -X39195000Y-164037000D01* -X39195000Y-164312000D01* -X39329998Y-164736678D01* -X39573085Y-165025000D01* -X34086915Y-165025000D01* -X34330002Y-164736678D01* -X34465000Y-164312000D01* -X34465000Y-164037000D01* -X33457000Y-164037000D01* -X33457000Y-164057000D01* -X33203000Y-164057000D01* -X33203000Y-164037000D01* -X33183000Y-164037000D01* -X33183000Y-163783000D01* -X33203000Y-163783000D01* -X33203000Y-162667046D01* -X33457000Y-162667046D01* -X33457000Y-163783000D01* -X34465000Y-163783000D01* -X34465000Y-163508000D01* -X39195000Y-163508000D01* -X39195000Y-163783000D01* -X40203000Y-163783000D01* -X40203000Y-162667046D01* -X40457000Y-162667046D01* -X40457000Y-163783000D01* -X41465000Y-163783000D01* -X41465000Y-163508000D01* -X41330002Y-163083322D01* -X41042763Y-162742632D01* -X40631874Y-162540881D01* -X40457000Y-162667046D01* -X40203000Y-162667046D01* -X40028126Y-162540881D01* -X39617237Y-162742632D01* -X39329998Y-163083322D01* -X39195000Y-163508000D01* -X34465000Y-163508000D01* -X34330002Y-163083322D01* -X34042763Y-162742632D01* -X33631874Y-162540881D01* -X33457000Y-162667046D01* -X33203000Y-162667046D01* -X33028126Y-162540881D01* -X32617237Y-162742632D01* -X32460000Y-162929129D01* -X32460000Y-161507938D01* -X33110732Y-161507938D01* -X33294448Y-161881821D01* -X33618951Y-162169568D01* -X34028869Y-162311229D01* -X34203000Y-162162563D01* -X34203000Y-161337000D01* -X33237266Y-161337000D01* -X33110732Y-161507938D01* -X32460000Y-161507938D01* -X32460000Y-160912062D01* -X33110732Y-160912062D01* -X33237266Y-161083000D01* -X34203000Y-161083000D01* -X34203000Y-160257437D01* -X34028869Y-160108771D01* -X33618951Y-160250432D01* -X33294448Y-160538179D01* -X33110732Y-160912062D01* -X32460000Y-160912062D01* -X32460000Y-155911439D01* -X32671713Y-156228290D01* -X32766480Y-156291612D01* -X32855000Y-156380131D01* -X32855000Y-156495439D01* -X33073466Y-157022862D01* -X33453900Y-157403296D01* -X33438643Y-157480000D01* -X33503448Y-157805800D01* -X33503449Y-157805801D01* -X33688000Y-158082001D01* -X33757718Y-158128585D01* -X34695000Y-159065868D01* -X34695001Y-159857760D01* -X34695000Y-159857764D01* -X34695000Y-160130843D01* -X34631131Y-160108771D01* -X34457000Y-160257437D01* -X34457000Y-161083000D01* -X34477000Y-161083000D01* -X34477000Y-161337000D01* -X34457000Y-161337000D01* -X34457000Y-162162563D01* -X34631131Y-162311229D01* -X34809827Y-162249475D01* -X34872191Y-162342809D01* -X35082235Y-162483157D01* -X35330000Y-162532440D01* -X35730000Y-162532440D01* -X35855000Y-162507576D01* -X35980000Y-162532440D01* -X36380000Y-162532440D01* -X36505000Y-162507576D01* -X36630000Y-162532440D01* -X37030000Y-162532440D01* -X37155000Y-162507576D01* -X37280000Y-162532440D01* -X37680000Y-162532440D01* -X37783852Y-162511783D01* -X37803690Y-162520000D01* -X37871250Y-162520000D01* -X37903208Y-162488042D01* -X37927765Y-162483157D01* -X38137809Y-162342809D01* -X38230000Y-162204836D01* -X38230000Y-162361250D01* -X38388750Y-162520000D01* -X38456310Y-162520000D01* -X38689699Y-162423327D01* -X38860115Y-162252910D01* -X39028869Y-162311229D01* -X39203000Y-162162563D01* -X39203000Y-161337000D01* -X39457000Y-161337000D01* -X39457000Y-162162563D01* -X39631131Y-162311229D01* -X40041049Y-162169568D01* -X40365552Y-161881821D01* -X40549268Y-161507938D01* -X40422734Y-161337000D01* -X39457000Y-161337000D01* -X39203000Y-161337000D01* -X39183000Y-161337000D01* -X39183000Y-161083000D01* -X39203000Y-161083000D01* -X39203000Y-160257437D01* -X39457000Y-160257437D01* -X39457000Y-161083000D01* -X40422734Y-161083000D01* -X40549268Y-160912062D01* -X40365552Y-160538179D01* -X40041049Y-160250432D01* -X39631131Y-160108771D01* -X39457000Y-160257437D01* -X39203000Y-160257437D01* -X39028869Y-160108771D01* -X38860115Y-160167090D01* -X38689699Y-159996673D01* -X38456310Y-159900000D01* -X38388750Y-159900000D01* -X38230000Y-160058750D01* -X38230000Y-160215164D01* -X38137809Y-160077191D01* -X37927765Y-159936843D01* -X37903208Y-159931958D01* -X37871250Y-159900000D01* -X37803690Y-159900000D01* -X37783852Y-159908217D01* -X37680000Y-159887560D01* -X37280000Y-159887560D01* -X37155000Y-159912424D01* -X37030000Y-159887560D01* -X36630000Y-159887560D01* -X36505000Y-159912424D01* -X36380000Y-159887560D01* -X36365000Y-159887560D01* -X36365000Y-158802237D01* -X36381358Y-158720000D01* -X36316552Y-158394199D01* -X36178584Y-158187716D01* -X36132001Y-158117999D01* -X36062283Y-158071415D01* -X35260132Y-157269264D01* -X35311651Y-157217745D01* -X38461861Y-157217745D01* -X38535995Y-157463864D01* -X39073223Y-157656965D01* -X39643454Y-157629778D01* -X40044005Y-157463864D01* -X40118139Y-157217745D01* -X39290000Y-156389605D01* -X38461861Y-157217745D01* -X35311651Y-157217745D01* -X35506534Y-157022862D01* -X35725000Y-156495439D01* -X35725000Y-155993223D01* -X37843035Y-155993223D01* -X37870222Y-156563454D01* -X38036136Y-156964005D01* -X38282255Y-157038139D01* -X39110395Y-156210000D01* -X39469605Y-156210000D01* -X40297745Y-157038139D01* -X40543864Y-156964005D01* -X40736965Y-156426777D01* -X40709778Y-155856546D01* -X40543864Y-155455995D01* -X40297745Y-155381861D01* -X39469605Y-156210000D01* -X39110395Y-156210000D01* -X38282255Y-155381861D01* -X38036136Y-155455995D01* -X37843035Y-155993223D01* -X35725000Y-155993223D01* -X35725000Y-155924561D01* -X35506534Y-155397138D01* -X35311651Y-155202255D01* -X38461861Y-155202255D01* -X39290000Y-156030395D01* -X40118139Y-155202255D01* -X40044005Y-154956136D01* -X39506777Y-154763035D01* -X38936546Y-154790222D01* -X38535995Y-154956136D01* -X38461861Y-155202255D01* -X35311651Y-155202255D01* -X35102862Y-154993466D01* -X34625001Y-154795529D01* -X34625001Y-153934914D01* -X34682235Y-153973157D01* -X34930000Y-154022440D01* -X38730000Y-154022440D01* -X38977765Y-153973157D01* -X39187809Y-153832809D01* -X39328157Y-153622765D01* -X39377440Y-153375000D01* -X39377440Y-151375000D01* -X39328157Y-151127235D01* -X39187809Y-150917191D01* -X38977765Y-150776843D01* -X38730000Y-150727560D01* -X34930000Y-150727560D01* -X34682235Y-150776843D01* -X34625001Y-150815086D01* -X34625001Y-149585130D01* -X35253521Y-148956611D01* -X35348289Y-148893289D01* -X35599146Y-148517855D01* -X35665000Y-148186783D01* -X35687235Y-148075000D01* -X35665000Y-147963217D01* -X35665000Y-147581459D01* -X35680000Y-147571436D01* -X35832235Y-147673157D01* -X36080000Y-147722440D01* -X37580000Y-147722440D01* -X37827765Y-147673157D01* -X37979047Y-147572073D01* -X38020301Y-147613327D01* -X38253690Y-147710000D01* -X38844250Y-147710000D01* -X39003000Y-147551250D01* -X39003000Y-146202000D01* -X39257000Y-146202000D01* -X39257000Y-147551250D01* -X39415750Y-147710000D01* -X40006310Y-147710000D01* -X40239699Y-147613327D01* -X40418327Y-147434698D01* -X40515000Y-147201309D01* -X40515000Y-146360750D01* -X40356250Y-146202000D01* -X39257000Y-146202000D01* -X39003000Y-146202000D01* -X38983000Y-146202000D01* -X38983000Y-145948000D01* -X39003000Y-145948000D01* -X39003000Y-144598750D01* -X39257000Y-144598750D01* -X39257000Y-145948000D01* -X40356250Y-145948000D01* -X40515000Y-145789250D01* -X40515000Y-144948691D01* -X40418327Y-144715302D01* -X40239699Y-144536673D01* -X40006310Y-144440000D01* -X39415750Y-144440000D01* -X39257000Y-144598750D01* -X39003000Y-144598750D01* -X38844250Y-144440000D01* -X38253690Y-144440000D01* -X38020301Y-144536673D01* -X37979047Y-144577927D01* -X37965000Y-144568541D01* -X37965000Y-142105000D01* -X42433217Y-142105000D01* -X42545000Y-142127235D01* -X42656783Y-142105000D01* -X42987855Y-142039146D01* -X43363289Y-141788289D01* -X43426613Y-141693518D01* -X43586441Y-141533690D01* -X45645000Y-141533690D01* -X45645000Y-141924250D01* -X45803750Y-142083000D01* -X47403000Y-142083000D01* -X47403000Y-141183750D01* -X47244250Y-141025000D01* -X46153691Y-141025000D01* -X45920302Y-141121673D01* -X45741673Y-141300301D01* -X45645000Y-141533690D01* -X43586441Y-141533690D01* -X46190132Y-138930000D01* -X49146791Y-138930000D01* -X49091843Y-139012235D01* -X49091843Y-139012235D01* -G37* -X49091843Y-139012235D02* -X49042560Y-139260000D01* -X49042560Y-141081437D01* -X48906309Y-141025000D01* -X47815750Y-141025000D01* -X47657000Y-141183750D01* -X47657000Y-142083000D01* -X47677000Y-142083000D01* -X47677000Y-142337000D01* -X47657000Y-142337000D01* -X47657000Y-142357000D01* -X47403000Y-142357000D01* -X47403000Y-142337000D01* -X45803750Y-142337000D01* -X45645000Y-142495750D01* -X45645000Y-142886310D01* -X45741673Y-143119699D01* -X45823375Y-143201400D01* -X45822191Y-143202191D01* -X45681843Y-143412235D01* -X45632560Y-143660000D01* -X45632560Y-144760000D01* -X45681843Y-145007765D01* -X45816973Y-145210000D01* -X45681843Y-145412235D01* -X45632560Y-145660000D01* -X45632560Y-146760000D01* -X45640694Y-146800892D01* -X44115000Y-145275199D01* -X44115000Y-145229017D01* -X43972655Y-144885365D01* -X43709635Y-144622345D01* -X43365983Y-144480000D01* -X42994017Y-144480000D01* -X42650365Y-144622345D01* -X42387345Y-144885365D01* -X42245000Y-145229017D01* -X42245000Y-145600983D01* -X42387345Y-145944635D01* -X42650365Y-146207655D01* -X42994017Y-146350000D01* -X43040199Y-146350000D01* -X45384671Y-148694473D01* -X45427071Y-148757929D01* -X45663582Y-148915961D01* -X45681843Y-149007765D01* -X45816973Y-149210000D01* -X45681843Y-149412235D01* -X45632560Y-149660000D01* -X45632560Y-150760000D01* -X45656833Y-150882032D01* -X45385000Y-150610199D01* -X45385000Y-150309017D01* -X45242655Y-149965365D01* -X44979635Y-149702345D01* -X44635983Y-149560000D01* -X44264017Y-149560000D01* -X43920365Y-149702345D01* -X43657345Y-149965365D01* -X43515000Y-150309017D01* -X43515000Y-150680983D01* -X43657345Y-151024635D01* -X43844545Y-151211835D01* -X43902071Y-151297929D01* -X43965530Y-151340331D01* -X45319671Y-152694473D01* -X45362071Y-152757929D01* -X45425527Y-152800329D01* -X45613462Y-152925904D01* -X45661605Y-152935480D01* -X45667706Y-152936694D01* -X45681843Y-153007765D01* -X45816973Y-153210000D01* -X45681843Y-153412235D01* -X45632560Y-153660000D01* -X45632560Y-154760000D01* -X45681843Y-155007765D01* -X45816973Y-155210000D01* -X45681843Y-155412235D01* -X45632560Y-155660000D01* -X45632560Y-156760000D01* -X45681843Y-157007765D01* -X45822191Y-157217809D01* -X46032235Y-157358157D01* -X46280000Y-157407440D01* -X48780000Y-157407440D01* -X49027765Y-157358157D01* -X49237809Y-157217809D01* -X49378157Y-157007765D01* -X49385669Y-156970000D01* -X49455153Y-156970000D01* -X49530000Y-156984888D01* -X49604847Y-156970000D01* -X49604852Y-156970000D01* -X49826537Y-156925904D01* -X50077929Y-156757929D01* -X50120331Y-156694470D01* -X50939802Y-155875000D01* -X50985983Y-155875000D01* -X51329635Y-155732655D01* -X51592655Y-155469635D01* -X51735000Y-155125983D01* -X51735000Y-154754017D01* -X51592655Y-154410365D01* -X51329635Y-154147345D01* -X50985983Y-154005000D01* -X50614017Y-154005000D01* -X50359629Y-154110371D01* -X50465000Y-153855983D01* -X50465000Y-153484017D01* -X50322655Y-153140365D01* -X50059635Y-152877345D01* -X49715983Y-152735000D01* -X49427440Y-152735000D01* -X49427440Y-151660000D01* -X49378157Y-151412235D01* -X49243027Y-151210000D01* -X49378157Y-151007765D01* -X49427440Y-150760000D01* -X49427440Y-149660000D01* -X49378157Y-149412235D01* -X49243027Y-149210000D01* -X49378157Y-149007765D01* -X49427440Y-148760000D01* -X49427440Y-147660000D01* -X49378157Y-147412235D01* -X49243027Y-147210000D01* -X49378157Y-147007765D01* -X49385669Y-146970000D01* -X56915153Y-146970000D01* -X56990000Y-146984888D01* -X57064847Y-146970000D01* -X57064852Y-146970000D01* -X57286537Y-146925904D01* -X57537929Y-146757929D01* -X57580331Y-146694470D01* -X59829802Y-144445000D01* -X59875983Y-144445000D01* -X60219635Y-144302655D01* -X60482655Y-144039635D01* -X60625000Y-143695983D01* -X60625000Y-143324017D01* -X60482655Y-142980365D01* -X60219635Y-142717345D01* -X59875983Y-142575000D01* -X59504017Y-142575000D01* -X59160365Y-142717345D01* -X58897345Y-142980365D01* -X58755000Y-143324017D01* -X58755000Y-143370198D01* -X56675199Y-145450000D01* -X49385669Y-145450000D01* -X49378157Y-145412235D01* -X49243027Y-145210000D01* -X49378157Y-145007765D01* -X49385669Y-144970000D01* -X51618453Y-144970000D01* -X51884017Y-145080000D01* -X52255983Y-145080000D01* -X52599635Y-144937655D01* -X52862655Y-144674635D01* -X53005000Y-144330983D01* -X53005000Y-143959017D01* -X52862655Y-143615365D01* -X52599635Y-143352345D01* -X52255983Y-143210000D01* -X51884017Y-143210000D01* -X51540365Y-143352345D01* -X51442710Y-143450000D01* -X49385669Y-143450000D01* -X49378157Y-143412235D01* -X49237809Y-143202191D01* -X49236625Y-143201400D01* -X49318327Y-143119699D01* -X49415000Y-142886310D01* -X49415000Y-142495750D01* -X49256252Y-142337002D01* -X49410575Y-142337002D01* -X49442235Y-142358157D01* -X49690000Y-142407440D01* -X50790000Y-142407440D01* -X51037765Y-142358157D01* -X51240000Y-142223027D01* -X51442235Y-142358157D01* -X51690000Y-142407440D01* -X52790000Y-142407440D01* -X53037765Y-142358157D01* -X53240000Y-142223027D01* -X53442235Y-142358157D01* -X53690000Y-142407440D01* -X54790000Y-142407440D01* -X55037765Y-142358157D01* -X55240000Y-142223027D01* -X55442235Y-142358157D01* -X55690000Y-142407440D01* -X56790000Y-142407440D01* -X57037765Y-142358157D01* -X57240000Y-142223027D01* -X57442235Y-142358157D01* -X57690000Y-142407440D01* -X58790000Y-142407440D01* -X59037765Y-142358157D01* -X59240000Y-142223027D01* -X59442235Y-142358157D01* -X59690000Y-142407440D01* -X60790000Y-142407440D01* -X61032560Y-142359192D01* -X61032560Y-142760000D01* -X61081843Y-143007765D01* -X61216973Y-143210000D01* -X61081843Y-143412235D01* -X61032560Y-143660000D01* -X61032560Y-144760000D01* -X61081843Y-145007765D01* -X61216973Y-145210000D01* -X61081843Y-145412235D01* -X61032560Y-145660000D01* -X61032560Y-146760000D01* -X61081843Y-147007765D01* -X61216973Y-147210000D01* -X61081843Y-147412235D01* -X61032560Y-147660000D01* -X61032560Y-148760000D01* -X61081843Y-149007765D01* -X61216973Y-149210000D01* -X61081843Y-149412235D01* -X61032560Y-149660000D01* -X61032560Y-150760000D01* -X61081843Y-151007765D01* -X61216973Y-151210000D01* -X61081843Y-151412235D01* -X61076068Y-151441266D01* -X59180000Y-149545199D01* -X59180000Y-148517290D01* -X59212655Y-148484635D01* -X59355000Y-148140983D01* -X59355000Y-147769017D01* -X59212655Y-147425365D01* -X58949635Y-147162345D01* -X58605983Y-147020000D01* -X58234017Y-147020000D01* -X57890365Y-147162345D01* -X57627345Y-147425365D01* -X57485000Y-147769017D01* -X57485000Y-148140983D01* -X57627345Y-148484635D01* -X57660001Y-148517291D01* -X57660000Y-149785153D01* -X57645112Y-149860000D01* -X57660000Y-149934847D01* -X57660000Y-149934851D01* -X57704096Y-150156536D01* -X57872071Y-150407929D01* -X57935530Y-150450331D01* -X60179671Y-152694473D01* -X60222071Y-152757929D01* -X60473463Y-152925904D01* -X60695148Y-152970000D01* -X60695153Y-152970000D01* -X60770000Y-152984888D01* -X60844847Y-152970000D01* -X61074331Y-152970000D01* -X61081843Y-153007765D01* -X61216973Y-153210000D01* -X61081843Y-153412235D01* -X61032560Y-153660000D01* -X61032560Y-154760000D01* -X61081843Y-155007765D01* -X61216973Y-155210000D01* -X61081843Y-155412235D01* -X61074331Y-155450000D01* -X60004802Y-155450000D01* -X56180000Y-151625199D01* -X56180000Y-151579017D01* -X56037655Y-151235365D01* -X55774635Y-150972345D01* -X55430983Y-150830000D01* -X55059017Y-150830000D01* -X54715365Y-150972345D01* -X54452345Y-151235365D01* -X54310000Y-151579017D01* -X54310000Y-151950983D01* -X54452345Y-152294635D01* -X54715365Y-152557655D01* -X55059017Y-152700000D01* -X55105199Y-152700000D01* -X59099671Y-156694473D01* -X59142071Y-156757929D01* -X59393463Y-156925904D01* -X59615148Y-156970000D01* -X59615152Y-156970000D01* -X59689999Y-156984888D01* -X59764846Y-156970000D01* -X61074331Y-156970000D01* -X61081843Y-157007765D01* -X61222191Y-157217809D01* -X61432235Y-157358157D01* -X61680000Y-157407440D01* -X64180000Y-157407440D01* -X64427765Y-157358157D01* -X64637809Y-157217809D01* -X64695001Y-157132216D01* -X64695001Y-165025000D01* -X64262000Y-165025000D01* -X64262000Y-158115000D01* -X64252333Y-158066399D01* -X64224803Y-158025197D01* -X64183601Y-157997667D01* -X64135000Y-157988000D01* -X46355000Y-157988000D01* -X46306399Y-157997667D01* -X46265197Y-158025197D01* -X46237667Y-158066399D01* -X46228000Y-158115000D01* -X46228000Y-165025000D01* -X41086915Y-165025000D01* -X41330002Y-164736678D01* -X41465000Y-164312000D01* -X41465000Y-164037000D01* -X40457000Y-164037000D01* -X40457000Y-164057000D01* -X40203000Y-164057000D01* -X40203000Y-164037000D01* -X39195000Y-164037000D01* -X39195000Y-164312000D01* -X39329998Y-164736678D01* -X39573085Y-165025000D01* -X34086915Y-165025000D01* -X34330002Y-164736678D01* -X34465000Y-164312000D01* -X34465000Y-164037000D01* -X33457000Y-164037000D01* -X33457000Y-164057000D01* -X33203000Y-164057000D01* -X33203000Y-164037000D01* -X33183000Y-164037000D01* -X33183000Y-163783000D01* -X33203000Y-163783000D01* -X33203000Y-162667046D01* -X33457000Y-162667046D01* -X33457000Y-163783000D01* -X34465000Y-163783000D01* -X34465000Y-163508000D01* -X39195000Y-163508000D01* -X39195000Y-163783000D01* -X40203000Y-163783000D01* -X40203000Y-162667046D01* -X40457000Y-162667046D01* -X40457000Y-163783000D01* -X41465000Y-163783000D01* -X41465000Y-163508000D01* -X41330002Y-163083322D01* -X41042763Y-162742632D01* -X40631874Y-162540881D01* -X40457000Y-162667046D01* -X40203000Y-162667046D01* -X40028126Y-162540881D01* -X39617237Y-162742632D01* -X39329998Y-163083322D01* -X39195000Y-163508000D01* -X34465000Y-163508000D01* -X34330002Y-163083322D01* -X34042763Y-162742632D01* -X33631874Y-162540881D01* -X33457000Y-162667046D01* -X33203000Y-162667046D01* -X33028126Y-162540881D01* -X32617237Y-162742632D01* -X32460000Y-162929129D01* -X32460000Y-161507938D01* -X33110732Y-161507938D01* -X33294448Y-161881821D01* -X33618951Y-162169568D01* -X34028869Y-162311229D01* -X34203000Y-162162563D01* -X34203000Y-161337000D01* -X33237266Y-161337000D01* -X33110732Y-161507938D01* -X32460000Y-161507938D01* -X32460000Y-160912062D01* -X33110732Y-160912062D01* -X33237266Y-161083000D01* -X34203000Y-161083000D01* -X34203000Y-160257437D01* -X34028869Y-160108771D01* -X33618951Y-160250432D01* -X33294448Y-160538179D01* -X33110732Y-160912062D01* -X32460000Y-160912062D01* -X32460000Y-155911439D01* -X32671713Y-156228290D01* -X32766480Y-156291612D01* -X32855000Y-156380131D01* -X32855000Y-156495439D01* -X33073466Y-157022862D01* -X33453900Y-157403296D01* -X33438643Y-157480000D01* -X33503448Y-157805800D01* -X33503449Y-157805801D01* -X33688000Y-158082001D01* -X33757718Y-158128585D01* -X34695000Y-159065868D01* -X34695001Y-159857760D01* -X34695000Y-159857764D01* -X34695000Y-160130843D01* -X34631131Y-160108771D01* -X34457000Y-160257437D01* -X34457000Y-161083000D01* -X34477000Y-161083000D01* -X34477000Y-161337000D01* -X34457000Y-161337000D01* -X34457000Y-162162563D01* -X34631131Y-162311229D01* -X34809827Y-162249475D01* -X34872191Y-162342809D01* -X35082235Y-162483157D01* -X35330000Y-162532440D01* -X35730000Y-162532440D01* -X35855000Y-162507576D01* -X35980000Y-162532440D01* -X36380000Y-162532440D01* -X36505000Y-162507576D01* -X36630000Y-162532440D01* -X37030000Y-162532440D01* -X37155000Y-162507576D01* -X37280000Y-162532440D01* -X37680000Y-162532440D01* -X37783852Y-162511783D01* -X37803690Y-162520000D01* -X37871250Y-162520000D01* -X37903208Y-162488042D01* -X37927765Y-162483157D01* -X38137809Y-162342809D01* -X38230000Y-162204836D01* -X38230000Y-162361250D01* -X38388750Y-162520000D01* -X38456310Y-162520000D01* -X38689699Y-162423327D01* -X38860115Y-162252910D01* -X39028869Y-162311229D01* -X39203000Y-162162563D01* -X39203000Y-161337000D01* -X39457000Y-161337000D01* -X39457000Y-162162563D01* -X39631131Y-162311229D01* -X40041049Y-162169568D01* -X40365552Y-161881821D01* -X40549268Y-161507938D01* -X40422734Y-161337000D01* -X39457000Y-161337000D01* -X39203000Y-161337000D01* -X39183000Y-161337000D01* -X39183000Y-161083000D01* -X39203000Y-161083000D01* -X39203000Y-160257437D01* -X39457000Y-160257437D01* -X39457000Y-161083000D01* -X40422734Y-161083000D01* -X40549268Y-160912062D01* -X40365552Y-160538179D01* -X40041049Y-160250432D01* -X39631131Y-160108771D01* -X39457000Y-160257437D01* -X39203000Y-160257437D01* -X39028869Y-160108771D01* -X38860115Y-160167090D01* -X38689699Y-159996673D01* -X38456310Y-159900000D01* -X38388750Y-159900000D01* -X38230000Y-160058750D01* -X38230000Y-160215164D01* -X38137809Y-160077191D01* -X37927765Y-159936843D01* -X37903208Y-159931958D01* -X37871250Y-159900000D01* -X37803690Y-159900000D01* -X37783852Y-159908217D01* -X37680000Y-159887560D01* -X37280000Y-159887560D01* -X37155000Y-159912424D01* -X37030000Y-159887560D01* -X36630000Y-159887560D01* -X36505000Y-159912424D01* -X36380000Y-159887560D01* -X36365000Y-159887560D01* -X36365000Y-158802237D01* -X36381358Y-158720000D01* -X36316552Y-158394199D01* -X36178584Y-158187716D01* -X36132001Y-158117999D01* -X36062283Y-158071415D01* -X35260132Y-157269264D01* -X35311651Y-157217745D01* -X38461861Y-157217745D01* -X38535995Y-157463864D01* -X39073223Y-157656965D01* -X39643454Y-157629778D01* -X40044005Y-157463864D01* -X40118139Y-157217745D01* -X39290000Y-156389605D01* -X38461861Y-157217745D01* -X35311651Y-157217745D01* -X35506534Y-157022862D01* -X35725000Y-156495439D01* -X35725000Y-155993223D01* -X37843035Y-155993223D01* -X37870222Y-156563454D01* -X38036136Y-156964005D01* -X38282255Y-157038139D01* -X39110395Y-156210000D01* -X39469605Y-156210000D01* -X40297745Y-157038139D01* -X40543864Y-156964005D01* -X40736965Y-156426777D01* -X40709778Y-155856546D01* -X40543864Y-155455995D01* -X40297745Y-155381861D01* -X39469605Y-156210000D01* -X39110395Y-156210000D01* -X38282255Y-155381861D01* -X38036136Y-155455995D01* -X37843035Y-155993223D01* -X35725000Y-155993223D01* -X35725000Y-155924561D01* -X35506534Y-155397138D01* -X35311651Y-155202255D01* -X38461861Y-155202255D01* -X39290000Y-156030395D01* -X40118139Y-155202255D01* -X40044005Y-154956136D01* -X39506777Y-154763035D01* -X38936546Y-154790222D01* -X38535995Y-154956136D01* -X38461861Y-155202255D01* -X35311651Y-155202255D01* -X35102862Y-154993466D01* -X34625001Y-154795529D01* -X34625001Y-153934914D01* -X34682235Y-153973157D01* -X34930000Y-154022440D01* -X38730000Y-154022440D01* -X38977765Y-153973157D01* -X39187809Y-153832809D01* -X39328157Y-153622765D01* -X39377440Y-153375000D01* -X39377440Y-151375000D01* -X39328157Y-151127235D01* -X39187809Y-150917191D01* -X38977765Y-150776843D01* -X38730000Y-150727560D01* -X34930000Y-150727560D01* -X34682235Y-150776843D01* -X34625001Y-150815086D01* -X34625001Y-149585130D01* -X35253521Y-148956611D01* -X35348289Y-148893289D01* -X35599146Y-148517855D01* -X35665000Y-148186783D01* -X35687235Y-148075000D01* -X35665000Y-147963217D01* -X35665000Y-147581459D01* -X35680000Y-147571436D01* -X35832235Y-147673157D01* -X36080000Y-147722440D01* -X37580000Y-147722440D01* -X37827765Y-147673157D01* -X37979047Y-147572073D01* -X38020301Y-147613327D01* -X38253690Y-147710000D01* -X38844250Y-147710000D01* -X39003000Y-147551250D01* -X39003000Y-146202000D01* -X39257000Y-146202000D01* -X39257000Y-147551250D01* -X39415750Y-147710000D01* -X40006310Y-147710000D01* -X40239699Y-147613327D01* -X40418327Y-147434698D01* -X40515000Y-147201309D01* -X40515000Y-146360750D01* -X40356250Y-146202000D01* -X39257000Y-146202000D01* -X39003000Y-146202000D01* -X38983000Y-146202000D01* -X38983000Y-145948000D01* -X39003000Y-145948000D01* -X39003000Y-144598750D01* -X39257000Y-144598750D01* -X39257000Y-145948000D01* -X40356250Y-145948000D01* -X40515000Y-145789250D01* -X40515000Y-144948691D01* -X40418327Y-144715302D01* -X40239699Y-144536673D01* -X40006310Y-144440000D01* -X39415750Y-144440000D01* -X39257000Y-144598750D01* -X39003000Y-144598750D01* -X38844250Y-144440000D01* -X38253690Y-144440000D01* -X38020301Y-144536673D01* -X37979047Y-144577927D01* -X37965000Y-144568541D01* -X37965000Y-142105000D01* -X42433217Y-142105000D01* -X42545000Y-142127235D01* -X42656783Y-142105000D01* -X42987855Y-142039146D01* -X43363289Y-141788289D01* -X43426613Y-141693518D01* -X43586441Y-141533690D01* -X45645000Y-141533690D01* -X45645000Y-141924250D01* -X45803750Y-142083000D01* -X47403000Y-142083000D01* -X47403000Y-141183750D01* -X47244250Y-141025000D01* -X46153691Y-141025000D01* -X45920302Y-141121673D01* -X45741673Y-141300301D01* -X45645000Y-141533690D01* -X43586441Y-141533690D01* -X46190132Y-138930000D01* -X49146791Y-138930000D01* -X49091843Y-139012235D01* -G36* -X64695000Y-101457792D02* -X64355134Y-101082611D01* -X63849041Y-100843086D01* -X63627000Y-100964371D01* -X63627000Y-102108000D01* -X63647000Y-102108000D01* -X63647000Y-102362000D01* -X63627000Y-102362000D01* -X63627000Y-103505629D01* -X63849041Y-103626914D01* -X64355134Y-103387389D01* -X64695000Y-103012208D01* -X64695000Y-105908265D01* -X64507745Y-105851861D01* -X63679605Y-106680000D01* -X64507745Y-107508139D01* -X64695000Y-107451735D01* -X64695000Y-110330514D01* -X64534577Y-110090423D01* -X64059909Y-109773260D01* -X63641333Y-109690000D01* -X63358667Y-109690000D01* -X62940091Y-109773260D01* -X62615717Y-109990000D01* -X62065132Y-109990000D01* -X60571613Y-108496482D01* -X60508289Y-108401711D01* -X60132855Y-108150854D01* -X59801783Y-108085000D01* -X59690000Y-108062765D01* -X59578217Y-108085000D01* -X55133217Y-108085000D01* -X54802145Y-108150854D01* -X54426711Y-108401711D01* -X54175854Y-108777145D01* -X54087765Y-109220000D01* -X54175854Y-109662855D01* -X54426711Y-110038289D01* -X54802145Y-110289146D01* -X55133217Y-110355000D01* -X59219869Y-110355000D01* -X60460001Y-111595133D01* -X60460000Y-115458216D01* -X60437765Y-115570000D01* -X60460001Y-115681788D01* -X60460000Y-119903216D01* -X60437765Y-120015000D01* -X60460001Y-120126788D01* -X60460000Y-124348216D01* -X60437765Y-124460000D01* -X60460001Y-124571788D01* -X60460000Y-134360604D01* -X60378466Y-134442138D01* -X60160000Y-134969561D01* -X60160000Y-135540439D01* -X60378466Y-136067862D01* -X60460001Y-136149397D01* -X60460000Y-136660000D01* -X56984131Y-136660000D01* -X57349005Y-136508864D01* -X57423139Y-136262745D01* -X56595000Y-135434605D01* -X55766861Y-136262745D01* -X55840995Y-136508864D01* -X56261472Y-136660000D01* -X45831782Y-136660000D01* -X45719999Y-136637765D01* -X45277145Y-136725854D01* -X44901711Y-136976711D01* -X44838389Y-137071479D01* -X42074869Y-139835000D01* -X37205132Y-139835000D01* -X36770667Y-139400536D01* -X36807765Y-139393157D01* -X37017809Y-139252809D01* -X37158157Y-139042765D01* -X37177099Y-138947532D01* -X39587073Y-138947532D01* -X39685736Y-139214387D01* -X40295461Y-139440908D01* -X40945460Y-139416856D01* -X41434264Y-139214387D01* -X41532927Y-138947532D01* -X40560000Y-137974605D01* -X39587073Y-138947532D01* -X37177099Y-138947532D01* -X37207440Y-138795000D01* -X37207440Y-137530461D01* -X38914092Y-137530461D01* -X38938144Y-138180460D01* -X39140613Y-138669264D01* -X39407468Y-138767927D01* -X40380395Y-137795000D01* -X40739605Y-137795000D01* -X41712532Y-138767927D01* -X41979387Y-138669264D01* -X42205908Y-138059539D01* -X42181856Y-137409540D01* -X41979387Y-136920736D01* -X41712532Y-136822073D01* -X40739605Y-137795000D01* -X40380395Y-137795000D01* -X39407468Y-136822073D01* -X39140613Y-136920736D01* -X38914092Y-137530461D01* -X37207440Y-137530461D01* -X37207440Y-136795000D01* -X37177100Y-136642468D01* -X39587073Y-136642468D01* -X40560000Y-137615395D01* -X41532927Y-136642468D01* -X41434264Y-136375613D01* -X40824539Y-136149092D01* -X40174540Y-136173144D01* -X39685736Y-136375613D01* -X39587073Y-136642468D01* -X37177100Y-136642468D01* -X37158157Y-136547235D01* -X37017809Y-136337191D01* -X36807765Y-136196843D01* -X36560000Y-136147560D01* -X34560000Y-136147560D01* -X34312235Y-136196843D01* -X34102191Y-136337191D01* -X33961843Y-136547235D01* -X33912560Y-136795000D01* -X33912560Y-138795000D01* -X33961843Y-139042765D01* -X34102191Y-139252809D01* -X34312235Y-139393157D01* -X34425000Y-139415587D01* -X34425000Y-139683216D01* -X34402765Y-139795000D01* -X34432922Y-139946608D01* -X34490854Y-140237854D01* -X34741711Y-140613289D01* -X34836482Y-140676613D01* -X35695000Y-141535132D01* -X35695001Y-144568541D01* -X35680000Y-144578564D01* -X35527765Y-144476843D01* -X35280000Y-144427560D01* -X33780000Y-144427560D01* -X33532235Y-144476843D01* -X33322191Y-144617191D01* -X33181843Y-144827235D01* -X33132560Y-145075000D01* -X33132560Y-147075000D01* -X33181843Y-147322765D01* -X33322191Y-147532809D01* -X33395001Y-147581459D01* -X33395001Y-147604868D01* -X32766482Y-148233386D01* -X32671712Y-148296710D01* -X32460000Y-148613560D01* -X32460000Y-134976890D01* -X45548524Y-134976890D01* -X45718355Y-135386924D01* -X46108642Y-135815183D01* -X46633108Y-136061486D01* -X46863000Y-135940819D01* -X46863000Y-134747000D01* -X47117000Y-134747000D01* -X47117000Y-135940819D01* -X47346892Y-136061486D01* -X47871358Y-135815183D01* -X48261645Y-135386924D01* -X48406072Y-135038223D01* -X55148035Y-135038223D01* -X55175222Y-135608454D01* -X55341136Y-136009005D01* -X55587255Y-136083139D01* -X56415395Y-135255000D01* -X56774605Y-135255000D01* -X57602745Y-136083139D01* -X57848864Y-136009005D01* -X58041965Y-135471777D01* -X58014778Y-134901546D01* -X57848864Y-134500995D01* -X57602745Y-134426861D01* -X56774605Y-135255000D01* -X56415395Y-135255000D01* -X55587255Y-134426861D01* -X55341136Y-134500995D01* -X55148035Y-135038223D01* -X48406072Y-135038223D01* -X48431476Y-134976890D01* -X48310155Y-134747000D01* -X47117000Y-134747000D01* -X46863000Y-134747000D01* -X45669845Y-134747000D01* -X45548524Y-134976890D01* -X32460000Y-134976890D01* -X32460000Y-132112532D01* -X34587073Y-132112532D01* -X34685736Y-132379387D01* -X35295461Y-132605908D01* -X35945460Y-132581856D01* -X36434264Y-132379387D01* -X36532927Y-132112532D01* -X35560000Y-131139605D01* -X34587073Y-132112532D01* -X32460000Y-132112532D01* -X32460000Y-130695461D01* -X33914092Y-130695461D01* -X33938144Y-131345460D01* -X34140613Y-131834264D01* -X34407468Y-131932927D01* -X35380395Y-130960000D01* -X35739605Y-130960000D01* -X36712532Y-131932927D01* -X36979387Y-131834264D01* -X37205908Y-131224539D01* -X37184085Y-130634778D01* -X38425000Y-130634778D01* -X38425000Y-131285222D01* -X38673914Y-131886153D01* -X39133847Y-132346086D01* -X39734778Y-132595000D01* -X40385222Y-132595000D01* -X40986153Y-132346086D01* -X41446086Y-131886153D01* -X41695000Y-131285222D01* -X41695000Y-130634778D01* -X41446086Y-130033847D01* -X40986153Y-129573914D01* -X40385222Y-129325000D01* -X39734778Y-129325000D01* -X39133847Y-129573914D01* -X38673914Y-130033847D01* -X38425000Y-130634778D01* -X37184085Y-130634778D01* -X37181856Y-130574540D01* -X36979387Y-130085736D01* -X36712532Y-129987073D01* -X35739605Y-130960000D01* -X35380395Y-130960000D01* -X34407468Y-129987073D01* -X34140613Y-130085736D01* -X33914092Y-130695461D01* -X32460000Y-130695461D01* -X32460000Y-129807468D01* -X34587073Y-129807468D01* -X35560000Y-130780395D01* -X36532927Y-129807468D01* -X36434264Y-129540613D01* -X35824539Y-129314092D01* -X35174540Y-129338144D01* -X34685736Y-129540613D01* -X34587073Y-129807468D01* -X32460000Y-129807468D01* -X32460000Y-125612532D01* -X34587073Y-125612532D01* -X34685736Y-125879387D01* -X35295461Y-126105908D01* -X35945460Y-126081856D01* -X36434264Y-125879387D01* -X36532927Y-125612532D01* -X35560000Y-124639605D01* -X34587073Y-125612532D01* -X32460000Y-125612532D01* -X32460000Y-124195461D01* -X33914092Y-124195461D01* -X33938144Y-124845460D01* -X34140613Y-125334264D01* -X34407468Y-125432927D01* -X35380395Y-124460000D01* -X35739605Y-124460000D01* -X36712532Y-125432927D01* -X36979387Y-125334264D01* -X37205908Y-124724539D01* -X37181856Y-124074540D01* -X36979387Y-123585736D01* -X36712532Y-123487073D01* -X35739605Y-124460000D01* -X35380395Y-124460000D01* -X34407468Y-123487073D01* -X34140613Y-123585736D01* -X33914092Y-124195461D01* -X32460000Y-124195461D01* -X32460000Y-122437532D01* -X34587073Y-122437532D01* -X34685736Y-122704387D01* -X35113653Y-122863364D01* -X34685736Y-123040613D01* -X34587073Y-123307468D01* -X35560000Y-124280395D01* -X36532927Y-123307468D01* -X36434264Y-123040613D01* -X36006347Y-122881636D01* -X36434264Y-122704387D01* -X36532927Y-122437532D01* -X35560000Y-121464605D01* -X34587073Y-122437532D01* -X32460000Y-122437532D01* -X32460000Y-121020461D01* -X33914092Y-121020461D01* -X33938144Y-121670460D01* -X34140613Y-122159264D01* -X34407468Y-122257927D01* -X35380395Y-121285000D01* -X35739605Y-121285000D01* -X36712532Y-122257927D01* -X36979387Y-122159264D01* -X37205908Y-121549539D01* -X37181856Y-120899540D01* -X36979387Y-120410736D01* -X36712532Y-120312073D01* -X35739605Y-121285000D01* -X35380395Y-121285000D01* -X34407468Y-120312073D01* -X34140613Y-120410736D01* -X33914092Y-121020461D01* -X32460000Y-121020461D01* -X32460000Y-120132468D01* -X34587073Y-120132468D01* -X35560000Y-121105395D01* -X36532927Y-120132468D01* -X36434264Y-119865613D01* -X35824539Y-119639092D01* -X35174540Y-119663144D01* -X34685736Y-119865613D01* -X34587073Y-120132468D01* -X32460000Y-120132468D01* -X32460000Y-115937532D01* -X34587073Y-115937532D01* -X34685736Y-116204387D01* -X35295461Y-116430908D01* -X35945460Y-116406856D01* -X36434264Y-116204387D01* -X36532927Y-115937532D01* -X35560000Y-114964605D01* -X34587073Y-115937532D01* -X32460000Y-115937532D01* -X32460000Y-114520461D01* -X33914092Y-114520461D01* -X33938144Y-115170460D01* -X34140613Y-115659264D01* -X34407468Y-115757927D01* -X35380395Y-114785000D01* -X35739605Y-114785000D01* -X36712532Y-115757927D01* -X36979387Y-115659264D01* -X37205908Y-115049539D01* -X37184085Y-114459778D01* -X38425000Y-114459778D01* -X38425000Y-115110222D01* -X38673914Y-115711153D01* -X39133847Y-116171086D01* -X39300001Y-116239909D01* -X39300000Y-118035148D01* -X39285111Y-118110000D01* -X39300001Y-118184857D01* -X39300000Y-119830091D01* -X39133847Y-119898914D01* -X38673914Y-120358847D01* -X38425000Y-120959778D01* -X38425000Y-121610222D01* -X38673914Y-122211153D01* -X39133847Y-122671086D01* -X39620103Y-122872500D01* -X39133847Y-123073914D01* -X38673914Y-123533847D01* -X38425000Y-124134778D01* -X38425000Y-124785222D01* -X38673914Y-125386153D01* -X39133847Y-125846086D01* -X39734778Y-126095000D01* -X40385222Y-126095000D01* -X40986153Y-125846086D01* -X41446086Y-125386153D01* -X41695000Y-124785222D01* -X41695000Y-124460000D01* -X45475908Y-124460000D01* -X45591161Y-125039418D01* -X45919375Y-125530625D01* -X46217761Y-125730000D01* -X45919375Y-125929375D01* -X45591161Y-126420582D01* -X45475908Y-127000000D01* -X45591161Y-127579418D01* -X45919375Y-128070625D01* -X46217761Y-128270000D01* -X45919375Y-128469375D01* -X45591161Y-128960582D01* -X45475908Y-129540000D01* -X45591161Y-130119418D01* -X45919375Y-130610625D01* -X46217761Y-130810000D01* -X45919375Y-131009375D01* -X45591161Y-131500582D01* -X45475908Y-132080000D01* -X45591161Y-132659418D01* -X45919375Y-133150625D01* -X46238478Y-133363843D01* -X46108642Y-133424817D01* -X45718355Y-133853076D01* -X45548524Y-134263110D01* -X45669845Y-134493000D01* -X46863000Y-134493000D01* -X46863000Y-134473000D01* -X47117000Y-134473000D01* -X47117000Y-134493000D01* -X48310155Y-134493000D01* -X48431476Y-134263110D01* -X48424910Y-134247255D01* -X55766861Y-134247255D01* -X56595000Y-135075395D01* -X57423139Y-134247255D01* -X57349005Y-134001136D01* -X56811777Y-133808035D01* -X56241546Y-133835222D01* -X55840995Y-134001136D01* -X55766861Y-134247255D01* -X48424910Y-134247255D01* -X48261645Y-133853076D01* -X47871358Y-133424817D01* -X47741522Y-133363843D01* -X48060625Y-133150625D01* -X48388839Y-132659418D01* -X48504092Y-132080000D01* -X48388839Y-131500582D01* -X48060625Y-131009375D01* -X47762239Y-130810000D01* -X48060625Y-130610625D01* -X48388839Y-130119418D01* -X48504092Y-129540000D01* -X48388839Y-128960582D01* -X48060625Y-128469375D01* -X47762239Y-128270000D01* -X48060625Y-128070625D01* -X48388839Y-127579418D01* -X48504092Y-127000000D01* -X48388839Y-126420582D01* -X48060625Y-125929375D01* -X47762239Y-125730000D01* -X48060625Y-125530625D01* -X48388839Y-125039418D01* -X48504092Y-124460000D01* -X48388839Y-123880582D01* -X48060625Y-123389375D01* -X48042381Y-123377184D01* -X48087765Y-123368157D01* -X48297809Y-123227809D01* -X48438157Y-123017765D01* -X48487440Y-122770000D01* -X48487440Y-121070000D01* -X48438157Y-120822235D01* -X48297809Y-120612191D01* -X48087765Y-120471843D01* -X47840000Y-120422560D01* -X46140000Y-120422560D01* -X45892235Y-120471843D01* -X45682191Y-120612191D01* -X45541843Y-120822235D01* -X45492560Y-121070000D01* -X45492560Y-122770000D01* -X45541843Y-123017765D01* -X45682191Y-123227809D01* -X45892235Y-123368157D01* -X45937619Y-123377184D01* -X45919375Y-123389375D01* -X45591161Y-123880582D01* -X45475908Y-124460000D01* -X41695000Y-124460000D01* -X41695000Y-124134778D01* -X41626177Y-123968624D01* -X45619801Y-119975001D01* -X51884843Y-119975001D01* -X51876887Y-120015000D01* -X51988260Y-120574909D01* -X52305423Y-121049577D01* -X52780091Y-121366740D01* -X53198667Y-121450000D01* -X53481333Y-121450000D01* -X53899909Y-121366740D01* -X54374577Y-121049577D01* -X54485001Y-120884316D01* -X54485001Y-123590684D01* -X54374577Y-123425423D01* -X53899909Y-123108260D01* -X53481333Y-123025000D01* -X53198667Y-123025000D01* -X52780091Y-123108260D01* -X52305423Y-123425423D01* -X51988260Y-123900091D01* -X51876887Y-124460000D01* -X51988260Y-125019909D01* -X52305423Y-125494577D01* -X52780091Y-125811740D01* -X53198667Y-125895000D01* -X53481333Y-125895000D01* -X53899909Y-125811740D01* -X54374577Y-125494577D01* -X54485001Y-125329317D01* -X54485000Y-128035683D01* -X54374577Y-127870423D01* -X53899909Y-127553260D01* -X53481333Y-127470000D01* -X53198667Y-127470000D01* -X52780091Y-127553260D01* -X52305423Y-127870423D01* -X51988260Y-128345091D01* -X51876887Y-128905000D01* -X51988260Y-129464909D01* -X52305423Y-129939577D01* -X52780091Y-130256740D01* -X53198667Y-130340000D01* -X53481333Y-130340000D01* -X53899909Y-130256740D01* -X54374577Y-129939577D01* -X54485000Y-129774317D01* -X54485000Y-131517710D01* -X54452345Y-131550365D01* -X54310000Y-131894017D01* -X54310000Y-132265983D01* -X54452345Y-132609635D01* -X54715365Y-132872655D01* -X55059017Y-133015000D01* -X55430983Y-133015000D01* -X55774635Y-132872655D01* -X56037655Y-132609635D01* -X56180000Y-132265983D01* -X56180000Y-131894017D01* -X56037655Y-131550365D01* -X56005000Y-131517710D01* -X56005000Y-118819848D01* -X56019888Y-118745000D01* -X56005000Y-118670152D01* -X56005000Y-118670148D01* -X55960904Y-118448463D01* -X55792929Y-118197071D01* -X55729473Y-118154671D01* -X55200331Y-117625530D01* -X55157929Y-117562071D01* -X54906537Y-117394096D01* -X54684852Y-117350000D01* -X54684847Y-117350000D01* -X54610000Y-117335112D01* -X54535153Y-117350000D01* -X54100000Y-117350000D01* -X54100000Y-116808430D01* -X54152862Y-116786534D01* -X54556534Y-116382862D01* -X54775000Y-115855439D01* -X54775000Y-115284561D01* -X54556534Y-114757138D01* -X54152862Y-114353466D01* -X53625439Y-114135000D01* -X53054561Y-114135000D01* -X52527138Y-114353466D01* -X52123466Y-114757138D01* -X51905000Y-115284561D01* -X51905000Y-115855439D01* -X52123466Y-116382862D01* -X52527138Y-116786534D01* -X52580000Y-116808430D01* -X52580001Y-117350000D01* -X40820000Y-117350000D01* -X40820000Y-116239909D01* -X40986153Y-116171086D01* -X41446086Y-115711153D01* -X41695000Y-115110222D01* -X41695000Y-114459778D01* -X41446086Y-113858847D01* -X40986153Y-113398914D01* -X40385222Y-113150000D01* -X39734778Y-113150000D01* -X39133847Y-113398914D01* -X38673914Y-113858847D01* -X38425000Y-114459778D01* -X37184085Y-114459778D01* -X37181856Y-114399540D01* -X36979387Y-113910736D01* -X36712532Y-113812073D01* -X35739605Y-114785000D01* -X35380395Y-114785000D01* -X34407468Y-113812073D01* -X34140613Y-113910736D01* -X33914092Y-114520461D01* -X32460000Y-114520461D01* -X32460000Y-113632468D01* -X34587073Y-113632468D01* -X35560000Y-114605395D01* -X36532927Y-113632468D01* -X36434264Y-113365613D01* -X35824539Y-113139092D01* -X35174540Y-113163144D01* -X34685736Y-113365613D01* -X34587073Y-113632468D01* -X32460000Y-113632468D01* -X32460000Y-110140750D01* -X34165000Y-110140750D01* -X34165000Y-110741309D01* -X34261673Y-110974698D01* -X34440301Y-111153327D01* -X34673690Y-111250000D01* -X35274250Y-111250000D01* -X35433000Y-111091250D01* -X35433000Y-109982000D01* -X34323750Y-109982000D01* -X34165000Y-110140750D01* -X32460000Y-110140750D01* -X32460000Y-108968691D01* -X34165000Y-108968691D01* -X34165000Y-109569250D01* -X34323750Y-109728000D01* -X35433000Y-109728000D01* -X35433000Y-108618750D01* -X35274250Y-108460000D01* -X34673690Y-108460000D01* -X34440301Y-108556673D01* -X34261673Y-108735302D01* -X34165000Y-108968691D01* -X32460000Y-108968691D01* -X32460000Y-105491679D01* -X32460091Y-105491740D01* -X32878667Y-105575000D01* -X33161333Y-105575000D01* -X33579909Y-105491740D01* -X34054577Y-105174577D01* -X34132763Y-105057564D01* -X37340000Y-108264802D01* -X37340000Y-108659865D01* -X37309796Y-108672376D01* -X36955000Y-109027172D01* -X36955000Y-108968691D01* -X36858327Y-108735302D01* -X36679699Y-108556673D01* -X36446310Y-108460000D01* -X35845750Y-108460000D01* -X35687000Y-108618750D01* -X35687000Y-109728000D01* -X35707000Y-109728000D01* -X35707000Y-109982000D01* -X35687000Y-109982000D01* -X35687000Y-111091250D01* -X35845750Y-111250000D01* -X36446310Y-111250000D01* -X36679699Y-111153327D01* -X36858327Y-110974698D01* -X36955000Y-110741309D01* -X36955000Y-110682828D01* -X37309796Y-111037624D01* -X37822517Y-111250000D01* -X38377483Y-111250000D01* -X38890204Y-111037624D01* -X39282624Y-110645204D01* -X39370000Y-110434260D01* -X39457376Y-110645204D01* -X39849796Y-111037624D01* -X40362517Y-111250000D01* -X40917483Y-111250000D01* -X41430204Y-111037624D01* -X41822624Y-110645204D01* -X42035000Y-110132483D01* -X42035000Y-109577517D01* -X41822624Y-109064796D01* -X41430204Y-108672376D01* -X40917483Y-108460000D01* -X40362517Y-108460000D01* -X39849796Y-108672376D01* -X39457376Y-109064796D01* -X39370000Y-109275740D01* -X39282624Y-109064796D01* -X38890204Y-108672376D01* -X38860000Y-108659865D01* -X38860000Y-108024848D01* -X38874888Y-107950000D01* -X38860000Y-107875152D01* -X38860000Y-107875148D01* -X38815904Y-107653463D01* -X38815904Y-107653462D01* -X38690329Y-107465527D01* -X38647929Y-107402071D01* -X38584473Y-107359671D01* -X34880331Y-103655530D01* -X34837929Y-103592071D01* -X34586537Y-103424096D01* -X34364852Y-103380000D01* -X34364847Y-103380000D01* -X34290000Y-103365112D01* -X34235358Y-103375981D01* -X34054577Y-103105423D01* -X33579909Y-102788260D01* -X33161333Y-102705000D01* -X32878667Y-102705000D01* -X32460091Y-102788260D01* -X32460000Y-102788321D01* -X32460000Y-102257071D01* -X32670959Y-102356914D01* -X32893000Y-102235629D01* -X32893000Y-101092000D01* -X33147000Y-101092000D01* -X33147000Y-102235629D01* -X33369041Y-102356914D01* -X33875134Y-102117389D01* -X34251041Y-101702423D01* -X34411904Y-101314039D01* -X34289915Y-101092000D01* -X33147000Y-101092000D01* -X32893000Y-101092000D01* -X32873000Y-101092000D01* -X32873000Y-100838000D01* -X32893000Y-100838000D01* -X32893000Y-99694371D01* -X33147000Y-99694371D01* -X33147000Y-100838000D01* -X34289915Y-100838000D01* -X34411904Y-100615961D01* -X34251041Y-100227577D01* -X33875134Y-99812611D01* -X33369041Y-99573086D01* -X33147000Y-99694371D01* -X32893000Y-99694371D01* -X32670959Y-99573086D01* -X32460000Y-99672929D01* -X32460000Y-93862532D01* -X34032073Y-93862532D01* -X34130736Y-94129387D01* -X34740461Y-94355908D01* -X35390460Y-94331856D01* -X35879264Y-94129387D01* -X35977927Y-93862532D01* -X35005000Y-92889605D01* -X34032073Y-93862532D01* -X32460000Y-93862532D01* -X32460000Y-92445461D01* -X33359092Y-92445461D01* -X33383144Y-93095460D01* -X33585613Y-93584264D01* -X33852468Y-93682927D01* -X34825395Y-92710000D01* -X35184605Y-92710000D01* -X36157532Y-93682927D01* -X36424387Y-93584264D01* -X36650908Y-92974539D01* -X36626856Y-92324540D01* -X36424387Y-91835736D01* -X36157532Y-91737073D01* -X35184605Y-92710000D01* -X34825395Y-92710000D01* -X33852468Y-91737073D01* -X33585613Y-91835736D01* -X33359092Y-92445461D01* -X32460000Y-92445461D01* -X32460000Y-91557468D01* -X34032073Y-91557468D01* -X35005000Y-92530395D01* -X35977927Y-91557468D01* -X35879264Y-91290613D01* -X35269539Y-91064092D01* -X34619540Y-91088144D01* -X34130736Y-91290613D01* -X34032073Y-91557468D01* -X32460000Y-91557468D01* -X32460000Y-84804561D01* -X36665000Y-84804561D01* -X36665000Y-85375439D01* -X36883466Y-85902862D01* -X37287138Y-86306534D01* -X37340001Y-86328431D01* -X37340000Y-94540153D01* -X37325112Y-94615000D01* -X37340000Y-94689847D01* -X37340000Y-94689851D01* -X37384096Y-94911536D01* -X37552071Y-95162929D01* -X37615530Y-95205331D01* -X41319671Y-98909473D01* -X41362071Y-98972929D01* -X41425527Y-99015329D01* -X41613462Y-99140904D01* -X41645291Y-99147235D01* -X41835148Y-99185000D01* -X41835152Y-99185000D01* -X41910000Y-99199888D01* -X41984848Y-99185000D01* -X44204331Y-99185000D01* -X44162560Y-99395000D01* -X44162560Y-99918164D01* -X43992862Y-99748466D01* -X43465439Y-99530000D01* -X42894561Y-99530000D01* -X42367138Y-99748466D01* -X41963466Y-100152138D01* -X41745000Y-100679561D01* -X41745000Y-101250439D01* -X41963466Y-101777862D01* -X42367138Y-102181534D01* -X42894561Y-102400000D01* -X43465439Y-102400000D01* -X43518302Y-102378103D01* -X43859671Y-102719473D01* -X43902071Y-102782929D01* -X44153463Y-102950904D01* -X44210832Y-102962316D01* -X44181115Y-103111719D01* -X43992862Y-102923466D01* -X43465439Y-102705000D01* -X42894561Y-102705000D01* -X42367138Y-102923466D01* -X41963466Y-103327138D01* -X41745000Y-103854561D01* -X41745000Y-104425439D01* -X41963466Y-104952862D01* -X42367138Y-105356534D01* -X42894561Y-105575000D01* -X43465439Y-105575000D01* -X43992862Y-105356534D01* -X44181115Y-105168281D01* -X44211843Y-105322765D01* -X44270132Y-105410000D01* -X44211843Y-105497235D01* -X44162560Y-105745000D01* -X44162560Y-106345000D01* -X44211843Y-106592765D01* -X44270132Y-106680000D01* -X44211843Y-106767235D01* -X44162560Y-107015000D01* -X44162560Y-107615000D01* -X44211843Y-107862765D01* -X44352191Y-108072809D01* -X44562235Y-108213157D01* -X44810000Y-108262440D01* -X44960001Y-108262440D01* -X44960000Y-111532560D01* -X44870000Y-111532560D01* -X44622235Y-111581843D01* -X44412191Y-111722191D01* -X44271843Y-111932235D01* -X44222560Y-112180000D01* -X44222560Y-113880000D01* -X44271843Y-114127765D01* -X44412191Y-114337809D01* -X44622235Y-114478157D01* -X44667619Y-114487184D01* -X44649375Y-114499375D01* -X44321161Y-114990582D01* -X44205908Y-115570000D01* -X44321161Y-116149418D01* -X44649375Y-116640625D01* -X45140582Y-116968839D01* -X45573744Y-117055000D01* -X45866256Y-117055000D01* -X46299418Y-116968839D01* -X46790625Y-116640625D01* -X47118839Y-116149418D01* -X47234092Y-115570000D01* -X47118839Y-114990582D01* -X46790625Y-114499375D01* -X46772381Y-114487184D01* -X46817765Y-114478157D01* -X47027809Y-114337809D01* -X47168157Y-114127765D01* -X47217440Y-113880000D01* -X47217440Y-112180000D01* -X47168157Y-111932235D01* -X47027809Y-111722191D01* -X46817765Y-111581843D01* -X46570000Y-111532560D01* -X46480000Y-111532560D01* -X46480000Y-108228625D01* -X46557765Y-108213157D01* -X46767809Y-108072809D01* -X46908157Y-107862765D01* -X46946881Y-107668085D01* -X46960018Y-107687745D01* -X47077072Y-107862929D01* -X47140528Y-107905329D01* -X48770000Y-109534802D01* -X48770001Y-110415145D01* -X48770000Y-110415149D01* -X48770000Y-111532560D01* -X48680000Y-111532560D01* -X48432235Y-111581843D01* -X48222191Y-111722191D01* -X48081843Y-111932235D01* -X48032560Y-112180000D01* -X48032560Y-113880000D01* -X48081843Y-114127765D01* -X48222191Y-114337809D01* -X48432235Y-114478157D01* -X48477619Y-114487184D01* -X48459375Y-114499375D01* -X48131161Y-114990582D01* -X48015908Y-115570000D01* -X48131161Y-116149418D01* -X48459375Y-116640625D01* -X48950582Y-116968839D01* -X49383744Y-117055000D01* -X49676256Y-117055000D01* -X50109418Y-116968839D01* -X50600625Y-116640625D01* -X50928839Y-116149418D01* -X51044092Y-115570000D01* -X50928839Y-114990582D01* -X50600625Y-114499375D01* -X50582381Y-114487184D01* -X50627765Y-114478157D01* -X50837809Y-114337809D01* -X50978157Y-114127765D01* -X51027440Y-113880000D01* -X51027440Y-112180000D01* -X50978157Y-111932235D01* -X50837809Y-111722191D01* -X50627765Y-111581843D01* -X50380000Y-111532560D01* -X50290000Y-111532560D01* -X50290000Y-110839561D01* -X51905000Y-110839561D01* -X51905000Y-111410439D01* -X52123466Y-111937862D01* -X52527138Y-112341534D01* -X53054561Y-112560000D01* -X53625439Y-112560000D01* -X54152862Y-112341534D01* -X54556534Y-111937862D01* -X54775000Y-111410439D01* -X54775000Y-110839561D01* -X54556534Y-110312138D01* -X54152862Y-109908466D01* -X53625439Y-109690000D01* -X53054561Y-109690000D01* -X52527138Y-109908466D01* -X52123466Y-110312138D01* -X51905000Y-110839561D01* -X50290000Y-110839561D01* -X50290000Y-109294848D01* -X50304888Y-109220000D01* -X50290000Y-109145152D01* -X50290000Y-109145148D01* -X50245904Y-108923463D01* -X50245904Y-108923462D01* -X50120329Y-108735527D01* -X50077929Y-108672071D01* -X50014473Y-108629671D01* -X49634802Y-108250000D01* -X50147459Y-108250000D01* -X50210000Y-108262440D01* -X51710000Y-108262440D01* -X51772541Y-108250000D01* -X52612914Y-108250000D01* -X52705000Y-108268317D01* -X52797086Y-108250000D01* -X53069819Y-108195750D01* -X53192504Y-108113774D01* -X53198667Y-108115000D01* -X53481333Y-108115000D01* -X53899909Y-108031740D01* -X54374577Y-107714577D01* -X54392505Y-107687745D01* -X62671861Y-107687745D01* -X62745995Y-107933864D01* -X63283223Y-108126965D01* -X63853454Y-108099778D01* -X64254005Y-107933864D01* -X64328139Y-107687745D01* -X63500000Y-106859605D01* -X62671861Y-107687745D01* -X54392505Y-107687745D01* -X54441112Y-107615000D01* -X55152914Y-107615000D01* -X55245000Y-107633317D01* -X55337086Y-107615000D01* -X55609819Y-107560750D01* -X55919097Y-107354097D01* -X55971261Y-107276028D01* -X56784066Y-106463223D01* -X62053035Y-106463223D01* -X62080222Y-107033454D01* -X62246136Y-107434005D01* -X62492255Y-107508139D01* -X63320395Y-106680000D01* -X62492255Y-105851861D01* -X62246136Y-105925995D01* -X62053035Y-106463223D01* -X56784066Y-106463223D01* -X57575034Y-105672255D01* -X62671861Y-105672255D01* -X63500000Y-106500395D01* -X64328139Y-105672255D01* -X64254005Y-105426136D01* -X63716777Y-105233035D01* -X63146546Y-105260222D01* -X62745995Y-105426136D01* -X62671861Y-105672255D01* -X57575034Y-105672255D01* -X60663250Y-102584039D01* -X62108096Y-102584039D01* -X62268959Y-102972423D01* -X62644866Y-103387389D01* -X63150959Y-103626914D01* -X63373000Y-103505629D01* -X63373000Y-102362000D01* -X62230085Y-102362000D01* -X62108096Y-102584039D01* -X60663250Y-102584039D01* -X61361328Y-101885961D01* -X62108096Y-101885961D01* -X62230085Y-102108000D01* -X63373000Y-102108000D01* -X63373000Y-100964371D01* -X63150959Y-100843086D01* -X62644866Y-101082611D01* -X62268959Y-101497577D01* -X62108096Y-101885961D01* -X61361328Y-101885961D01* -X62826031Y-100421259D01* -X62904097Y-100369097D01* -X63110750Y-100059819D01* -X63165000Y-99787086D01* -X63183317Y-99695000D01* -X63165000Y-99602914D01* -X63165000Y-94357440D01* -X63230000Y-94357440D01* -X63477765Y-94308157D01* -X63687809Y-94167809D01* -X63828157Y-93957765D01* -X63877440Y-93710000D01* -X63877440Y-91710000D01* -X63828157Y-91462235D01* -X63687809Y-91252191D01* -X63477765Y-91111843D01* -X63230000Y-91062560D01* -X61230000Y-91062560D01* -X60982235Y-91111843D01* -X60772191Y-91252191D01* -X60631843Y-91462235D01* -X60582560Y-91710000D01* -X60582560Y-93710000D01* -X60631843Y-93957765D01* -X60772191Y-94167809D01* -X60982235Y-94308157D01* -X61230000Y-94357440D01* -X61295000Y-94357440D01* -X61295001Y-99307709D01* -X54857711Y-105745000D01* -X54441112Y-105745000D01* -X54374577Y-105645423D01* -X53899909Y-105328260D01* -X53481333Y-105245000D01* -X53198667Y-105245000D01* -X52780091Y-105328260D01* -X52333854Y-105626426D01* -X52308157Y-105497235D01* -X52249868Y-105410000D01* -X52308157Y-105322765D01* -X52357440Y-105075000D01* -X52357440Y-104475000D01* -X52308157Y-104227235D01* -X52249868Y-104140000D01* -X52308157Y-104052765D01* -X52357440Y-103805000D01* -X52357440Y-103281836D01* -X52527138Y-103451534D01* -X53054561Y-103670000D01* -X53625439Y-103670000D01* -X54152862Y-103451534D01* -X54556534Y-103047862D01* -X54775000Y-102520439D01* -X54775000Y-101949561D01* -X54556534Y-101422138D01* -X54152862Y-101018466D01* -X53625439Y-100800000D01* -X53085867Y-100800000D01* -X52718587Y-100432720D01* -X52672001Y-100362999D01* -X52395801Y-100178448D01* -X52327001Y-100164763D01* -X52345000Y-100121310D01* -X52345000Y-99980750D01* -X52186250Y-99822000D01* -X51087000Y-99822000D01* -X51087000Y-99842000D01* -X50833000Y-99842000D01* -X50833000Y-99822000D01* -X49733750Y-99822000D01* -X49575000Y-99980750D01* -X49575000Y-100121310D01* -X49664768Y-100338028D01* -X49611843Y-100417235D01* -X49562560Y-100665000D01* -X49562560Y-101265000D01* -X49611843Y-101512765D01* -X49670132Y-101600000D01* -X49611843Y-101687235D01* -X49562560Y-101935000D01* -X49562560Y-102535000D01* -X49604310Y-102744893D01* -X49529999Y-102730112D01* -X49455152Y-102745000D01* -X49455148Y-102745000D01* -X49233463Y-102789096D01* -X49020000Y-102931728D01* -X49020000Y-102797290D01* -X49052655Y-102764635D01* -X49195000Y-102420983D01* -X49195000Y-102049017D01* -X49052655Y-101705365D01* -X48789635Y-101442345D01* -X48445983Y-101300000D01* -X48074017Y-101300000D01* -X47730365Y-101442345D01* -X47467345Y-101705365D01* -X47325000Y-102049017D01* -X47325000Y-102420983D01* -X47467345Y-102764635D01* -X47500000Y-102797290D01* -X47500001Y-103190197D01* -X46957440Y-103732759D01* -X46957440Y-103205000D01* -X46908157Y-102957235D01* -X46849868Y-102870000D01* -X46908157Y-102782765D01* -X46957440Y-102535000D01* -X46957440Y-101935000D01* -X46908157Y-101687235D01* -X46849868Y-101600000D01* -X46908157Y-101512765D01* -X46910327Y-101501858D01* -X46945331Y-101449470D01* -X47794473Y-100600329D01* -X47857929Y-100557929D01* -X48025904Y-100306537D01* -X48070000Y-100084852D01* -X48070000Y-100084847D01* -X48084888Y-100010000D01* -X48070000Y-99935153D01* -X48070000Y-98125000D01* -X49562560Y-98125000D01* -X49562560Y-98725000D01* -X49611843Y-98972765D01* -X49664768Y-99051972D01* -X49575000Y-99268690D01* -X49575000Y-99409250D01* -X49733750Y-99568000D01* -X50833000Y-99568000D01* -X50833000Y-99548000D01* -X51087000Y-99548000D01* -X51087000Y-99568000D01* -X52186250Y-99568000D01* -X52345000Y-99409250D01* -X52345000Y-99268690D01* -X52310334Y-99185000D01* -X56440153Y-99185000D01* -X56515000Y-99199888D01* -X56589847Y-99185000D01* -X56589852Y-99185000D01* -X56811537Y-99140904D01* -X57062929Y-98972929D01* -X57105331Y-98909470D01* -X60174473Y-95840329D01* -X60237929Y-95797929D01* -X60405904Y-95546537D01* -X60450000Y-95324852D01* -X60450000Y-95324848D01* -X60464888Y-95250001D01* -X60450000Y-95175154D01* -X60450000Y-86308043D01* -X60724577Y-86124577D01* -X61041740Y-85649909D01* -X61153113Y-85090000D01* -X61041740Y-84530091D01* -X60724577Y-84055423D01* -X60249909Y-83738260D01* -X59831333Y-83655000D01* -X59548667Y-83655000D01* -X59130091Y-83738260D01* -X58655423Y-84055423D01* -X58338260Y-84530091D01* -X58226887Y-85090000D01* -X58338260Y-85649909D01* -X58655423Y-86124577D01* -X58930001Y-86308044D01* -X58930000Y-94935198D01* -X56200199Y-97665000D01* -X52164530Y-97665000D01* -X51957765Y-97526843D01* -X51710000Y-97477560D01* -X50210000Y-97477560D01* -X49962235Y-97526843D01* -X49752191Y-97667191D01* -X49611843Y-97877235D01* -X49562560Y-98125000D01* -X48070000Y-98125000D01* -X48070000Y-95622745D01* -X49891861Y-95622745D01* -X49965995Y-95868864D01* -X50503223Y-96061965D01* -X51073454Y-96034778D01* -X51474005Y-95868864D01* -X51548139Y-95622745D01* -X50720000Y-94794605D01* -X49891861Y-95622745D01* -X48070000Y-95622745D01* -X48070000Y-94398223D01* -X49273035Y-94398223D01* -X49300222Y-94968454D01* -X49466136Y-95369005D01* -X49712255Y-95443139D01* -X50540395Y-94615000D01* -X50899605Y-94615000D01* -X51727745Y-95443139D01* -X51973864Y-95369005D01* -X52166965Y-94831777D01* -X52139778Y-94261546D01* -X51974501Y-93862532D01* -X56257073Y-93862532D01* -X56355736Y-94129387D01* -X56965461Y-94355908D01* -X57615460Y-94331856D01* -X58104264Y-94129387D01* -X58202927Y-93862532D01* -X57230000Y-92889605D01* -X56257073Y-93862532D01* -X51974501Y-93862532D01* -X51973864Y-93860995D01* -X51727745Y-93786861D01* -X50899605Y-94615000D01* -X50540395Y-94615000D01* -X49712255Y-93786861D01* -X49466136Y-93860995D01* -X49273035Y-94398223D01* -X48070000Y-94398223D01* -X48070000Y-93607255D01* -X49891861Y-93607255D01* -X50720000Y-94435395D01* -X51548139Y-93607255D01* -X51474005Y-93361136D01* -X50936777Y-93168035D01* -X50366546Y-93195222D01* -X49965995Y-93361136D01* -X49891861Y-93607255D01* -X48070000Y-93607255D01* -X48070000Y-93008336D01* -X48074017Y-93010000D01* -X48445983Y-93010000D01* -X48789635Y-92867655D01* -X49052655Y-92604635D01* -X49118586Y-92445461D01* -X55584092Y-92445461D01* -X55608144Y-93095460D01* -X55810613Y-93584264D01* -X56077468Y-93682927D01* -X57050395Y-92710000D01* -X57409605Y-92710000D01* -X58382532Y-93682927D01* -X58649387Y-93584264D01* -X58875908Y-92974539D01* -X58851856Y-92324540D01* -X58649387Y-91835736D01* -X58382532Y-91737073D01* -X57409605Y-92710000D01* -X57050395Y-92710000D01* -X56077468Y-91737073D01* -X55810613Y-91835736D01* -X55584092Y-92445461D01* -X49118586Y-92445461D01* -X49195000Y-92260983D01* -X49195000Y-91889017D01* -X49057669Y-91557468D01* -X56257073Y-91557468D01* -X57230000Y-92530395D01* -X58202927Y-91557468D01* -X58104264Y-91290613D01* -X57494539Y-91064092D01* -X56844540Y-91088144D01* -X56355736Y-91290613D01* -X56257073Y-91557468D01* -X49057669Y-91557468D01* -X49052655Y-91545365D01* -X49020000Y-91512710D01* -X49020000Y-91508163D01* -X49117809Y-91442809D01* -X49258157Y-91232765D01* -X49307440Y-90985000D01* -X49307440Y-90085000D01* -X49258157Y-89837235D01* -X49117809Y-89627191D01* -X48997469Y-89546781D01* -X49083000Y-89461250D01* -X49083000Y-88662000D01* -X49337000Y-88662000D01* -X49337000Y-89461250D01* -X49495750Y-89620000D01* -X49736310Y-89620000D01* -X49969699Y-89523327D01* -X50148327Y-89344698D01* -X50245000Y-89111309D01* -X50245000Y-88820750D01* -X50086250Y-88662000D01* -X49337000Y-88662000D01* -X49083000Y-88662000D01* -X49063000Y-88662000D01* -X49063000Y-88408000D01* -X49083000Y-88408000D01* -X49083000Y-87608750D01* -X49337000Y-87608750D01* -X49337000Y-88408000D01* -X50086250Y-88408000D01* -X50245000Y-88249250D01* -X50245000Y-87958691D01* -X50148327Y-87725302D01* -X49969699Y-87546673D01* -X49736310Y-87450000D01* -X49495750Y-87450000D01* -X49337000Y-87608750D01* -X49083000Y-87608750D01* -X48924250Y-87450000D01* -X48683690Y-87450000D01* -X48450301Y-87546673D01* -X48271673Y-87725302D01* -X48257013Y-87760694D01* -X48167809Y-87627191D01* -X47957765Y-87486843D01* -X47710000Y-87437560D01* -X47447990Y-87437560D01* -X47309999Y-87410112D01* -X47172009Y-87437560D01* -X46910000Y-87437560D01* -X46662235Y-87486843D01* -X46452191Y-87627191D01* -X46311843Y-87837235D01* -X46262560Y-88085000D01* -X46262560Y-88985000D01* -X46311843Y-89232765D01* -X46452191Y-89442809D01* -X46550001Y-89508164D01* -X46550001Y-93415605D01* -X46532862Y-93398466D01* -X46005439Y-93180000D01* -X45434561Y-93180000D01* -X44907138Y-93398466D01* -X44503466Y-93802138D01* -X44285000Y-94329561D01* -X44285000Y-94900439D01* -X44503466Y-95427862D01* -X44907138Y-95831534D01* -X45434561Y-96050000D01* -X46005439Y-96050000D01* -X46532862Y-95831534D01* -X46550000Y-95814396D01* -X46550000Y-97525299D01* -X46310000Y-97477560D01* -X44810000Y-97477560D01* -X44562235Y-97526843D01* -X44355470Y-97665000D01* -X42224802Y-97665000D01* -X38895451Y-94335649D01* -X39005000Y-94357440D01* -X41005000Y-94357440D01* -X41252765Y-94308157D01* -X41462809Y-94167809D01* -X41603157Y-93957765D01* -X41652440Y-93710000D01* -X41652440Y-91710000D01* -X41603157Y-91462235D01* -X41462809Y-91252191D01* -X41252765Y-91111843D01* -X41005000Y-91062560D01* -X39005000Y-91062560D01* -X38860000Y-91091402D01* -X38860000Y-86328430D01* -X38912862Y-86306534D01* -X39316534Y-85902862D01* -X39535000Y-85375439D01* -X39535000Y-84814506D01* -X43065000Y-84814506D01* -X43065000Y-85365494D01* -X43275853Y-85874540D01* -X43665460Y-86264147D01* -X44174506Y-86475000D01* -X44725494Y-86475000D01* -X45234540Y-86264147D01* -X45624147Y-85874540D01* -X45720000Y-85643130D01* -X45815853Y-85874540D01* -X46205460Y-86264147D01* -X46714506Y-86475000D01* -X47265494Y-86475000D01* -X47774540Y-86264147D01* -X48164147Y-85874540D01* -X48260000Y-85643130D01* -X48355853Y-85874540D01* -X48745460Y-86264147D01* -X49254506Y-86475000D01* -X49805494Y-86475000D01* -X50314540Y-86264147D01* -X50704147Y-85874540D01* -X50800000Y-85643130D01* -X50895853Y-85874540D01* -X51285460Y-86264147D01* -X51794506Y-86475000D01* -X52345494Y-86475000D01* -X52854540Y-86264147D01* -X53244147Y-85874540D01* -X53455000Y-85365494D01* -X53455000Y-84814506D01* -X53244147Y-84305460D01* -X52886127Y-83947440D01* -X54090000Y-83947440D01* -X54337765Y-83898157D01* -X54547809Y-83757809D01* -X54688157Y-83547765D01* -X54737440Y-83300000D01* -X54737440Y-82227361D01* -X60174473Y-76790329D01* -X60237929Y-76747929D01* -X60405904Y-76496537D01* -X60450000Y-76274852D01* -X60450000Y-76274848D01* -X60464888Y-76200001D01* -X60457953Y-76165136D01* -X60502862Y-76146534D01* -X60906534Y-75742862D01* -X61125000Y-75215439D01* -X61125000Y-74644561D01* -X60906534Y-74117138D01* -X60502862Y-73713466D01* -X59975439Y-73495000D01* -X59404561Y-73495000D01* -X58877138Y-73713466D01* -X58473466Y-74117138D01* -X58255000Y-74644561D01* -X58255000Y-75215439D01* -X58473466Y-75742862D01* -X58772901Y-76042297D01* -X53662639Y-81152560D01* -X52590000Y-81152560D01* -X52342235Y-81201843D01* -X52132191Y-81342191D01* -X51991843Y-81552235D01* -X51953531Y-81744844D01* -X51584540Y-81375853D01* -X51075494Y-81165000D01* -X50524506Y-81165000D01* -X50015460Y-81375853D01* -X49625853Y-81765460D01* -X49530000Y-81996870D01* -X49434147Y-81765460D01* -X49044540Y-81375853D01* -X48535494Y-81165000D01* -X47984506Y-81165000D01* -X47475460Y-81375853D01* -X47085853Y-81765460D01* -X46990000Y-81996870D01* -X46894147Y-81765460D01* -X46504540Y-81375853D01* -X45995494Y-81165000D01* -X45444506Y-81165000D01* -X44935460Y-81375853D01* -X44545853Y-81765460D01* -X44335000Y-82274506D01* -X44335000Y-82825494D01* -X44545853Y-83334540D01* -X44935460Y-83724147D01* -X45444506Y-83935000D01* -X45995494Y-83935000D01* -X46504540Y-83724147D01* -X46894147Y-83334540D01* -X46990000Y-83103130D01* -X47085853Y-83334540D01* -X47475460Y-83724147D01* -X47984506Y-83935000D01* -X48535494Y-83935000D01* -X49044540Y-83724147D01* -X49434147Y-83334540D01* -X49530000Y-83103130D01* -X49625853Y-83334540D01* -X50015460Y-83724147D01* -X50524506Y-83935000D01* -X51075494Y-83935000D01* -X51584540Y-83724147D01* -X51953531Y-83355156D01* -X51991843Y-83547765D01* -X52096905Y-83705000D01* -X51794506Y-83705000D01* -X51285460Y-83915853D01* -X50895853Y-84305460D01* -X50800000Y-84536870D01* -X50704147Y-84305460D01* -X50314540Y-83915853D01* -X49805494Y-83705000D01* -X49254506Y-83705000D01* -X48745460Y-83915853D01* -X48355853Y-84305460D01* -X48260000Y-84536870D01* -X48164147Y-84305460D01* -X47774540Y-83915853D01* -X47265494Y-83705000D01* -X46714506Y-83705000D01* -X46205460Y-83915853D01* -X45815853Y-84305460D01* -X45720000Y-84536870D01* -X45624147Y-84305460D01* -X45234540Y-83915853D01* -X44725494Y-83705000D01* -X44174506Y-83705000D01* -X43665460Y-83915853D01* -X43275853Y-84305460D01* -X43065000Y-84814506D01* -X39535000Y-84814506D01* -X39535000Y-84804561D01* -X39316534Y-84277138D01* -X38912862Y-83873466D01* -X38385439Y-83655000D01* -X37814561Y-83655000D01* -X37287138Y-83873466D01* -X36883466Y-84277138D01* -X36665000Y-84804561D01* -X32460000Y-84804561D01* -X32460000Y-74930000D01* -X36636887Y-74930000D01* -X36748260Y-75489909D01* -X37065423Y-75964577D01* -X37540091Y-76281740D01* -X37958667Y-76365000D01* -X38241333Y-76365000D01* -X38659909Y-76281740D01* -X39134577Y-75964577D01* -X39304228Y-75710676D01* -X40500000Y-75710676D01* -X40500000Y-76689324D01* -X40874513Y-77593478D01* -X41566522Y-78285487D01* -X42470676Y-78660000D01* -X43449324Y-78660000D01* -X44353478Y-78285487D01* -X45045487Y-77593478D01* -X45420000Y-76689324D01* -X45420000Y-75710676D01* -X52370000Y-75710676D01* -X52370000Y-76689324D01* -X52744513Y-77593478D01* -X53436522Y-78285487D01* -X54340676Y-78660000D01* -X55319324Y-78660000D01* -X56223478Y-78285487D01* -X56915487Y-77593478D01* -X57290000Y-76689324D01* -X57290000Y-75710676D01* -X56915487Y-74806522D01* -X56223478Y-74114513D01* -X55319324Y-73740000D01* -X54340676Y-73740000D01* -X53436522Y-74114513D01* -X52744513Y-74806522D01* -X52370000Y-75710676D01* -X45420000Y-75710676D01* -X45045487Y-74806522D01* -X44353478Y-74114513D01* -X43449324Y-73740000D01* -X42470676Y-73740000D01* -X41566522Y-74114513D01* -X40874513Y-74806522D01* -X40500000Y-75710676D01* -X39304228Y-75710676D01* -X39451740Y-75489909D01* -X39563113Y-74930000D01* -X39451740Y-74370091D01* -X39134577Y-73895423D01* -X38659909Y-73578260D01* -X38241333Y-73495000D01* -X37958667Y-73495000D01* -X37540091Y-73578260D01* -X37065423Y-73895423D01* -X36748260Y-74370091D01* -X36636887Y-74930000D01* -X32460000Y-74930000D01* -X32460000Y-68655000D01* -X64695000Y-68655000D01* -X64695000Y-101457792D01* -X64695000Y-101457792D01* -G37* -X64695000Y-101457792D02* -X64355134Y-101082611D01* -X63849041Y-100843086D01* -X63627000Y-100964371D01* -X63627000Y-102108000D01* -X63647000Y-102108000D01* -X63647000Y-102362000D01* -X63627000Y-102362000D01* -X63627000Y-103505629D01* -X63849041Y-103626914D01* -X64355134Y-103387389D01* -X64695000Y-103012208D01* -X64695000Y-105908265D01* -X64507745Y-105851861D01* -X63679605Y-106680000D01* -X64507745Y-107508139D01* -X64695000Y-107451735D01* -X64695000Y-110330514D01* -X64534577Y-110090423D01* -X64059909Y-109773260D01* -X63641333Y-109690000D01* -X63358667Y-109690000D01* -X62940091Y-109773260D01* -X62615717Y-109990000D01* -X62065132Y-109990000D01* -X60571613Y-108496482D01* -X60508289Y-108401711D01* -X60132855Y-108150854D01* -X59801783Y-108085000D01* -X59690000Y-108062765D01* -X59578217Y-108085000D01* -X55133217Y-108085000D01* -X54802145Y-108150854D01* -X54426711Y-108401711D01* -X54175854Y-108777145D01* -X54087765Y-109220000D01* -X54175854Y-109662855D01* -X54426711Y-110038289D01* -X54802145Y-110289146D01* -X55133217Y-110355000D01* -X59219869Y-110355000D01* -X60460001Y-111595133D01* -X60460000Y-115458216D01* -X60437765Y-115570000D01* -X60460001Y-115681788D01* -X60460000Y-119903216D01* -X60437765Y-120015000D01* -X60460001Y-120126788D01* -X60460000Y-124348216D01* -X60437765Y-124460000D01* -X60460001Y-124571788D01* -X60460000Y-134360604D01* -X60378466Y-134442138D01* -X60160000Y-134969561D01* -X60160000Y-135540439D01* -X60378466Y-136067862D01* -X60460001Y-136149397D01* -X60460000Y-136660000D01* -X56984131Y-136660000D01* -X57349005Y-136508864D01* -X57423139Y-136262745D01* -X56595000Y-135434605D01* -X55766861Y-136262745D01* -X55840995Y-136508864D01* -X56261472Y-136660000D01* -X45831782Y-136660000D01* -X45719999Y-136637765D01* -X45277145Y-136725854D01* -X44901711Y-136976711D01* -X44838389Y-137071479D01* -X42074869Y-139835000D01* -X37205132Y-139835000D01* -X36770667Y-139400536D01* -X36807765Y-139393157D01* -X37017809Y-139252809D01* -X37158157Y-139042765D01* -X37177099Y-138947532D01* -X39587073Y-138947532D01* -X39685736Y-139214387D01* -X40295461Y-139440908D01* -X40945460Y-139416856D01* -X41434264Y-139214387D01* -X41532927Y-138947532D01* -X40560000Y-137974605D01* -X39587073Y-138947532D01* -X37177099Y-138947532D01* -X37207440Y-138795000D01* -X37207440Y-137530461D01* -X38914092Y-137530461D01* -X38938144Y-138180460D01* -X39140613Y-138669264D01* -X39407468Y-138767927D01* -X40380395Y-137795000D01* -X40739605Y-137795000D01* -X41712532Y-138767927D01* -X41979387Y-138669264D01* -X42205908Y-138059539D01* -X42181856Y-137409540D01* -X41979387Y-136920736D01* -X41712532Y-136822073D01* -X40739605Y-137795000D01* -X40380395Y-137795000D01* -X39407468Y-136822073D01* -X39140613Y-136920736D01* -X38914092Y-137530461D01* -X37207440Y-137530461D01* -X37207440Y-136795000D01* -X37177100Y-136642468D01* -X39587073Y-136642468D01* -X40560000Y-137615395D01* -X41532927Y-136642468D01* -X41434264Y-136375613D01* -X40824539Y-136149092D01* -X40174540Y-136173144D01* -X39685736Y-136375613D01* -X39587073Y-136642468D01* -X37177100Y-136642468D01* -X37158157Y-136547235D01* -X37017809Y-136337191D01* -X36807765Y-136196843D01* -X36560000Y-136147560D01* -X34560000Y-136147560D01* -X34312235Y-136196843D01* -X34102191Y-136337191D01* -X33961843Y-136547235D01* -X33912560Y-136795000D01* -X33912560Y-138795000D01* -X33961843Y-139042765D01* -X34102191Y-139252809D01* -X34312235Y-139393157D01* -X34425000Y-139415587D01* -X34425000Y-139683216D01* -X34402765Y-139795000D01* -X34432922Y-139946608D01* -X34490854Y-140237854D01* -X34741711Y-140613289D01* -X34836482Y-140676613D01* -X35695000Y-141535132D01* -X35695001Y-144568541D01* -X35680000Y-144578564D01* -X35527765Y-144476843D01* -X35280000Y-144427560D01* -X33780000Y-144427560D01* -X33532235Y-144476843D01* -X33322191Y-144617191D01* -X33181843Y-144827235D01* -X33132560Y-145075000D01* -X33132560Y-147075000D01* -X33181843Y-147322765D01* -X33322191Y-147532809D01* -X33395001Y-147581459D01* -X33395001Y-147604868D01* -X32766482Y-148233386D01* -X32671712Y-148296710D01* -X32460000Y-148613560D01* -X32460000Y-134976890D01* -X45548524Y-134976890D01* -X45718355Y-135386924D01* -X46108642Y-135815183D01* -X46633108Y-136061486D01* -X46863000Y-135940819D01* -X46863000Y-134747000D01* -X47117000Y-134747000D01* -X47117000Y-135940819D01* -X47346892Y-136061486D01* -X47871358Y-135815183D01* -X48261645Y-135386924D01* -X48406072Y-135038223D01* -X55148035Y-135038223D01* -X55175222Y-135608454D01* -X55341136Y-136009005D01* -X55587255Y-136083139D01* -X56415395Y-135255000D01* -X56774605Y-135255000D01* -X57602745Y-136083139D01* -X57848864Y-136009005D01* -X58041965Y-135471777D01* -X58014778Y-134901546D01* -X57848864Y-134500995D01* -X57602745Y-134426861D01* -X56774605Y-135255000D01* -X56415395Y-135255000D01* -X55587255Y-134426861D01* -X55341136Y-134500995D01* -X55148035Y-135038223D01* -X48406072Y-135038223D01* -X48431476Y-134976890D01* -X48310155Y-134747000D01* -X47117000Y-134747000D01* -X46863000Y-134747000D01* -X45669845Y-134747000D01* -X45548524Y-134976890D01* -X32460000Y-134976890D01* -X32460000Y-132112532D01* -X34587073Y-132112532D01* -X34685736Y-132379387D01* -X35295461Y-132605908D01* -X35945460Y-132581856D01* -X36434264Y-132379387D01* -X36532927Y-132112532D01* -X35560000Y-131139605D01* -X34587073Y-132112532D01* -X32460000Y-132112532D01* -X32460000Y-130695461D01* -X33914092Y-130695461D01* -X33938144Y-131345460D01* -X34140613Y-131834264D01* -X34407468Y-131932927D01* -X35380395Y-130960000D01* -X35739605Y-130960000D01* -X36712532Y-131932927D01* -X36979387Y-131834264D01* -X37205908Y-131224539D01* -X37184085Y-130634778D01* -X38425000Y-130634778D01* -X38425000Y-131285222D01* -X38673914Y-131886153D01* -X39133847Y-132346086D01* -X39734778Y-132595000D01* -X40385222Y-132595000D01* -X40986153Y-132346086D01* -X41446086Y-131886153D01* -X41695000Y-131285222D01* -X41695000Y-130634778D01* -X41446086Y-130033847D01* -X40986153Y-129573914D01* -X40385222Y-129325000D01* -X39734778Y-129325000D01* -X39133847Y-129573914D01* -X38673914Y-130033847D01* -X38425000Y-130634778D01* -X37184085Y-130634778D01* -X37181856Y-130574540D01* -X36979387Y-130085736D01* -X36712532Y-129987073D01* -X35739605Y-130960000D01* -X35380395Y-130960000D01* -X34407468Y-129987073D01* -X34140613Y-130085736D01* -X33914092Y-130695461D01* -X32460000Y-130695461D01* -X32460000Y-129807468D01* -X34587073Y-129807468D01* -X35560000Y-130780395D01* -X36532927Y-129807468D01* -X36434264Y-129540613D01* -X35824539Y-129314092D01* -X35174540Y-129338144D01* -X34685736Y-129540613D01* -X34587073Y-129807468D01* -X32460000Y-129807468D01* -X32460000Y-125612532D01* -X34587073Y-125612532D01* -X34685736Y-125879387D01* -X35295461Y-126105908D01* -X35945460Y-126081856D01* -X36434264Y-125879387D01* -X36532927Y-125612532D01* -X35560000Y-124639605D01* -X34587073Y-125612532D01* -X32460000Y-125612532D01* -X32460000Y-124195461D01* -X33914092Y-124195461D01* -X33938144Y-124845460D01* -X34140613Y-125334264D01* -X34407468Y-125432927D01* -X35380395Y-124460000D01* -X35739605Y-124460000D01* -X36712532Y-125432927D01* -X36979387Y-125334264D01* -X37205908Y-124724539D01* -X37181856Y-124074540D01* -X36979387Y-123585736D01* -X36712532Y-123487073D01* -X35739605Y-124460000D01* -X35380395Y-124460000D01* -X34407468Y-123487073D01* -X34140613Y-123585736D01* -X33914092Y-124195461D01* -X32460000Y-124195461D01* -X32460000Y-122437532D01* -X34587073Y-122437532D01* -X34685736Y-122704387D01* -X35113653Y-122863364D01* -X34685736Y-123040613D01* -X34587073Y-123307468D01* -X35560000Y-124280395D01* -X36532927Y-123307468D01* -X36434264Y-123040613D01* -X36006347Y-122881636D01* -X36434264Y-122704387D01* -X36532927Y-122437532D01* -X35560000Y-121464605D01* -X34587073Y-122437532D01* -X32460000Y-122437532D01* -X32460000Y-121020461D01* -X33914092Y-121020461D01* -X33938144Y-121670460D01* -X34140613Y-122159264D01* -X34407468Y-122257927D01* -X35380395Y-121285000D01* -X35739605Y-121285000D01* -X36712532Y-122257927D01* -X36979387Y-122159264D01* -X37205908Y-121549539D01* -X37181856Y-120899540D01* -X36979387Y-120410736D01* -X36712532Y-120312073D01* -X35739605Y-121285000D01* -X35380395Y-121285000D01* -X34407468Y-120312073D01* -X34140613Y-120410736D01* -X33914092Y-121020461D01* -X32460000Y-121020461D01* -X32460000Y-120132468D01* -X34587073Y-120132468D01* -X35560000Y-121105395D01* -X36532927Y-120132468D01* -X36434264Y-119865613D01* -X35824539Y-119639092D01* -X35174540Y-119663144D01* -X34685736Y-119865613D01* -X34587073Y-120132468D01* -X32460000Y-120132468D01* -X32460000Y-115937532D01* -X34587073Y-115937532D01* -X34685736Y-116204387D01* -X35295461Y-116430908D01* -X35945460Y-116406856D01* -X36434264Y-116204387D01* -X36532927Y-115937532D01* -X35560000Y-114964605D01* -X34587073Y-115937532D01* -X32460000Y-115937532D01* -X32460000Y-114520461D01* -X33914092Y-114520461D01* -X33938144Y-115170460D01* -X34140613Y-115659264D01* -X34407468Y-115757927D01* -X35380395Y-114785000D01* -X35739605Y-114785000D01* -X36712532Y-115757927D01* -X36979387Y-115659264D01* -X37205908Y-115049539D01* -X37184085Y-114459778D01* -X38425000Y-114459778D01* -X38425000Y-115110222D01* -X38673914Y-115711153D01* -X39133847Y-116171086D01* -X39300001Y-116239909D01* -X39300000Y-118035148D01* -X39285111Y-118110000D01* -X39300001Y-118184857D01* -X39300000Y-119830091D01* -X39133847Y-119898914D01* -X38673914Y-120358847D01* -X38425000Y-120959778D01* -X38425000Y-121610222D01* -X38673914Y-122211153D01* -X39133847Y-122671086D01* -X39620103Y-122872500D01* -X39133847Y-123073914D01* -X38673914Y-123533847D01* -X38425000Y-124134778D01* -X38425000Y-124785222D01* -X38673914Y-125386153D01* -X39133847Y-125846086D01* -X39734778Y-126095000D01* -X40385222Y-126095000D01* -X40986153Y-125846086D01* -X41446086Y-125386153D01* -X41695000Y-124785222D01* -X41695000Y-124460000D01* -X45475908Y-124460000D01* -X45591161Y-125039418D01* -X45919375Y-125530625D01* -X46217761Y-125730000D01* -X45919375Y-125929375D01* -X45591161Y-126420582D01* -X45475908Y-127000000D01* -X45591161Y-127579418D01* -X45919375Y-128070625D01* -X46217761Y-128270000D01* -X45919375Y-128469375D01* -X45591161Y-128960582D01* -X45475908Y-129540000D01* -X45591161Y-130119418D01* -X45919375Y-130610625D01* -X46217761Y-130810000D01* -X45919375Y-131009375D01* -X45591161Y-131500582D01* -X45475908Y-132080000D01* -X45591161Y-132659418D01* -X45919375Y-133150625D01* -X46238478Y-133363843D01* -X46108642Y-133424817D01* -X45718355Y-133853076D01* -X45548524Y-134263110D01* -X45669845Y-134493000D01* -X46863000Y-134493000D01* -X46863000Y-134473000D01* -X47117000Y-134473000D01* -X47117000Y-134493000D01* -X48310155Y-134493000D01* -X48431476Y-134263110D01* -X48424910Y-134247255D01* -X55766861Y-134247255D01* -X56595000Y-135075395D01* -X57423139Y-134247255D01* -X57349005Y-134001136D01* -X56811777Y-133808035D01* -X56241546Y-133835222D01* -X55840995Y-134001136D01* -X55766861Y-134247255D01* -X48424910Y-134247255D01* -X48261645Y-133853076D01* -X47871358Y-133424817D01* -X47741522Y-133363843D01* -X48060625Y-133150625D01* -X48388839Y-132659418D01* -X48504092Y-132080000D01* -X48388839Y-131500582D01* -X48060625Y-131009375D01* -X47762239Y-130810000D01* -X48060625Y-130610625D01* -X48388839Y-130119418D01* -X48504092Y-129540000D01* -X48388839Y-128960582D01* -X48060625Y-128469375D01* -X47762239Y-128270000D01* -X48060625Y-128070625D01* -X48388839Y-127579418D01* -X48504092Y-127000000D01* -X48388839Y-126420582D01* -X48060625Y-125929375D01* -X47762239Y-125730000D01* -X48060625Y-125530625D01* -X48388839Y-125039418D01* -X48504092Y-124460000D01* -X48388839Y-123880582D01* -X48060625Y-123389375D01* -X48042381Y-123377184D01* -X48087765Y-123368157D01* -X48297809Y-123227809D01* -X48438157Y-123017765D01* -X48487440Y-122770000D01* -X48487440Y-121070000D01* -X48438157Y-120822235D01* -X48297809Y-120612191D01* -X48087765Y-120471843D01* -X47840000Y-120422560D01* -X46140000Y-120422560D01* -X45892235Y-120471843D01* -X45682191Y-120612191D01* -X45541843Y-120822235D01* -X45492560Y-121070000D01* -X45492560Y-122770000D01* -X45541843Y-123017765D01* -X45682191Y-123227809D01* -X45892235Y-123368157D01* -X45937619Y-123377184D01* -X45919375Y-123389375D01* -X45591161Y-123880582D01* -X45475908Y-124460000D01* -X41695000Y-124460000D01* -X41695000Y-124134778D01* -X41626177Y-123968624D01* -X45619801Y-119975001D01* -X51884843Y-119975001D01* -X51876887Y-120015000D01* -X51988260Y-120574909D01* -X52305423Y-121049577D01* -X52780091Y-121366740D01* -X53198667Y-121450000D01* -X53481333Y-121450000D01* -X53899909Y-121366740D01* -X54374577Y-121049577D01* -X54485001Y-120884316D01* -X54485001Y-123590684D01* -X54374577Y-123425423D01* -X53899909Y-123108260D01* -X53481333Y-123025000D01* -X53198667Y-123025000D01* -X52780091Y-123108260D01* -X52305423Y-123425423D01* -X51988260Y-123900091D01* -X51876887Y-124460000D01* -X51988260Y-125019909D01* -X52305423Y-125494577D01* -X52780091Y-125811740D01* -X53198667Y-125895000D01* -X53481333Y-125895000D01* -X53899909Y-125811740D01* -X54374577Y-125494577D01* -X54485001Y-125329317D01* -X54485000Y-128035683D01* -X54374577Y-127870423D01* -X53899909Y-127553260D01* -X53481333Y-127470000D01* -X53198667Y-127470000D01* -X52780091Y-127553260D01* -X52305423Y-127870423D01* -X51988260Y-128345091D01* -X51876887Y-128905000D01* -X51988260Y-129464909D01* -X52305423Y-129939577D01* -X52780091Y-130256740D01* -X53198667Y-130340000D01* -X53481333Y-130340000D01* -X53899909Y-130256740D01* -X54374577Y-129939577D01* -X54485000Y-129774317D01* -X54485000Y-131517710D01* -X54452345Y-131550365D01* -X54310000Y-131894017D01* -X54310000Y-132265983D01* -X54452345Y-132609635D01* -X54715365Y-132872655D01* -X55059017Y-133015000D01* -X55430983Y-133015000D01* -X55774635Y-132872655D01* -X56037655Y-132609635D01* -X56180000Y-132265983D01* -X56180000Y-131894017D01* -X56037655Y-131550365D01* -X56005000Y-131517710D01* -X56005000Y-118819848D01* -X56019888Y-118745000D01* -X56005000Y-118670152D01* -X56005000Y-118670148D01* -X55960904Y-118448463D01* -X55792929Y-118197071D01* -X55729473Y-118154671D01* -X55200331Y-117625530D01* -X55157929Y-117562071D01* -X54906537Y-117394096D01* -X54684852Y-117350000D01* -X54684847Y-117350000D01* -X54610000Y-117335112D01* -X54535153Y-117350000D01* -X54100000Y-117350000D01* -X54100000Y-116808430D01* -X54152862Y-116786534D01* -X54556534Y-116382862D01* -X54775000Y-115855439D01* -X54775000Y-115284561D01* -X54556534Y-114757138D01* -X54152862Y-114353466D01* -X53625439Y-114135000D01* -X53054561Y-114135000D01* -X52527138Y-114353466D01* -X52123466Y-114757138D01* -X51905000Y-115284561D01* -X51905000Y-115855439D01* -X52123466Y-116382862D01* -X52527138Y-116786534D01* -X52580000Y-116808430D01* -X52580001Y-117350000D01* -X40820000Y-117350000D01* -X40820000Y-116239909D01* -X40986153Y-116171086D01* -X41446086Y-115711153D01* -X41695000Y-115110222D01* -X41695000Y-114459778D01* -X41446086Y-113858847D01* -X40986153Y-113398914D01* -X40385222Y-113150000D01* -X39734778Y-113150000D01* -X39133847Y-113398914D01* -X38673914Y-113858847D01* -X38425000Y-114459778D01* -X37184085Y-114459778D01* -X37181856Y-114399540D01* -X36979387Y-113910736D01* -X36712532Y-113812073D01* -X35739605Y-114785000D01* -X35380395Y-114785000D01* -X34407468Y-113812073D01* -X34140613Y-113910736D01* -X33914092Y-114520461D01* -X32460000Y-114520461D01* -X32460000Y-113632468D01* -X34587073Y-113632468D01* -X35560000Y-114605395D01* -X36532927Y-113632468D01* -X36434264Y-113365613D01* -X35824539Y-113139092D01* -X35174540Y-113163144D01* -X34685736Y-113365613D01* -X34587073Y-113632468D01* -X32460000Y-113632468D01* -X32460000Y-110140750D01* -X34165000Y-110140750D01* -X34165000Y-110741309D01* -X34261673Y-110974698D01* -X34440301Y-111153327D01* -X34673690Y-111250000D01* -X35274250Y-111250000D01* -X35433000Y-111091250D01* -X35433000Y-109982000D01* -X34323750Y-109982000D01* -X34165000Y-110140750D01* -X32460000Y-110140750D01* -X32460000Y-108968691D01* -X34165000Y-108968691D01* -X34165000Y-109569250D01* -X34323750Y-109728000D01* -X35433000Y-109728000D01* -X35433000Y-108618750D01* -X35274250Y-108460000D01* -X34673690Y-108460000D01* -X34440301Y-108556673D01* -X34261673Y-108735302D01* -X34165000Y-108968691D01* -X32460000Y-108968691D01* -X32460000Y-105491679D01* -X32460091Y-105491740D01* -X32878667Y-105575000D01* -X33161333Y-105575000D01* -X33579909Y-105491740D01* -X34054577Y-105174577D01* -X34132763Y-105057564D01* -X37340000Y-108264802D01* -X37340000Y-108659865D01* -X37309796Y-108672376D01* -X36955000Y-109027172D01* -X36955000Y-108968691D01* -X36858327Y-108735302D01* -X36679699Y-108556673D01* -X36446310Y-108460000D01* -X35845750Y-108460000D01* -X35687000Y-108618750D01* -X35687000Y-109728000D01* -X35707000Y-109728000D01* -X35707000Y-109982000D01* -X35687000Y-109982000D01* -X35687000Y-111091250D01* -X35845750Y-111250000D01* -X36446310Y-111250000D01* -X36679699Y-111153327D01* -X36858327Y-110974698D01* -X36955000Y-110741309D01* -X36955000Y-110682828D01* -X37309796Y-111037624D01* -X37822517Y-111250000D01* -X38377483Y-111250000D01* -X38890204Y-111037624D01* -X39282624Y-110645204D01* -X39370000Y-110434260D01* -X39457376Y-110645204D01* -X39849796Y-111037624D01* -X40362517Y-111250000D01* -X40917483Y-111250000D01* -X41430204Y-111037624D01* -X41822624Y-110645204D01* -X42035000Y-110132483D01* -X42035000Y-109577517D01* -X41822624Y-109064796D01* -X41430204Y-108672376D01* -X40917483Y-108460000D01* -X40362517Y-108460000D01* -X39849796Y-108672376D01* -X39457376Y-109064796D01* -X39370000Y-109275740D01* -X39282624Y-109064796D01* -X38890204Y-108672376D01* -X38860000Y-108659865D01* -X38860000Y-108024848D01* -X38874888Y-107950000D01* -X38860000Y-107875152D01* -X38860000Y-107875148D01* -X38815904Y-107653463D01* -X38815904Y-107653462D01* -X38690329Y-107465527D01* -X38647929Y-107402071D01* -X38584473Y-107359671D01* -X34880331Y-103655530D01* -X34837929Y-103592071D01* -X34586537Y-103424096D01* -X34364852Y-103380000D01* -X34364847Y-103380000D01* -X34290000Y-103365112D01* -X34235358Y-103375981D01* -X34054577Y-103105423D01* -X33579909Y-102788260D01* -X33161333Y-102705000D01* -X32878667Y-102705000D01* -X32460091Y-102788260D01* -X32460000Y-102788321D01* -X32460000Y-102257071D01* -X32670959Y-102356914D01* -X32893000Y-102235629D01* -X32893000Y-101092000D01* -X33147000Y-101092000D01* -X33147000Y-102235629D01* -X33369041Y-102356914D01* -X33875134Y-102117389D01* -X34251041Y-101702423D01* -X34411904Y-101314039D01* -X34289915Y-101092000D01* -X33147000Y-101092000D01* -X32893000Y-101092000D01* -X32873000Y-101092000D01* -X32873000Y-100838000D01* -X32893000Y-100838000D01* -X32893000Y-99694371D01* -X33147000Y-99694371D01* -X33147000Y-100838000D01* -X34289915Y-100838000D01* -X34411904Y-100615961D01* -X34251041Y-100227577D01* -X33875134Y-99812611D01* -X33369041Y-99573086D01* -X33147000Y-99694371D01* -X32893000Y-99694371D01* -X32670959Y-99573086D01* -X32460000Y-99672929D01* -X32460000Y-93862532D01* -X34032073Y-93862532D01* -X34130736Y-94129387D01* -X34740461Y-94355908D01* -X35390460Y-94331856D01* -X35879264Y-94129387D01* -X35977927Y-93862532D01* -X35005000Y-92889605D01* -X34032073Y-93862532D01* -X32460000Y-93862532D01* -X32460000Y-92445461D01* -X33359092Y-92445461D01* -X33383144Y-93095460D01* -X33585613Y-93584264D01* -X33852468Y-93682927D01* -X34825395Y-92710000D01* -X35184605Y-92710000D01* -X36157532Y-93682927D01* -X36424387Y-93584264D01* -X36650908Y-92974539D01* -X36626856Y-92324540D01* -X36424387Y-91835736D01* -X36157532Y-91737073D01* -X35184605Y-92710000D01* -X34825395Y-92710000D01* -X33852468Y-91737073D01* -X33585613Y-91835736D01* -X33359092Y-92445461D01* -X32460000Y-92445461D01* -X32460000Y-91557468D01* -X34032073Y-91557468D01* -X35005000Y-92530395D01* -X35977927Y-91557468D01* -X35879264Y-91290613D01* -X35269539Y-91064092D01* -X34619540Y-91088144D01* -X34130736Y-91290613D01* -X34032073Y-91557468D01* -X32460000Y-91557468D01* -X32460000Y-84804561D01* -X36665000Y-84804561D01* -X36665000Y-85375439D01* -X36883466Y-85902862D01* -X37287138Y-86306534D01* -X37340001Y-86328431D01* -X37340000Y-94540153D01* -X37325112Y-94615000D01* -X37340000Y-94689847D01* -X37340000Y-94689851D01* -X37384096Y-94911536D01* -X37552071Y-95162929D01* -X37615530Y-95205331D01* -X41319671Y-98909473D01* -X41362071Y-98972929D01* -X41425527Y-99015329D01* -X41613462Y-99140904D01* -X41645291Y-99147235D01* -X41835148Y-99185000D01* -X41835152Y-99185000D01* -X41910000Y-99199888D01* -X41984848Y-99185000D01* -X44204331Y-99185000D01* -X44162560Y-99395000D01* -X44162560Y-99918164D01* -X43992862Y-99748466D01* -X43465439Y-99530000D01* -X42894561Y-99530000D01* -X42367138Y-99748466D01* -X41963466Y-100152138D01* -X41745000Y-100679561D01* -X41745000Y-101250439D01* -X41963466Y-101777862D01* -X42367138Y-102181534D01* -X42894561Y-102400000D01* -X43465439Y-102400000D01* -X43518302Y-102378103D01* -X43859671Y-102719473D01* -X43902071Y-102782929D01* -X44153463Y-102950904D01* -X44210832Y-102962316D01* -X44181115Y-103111719D01* -X43992862Y-102923466D01* -X43465439Y-102705000D01* -X42894561Y-102705000D01* -X42367138Y-102923466D01* -X41963466Y-103327138D01* -X41745000Y-103854561D01* -X41745000Y-104425439D01* -X41963466Y-104952862D01* -X42367138Y-105356534D01* -X42894561Y-105575000D01* -X43465439Y-105575000D01* -X43992862Y-105356534D01* -X44181115Y-105168281D01* -X44211843Y-105322765D01* -X44270132Y-105410000D01* -X44211843Y-105497235D01* -X44162560Y-105745000D01* -X44162560Y-106345000D01* -X44211843Y-106592765D01* -X44270132Y-106680000D01* -X44211843Y-106767235D01* -X44162560Y-107015000D01* -X44162560Y-107615000D01* -X44211843Y-107862765D01* -X44352191Y-108072809D01* -X44562235Y-108213157D01* -X44810000Y-108262440D01* -X44960001Y-108262440D01* -X44960000Y-111532560D01* -X44870000Y-111532560D01* -X44622235Y-111581843D01* -X44412191Y-111722191D01* -X44271843Y-111932235D01* -X44222560Y-112180000D01* -X44222560Y-113880000D01* -X44271843Y-114127765D01* -X44412191Y-114337809D01* -X44622235Y-114478157D01* -X44667619Y-114487184D01* -X44649375Y-114499375D01* -X44321161Y-114990582D01* -X44205908Y-115570000D01* -X44321161Y-116149418D01* -X44649375Y-116640625D01* -X45140582Y-116968839D01* -X45573744Y-117055000D01* -X45866256Y-117055000D01* -X46299418Y-116968839D01* -X46790625Y-116640625D01* -X47118839Y-116149418D01* -X47234092Y-115570000D01* -X47118839Y-114990582D01* -X46790625Y-114499375D01* -X46772381Y-114487184D01* -X46817765Y-114478157D01* -X47027809Y-114337809D01* -X47168157Y-114127765D01* -X47217440Y-113880000D01* -X47217440Y-112180000D01* -X47168157Y-111932235D01* -X47027809Y-111722191D01* -X46817765Y-111581843D01* -X46570000Y-111532560D01* -X46480000Y-111532560D01* -X46480000Y-108228625D01* -X46557765Y-108213157D01* -X46767809Y-108072809D01* -X46908157Y-107862765D01* -X46946881Y-107668085D01* -X46960018Y-107687745D01* -X47077072Y-107862929D01* -X47140528Y-107905329D01* -X48770000Y-109534802D01* -X48770001Y-110415145D01* -X48770000Y-110415149D01* -X48770000Y-111532560D01* -X48680000Y-111532560D01* -X48432235Y-111581843D01* -X48222191Y-111722191D01* -X48081843Y-111932235D01* -X48032560Y-112180000D01* -X48032560Y-113880000D01* -X48081843Y-114127765D01* -X48222191Y-114337809D01* -X48432235Y-114478157D01* -X48477619Y-114487184D01* -X48459375Y-114499375D01* -X48131161Y-114990582D01* -X48015908Y-115570000D01* -X48131161Y-116149418D01* -X48459375Y-116640625D01* -X48950582Y-116968839D01* -X49383744Y-117055000D01* -X49676256Y-117055000D01* -X50109418Y-116968839D01* -X50600625Y-116640625D01* -X50928839Y-116149418D01* -X51044092Y-115570000D01* -X50928839Y-114990582D01* -X50600625Y-114499375D01* -X50582381Y-114487184D01* -X50627765Y-114478157D01* -X50837809Y-114337809D01* -X50978157Y-114127765D01* -X51027440Y-113880000D01* -X51027440Y-112180000D01* -X50978157Y-111932235D01* -X50837809Y-111722191D01* -X50627765Y-111581843D01* -X50380000Y-111532560D01* -X50290000Y-111532560D01* -X50290000Y-110839561D01* -X51905000Y-110839561D01* -X51905000Y-111410439D01* -X52123466Y-111937862D01* -X52527138Y-112341534D01* -X53054561Y-112560000D01* -X53625439Y-112560000D01* -X54152862Y-112341534D01* -X54556534Y-111937862D01* -X54775000Y-111410439D01* -X54775000Y-110839561D01* -X54556534Y-110312138D01* -X54152862Y-109908466D01* -X53625439Y-109690000D01* -X53054561Y-109690000D01* -X52527138Y-109908466D01* -X52123466Y-110312138D01* -X51905000Y-110839561D01* -X50290000Y-110839561D01* -X50290000Y-109294848D01* -X50304888Y-109220000D01* -X50290000Y-109145152D01* -X50290000Y-109145148D01* -X50245904Y-108923463D01* -X50245904Y-108923462D01* -X50120329Y-108735527D01* -X50077929Y-108672071D01* -X50014473Y-108629671D01* -X49634802Y-108250000D01* -X50147459Y-108250000D01* -X50210000Y-108262440D01* -X51710000Y-108262440D01* -X51772541Y-108250000D01* -X52612914Y-108250000D01* -X52705000Y-108268317D01* -X52797086Y-108250000D01* -X53069819Y-108195750D01* -X53192504Y-108113774D01* -X53198667Y-108115000D01* -X53481333Y-108115000D01* -X53899909Y-108031740D01* -X54374577Y-107714577D01* -X54392505Y-107687745D01* -X62671861Y-107687745D01* -X62745995Y-107933864D01* -X63283223Y-108126965D01* -X63853454Y-108099778D01* -X64254005Y-107933864D01* -X64328139Y-107687745D01* -X63500000Y-106859605D01* -X62671861Y-107687745D01* -X54392505Y-107687745D01* -X54441112Y-107615000D01* -X55152914Y-107615000D01* -X55245000Y-107633317D01* -X55337086Y-107615000D01* -X55609819Y-107560750D01* -X55919097Y-107354097D01* -X55971261Y-107276028D01* -X56784066Y-106463223D01* -X62053035Y-106463223D01* -X62080222Y-107033454D01* -X62246136Y-107434005D01* -X62492255Y-107508139D01* -X63320395Y-106680000D01* -X62492255Y-105851861D01* -X62246136Y-105925995D01* -X62053035Y-106463223D01* -X56784066Y-106463223D01* -X57575034Y-105672255D01* -X62671861Y-105672255D01* -X63500000Y-106500395D01* -X64328139Y-105672255D01* -X64254005Y-105426136D01* -X63716777Y-105233035D01* -X63146546Y-105260222D01* -X62745995Y-105426136D01* -X62671861Y-105672255D01* -X57575034Y-105672255D01* -X60663250Y-102584039D01* -X62108096Y-102584039D01* -X62268959Y-102972423D01* -X62644866Y-103387389D01* -X63150959Y-103626914D01* -X63373000Y-103505629D01* -X63373000Y-102362000D01* -X62230085Y-102362000D01* -X62108096Y-102584039D01* -X60663250Y-102584039D01* -X61361328Y-101885961D01* -X62108096Y-101885961D01* -X62230085Y-102108000D01* -X63373000Y-102108000D01* -X63373000Y-100964371D01* -X63150959Y-100843086D01* -X62644866Y-101082611D01* -X62268959Y-101497577D01* -X62108096Y-101885961D01* -X61361328Y-101885961D01* -X62826031Y-100421259D01* -X62904097Y-100369097D01* -X63110750Y-100059819D01* -X63165000Y-99787086D01* -X63183317Y-99695000D01* -X63165000Y-99602914D01* -X63165000Y-94357440D01* -X63230000Y-94357440D01* -X63477765Y-94308157D01* -X63687809Y-94167809D01* -X63828157Y-93957765D01* -X63877440Y-93710000D01* -X63877440Y-91710000D01* -X63828157Y-91462235D01* -X63687809Y-91252191D01* -X63477765Y-91111843D01* -X63230000Y-91062560D01* -X61230000Y-91062560D01* -X60982235Y-91111843D01* -X60772191Y-91252191D01* -X60631843Y-91462235D01* -X60582560Y-91710000D01* -X60582560Y-93710000D01* -X60631843Y-93957765D01* -X60772191Y-94167809D01* -X60982235Y-94308157D01* -X61230000Y-94357440D01* -X61295000Y-94357440D01* -X61295001Y-99307709D01* -X54857711Y-105745000D01* -X54441112Y-105745000D01* -X54374577Y-105645423D01* -X53899909Y-105328260D01* -X53481333Y-105245000D01* -X53198667Y-105245000D01* -X52780091Y-105328260D01* -X52333854Y-105626426D01* -X52308157Y-105497235D01* -X52249868Y-105410000D01* -X52308157Y-105322765D01* -X52357440Y-105075000D01* -X52357440Y-104475000D01* -X52308157Y-104227235D01* -X52249868Y-104140000D01* -X52308157Y-104052765D01* -X52357440Y-103805000D01* -X52357440Y-103281836D01* -X52527138Y-103451534D01* -X53054561Y-103670000D01* -X53625439Y-103670000D01* -X54152862Y-103451534D01* -X54556534Y-103047862D01* -X54775000Y-102520439D01* -X54775000Y-101949561D01* -X54556534Y-101422138D01* -X54152862Y-101018466D01* -X53625439Y-100800000D01* -X53085867Y-100800000D01* -X52718587Y-100432720D01* -X52672001Y-100362999D01* -X52395801Y-100178448D01* -X52327001Y-100164763D01* -X52345000Y-100121310D01* -X52345000Y-99980750D01* -X52186250Y-99822000D01* -X51087000Y-99822000D01* -X51087000Y-99842000D01* -X50833000Y-99842000D01* -X50833000Y-99822000D01* -X49733750Y-99822000D01* -X49575000Y-99980750D01* -X49575000Y-100121310D01* -X49664768Y-100338028D01* -X49611843Y-100417235D01* -X49562560Y-100665000D01* -X49562560Y-101265000D01* -X49611843Y-101512765D01* -X49670132Y-101600000D01* -X49611843Y-101687235D01* -X49562560Y-101935000D01* -X49562560Y-102535000D01* -X49604310Y-102744893D01* -X49529999Y-102730112D01* -X49455152Y-102745000D01* -X49455148Y-102745000D01* -X49233463Y-102789096D01* -X49020000Y-102931728D01* -X49020000Y-102797290D01* -X49052655Y-102764635D01* -X49195000Y-102420983D01* -X49195000Y-102049017D01* -X49052655Y-101705365D01* -X48789635Y-101442345D01* -X48445983Y-101300000D01* -X48074017Y-101300000D01* -X47730365Y-101442345D01* -X47467345Y-101705365D01* -X47325000Y-102049017D01* -X47325000Y-102420983D01* -X47467345Y-102764635D01* -X47500000Y-102797290D01* -X47500001Y-103190197D01* -X46957440Y-103732759D01* -X46957440Y-103205000D01* -X46908157Y-102957235D01* -X46849868Y-102870000D01* -X46908157Y-102782765D01* -X46957440Y-102535000D01* -X46957440Y-101935000D01* -X46908157Y-101687235D01* -X46849868Y-101600000D01* -X46908157Y-101512765D01* -X46910327Y-101501858D01* -X46945331Y-101449470D01* -X47794473Y-100600329D01* -X47857929Y-100557929D01* -X48025904Y-100306537D01* -X48070000Y-100084852D01* -X48070000Y-100084847D01* -X48084888Y-100010000D01* -X48070000Y-99935153D01* -X48070000Y-98125000D01* -X49562560Y-98125000D01* -X49562560Y-98725000D01* -X49611843Y-98972765D01* -X49664768Y-99051972D01* -X49575000Y-99268690D01* -X49575000Y-99409250D01* -X49733750Y-99568000D01* -X50833000Y-99568000D01* -X50833000Y-99548000D01* -X51087000Y-99548000D01* -X51087000Y-99568000D01* -X52186250Y-99568000D01* -X52345000Y-99409250D01* -X52345000Y-99268690D01* -X52310334Y-99185000D01* -X56440153Y-99185000D01* -X56515000Y-99199888D01* -X56589847Y-99185000D01* -X56589852Y-99185000D01* -X56811537Y-99140904D01* -X57062929Y-98972929D01* -X57105331Y-98909470D01* -X60174473Y-95840329D01* -X60237929Y-95797929D01* -X60405904Y-95546537D01* -X60450000Y-95324852D01* -X60450000Y-95324848D01* -X60464888Y-95250001D01* -X60450000Y-95175154D01* -X60450000Y-86308043D01* -X60724577Y-86124577D01* -X61041740Y-85649909D01* -X61153113Y-85090000D01* -X61041740Y-84530091D01* -X60724577Y-84055423D01* -X60249909Y-83738260D01* -X59831333Y-83655000D01* -X59548667Y-83655000D01* -X59130091Y-83738260D01* -X58655423Y-84055423D01* -X58338260Y-84530091D01* -X58226887Y-85090000D01* -X58338260Y-85649909D01* -X58655423Y-86124577D01* -X58930001Y-86308044D01* -X58930000Y-94935198D01* -X56200199Y-97665000D01* -X52164530Y-97665000D01* -X51957765Y-97526843D01* -X51710000Y-97477560D01* -X50210000Y-97477560D01* -X49962235Y-97526843D01* -X49752191Y-97667191D01* -X49611843Y-97877235D01* -X49562560Y-98125000D01* -X48070000Y-98125000D01* -X48070000Y-95622745D01* -X49891861Y-95622745D01* -X49965995Y-95868864D01* -X50503223Y-96061965D01* -X51073454Y-96034778D01* -X51474005Y-95868864D01* -X51548139Y-95622745D01* -X50720000Y-94794605D01* -X49891861Y-95622745D01* -X48070000Y-95622745D01* -X48070000Y-94398223D01* -X49273035Y-94398223D01* -X49300222Y-94968454D01* -X49466136Y-95369005D01* -X49712255Y-95443139D01* -X50540395Y-94615000D01* -X50899605Y-94615000D01* -X51727745Y-95443139D01* -X51973864Y-95369005D01* -X52166965Y-94831777D01* -X52139778Y-94261546D01* -X51974501Y-93862532D01* -X56257073Y-93862532D01* -X56355736Y-94129387D01* -X56965461Y-94355908D01* -X57615460Y-94331856D01* -X58104264Y-94129387D01* -X58202927Y-93862532D01* -X57230000Y-92889605D01* -X56257073Y-93862532D01* -X51974501Y-93862532D01* -X51973864Y-93860995D01* -X51727745Y-93786861D01* -X50899605Y-94615000D01* -X50540395Y-94615000D01* -X49712255Y-93786861D01* -X49466136Y-93860995D01* -X49273035Y-94398223D01* -X48070000Y-94398223D01* -X48070000Y-93607255D01* -X49891861Y-93607255D01* -X50720000Y-94435395D01* -X51548139Y-93607255D01* -X51474005Y-93361136D01* -X50936777Y-93168035D01* -X50366546Y-93195222D01* -X49965995Y-93361136D01* -X49891861Y-93607255D01* -X48070000Y-93607255D01* -X48070000Y-93008336D01* -X48074017Y-93010000D01* -X48445983Y-93010000D01* -X48789635Y-92867655D01* -X49052655Y-92604635D01* -X49118586Y-92445461D01* -X55584092Y-92445461D01* -X55608144Y-93095460D01* -X55810613Y-93584264D01* -X56077468Y-93682927D01* -X57050395Y-92710000D01* -X57409605Y-92710000D01* -X58382532Y-93682927D01* -X58649387Y-93584264D01* -X58875908Y-92974539D01* -X58851856Y-92324540D01* -X58649387Y-91835736D01* -X58382532Y-91737073D01* -X57409605Y-92710000D01* -X57050395Y-92710000D01* -X56077468Y-91737073D01* -X55810613Y-91835736D01* -X55584092Y-92445461D01* -X49118586Y-92445461D01* -X49195000Y-92260983D01* -X49195000Y-91889017D01* -X49057669Y-91557468D01* -X56257073Y-91557468D01* -X57230000Y-92530395D01* -X58202927Y-91557468D01* -X58104264Y-91290613D01* -X57494539Y-91064092D01* -X56844540Y-91088144D01* -X56355736Y-91290613D01* -X56257073Y-91557468D01* -X49057669Y-91557468D01* -X49052655Y-91545365D01* -X49020000Y-91512710D01* -X49020000Y-91508163D01* -X49117809Y-91442809D01* -X49258157Y-91232765D01* -X49307440Y-90985000D01* -X49307440Y-90085000D01* -X49258157Y-89837235D01* -X49117809Y-89627191D01* -X48997469Y-89546781D01* -X49083000Y-89461250D01* -X49083000Y-88662000D01* -X49337000Y-88662000D01* -X49337000Y-89461250D01* -X49495750Y-89620000D01* -X49736310Y-89620000D01* -X49969699Y-89523327D01* -X50148327Y-89344698D01* -X50245000Y-89111309D01* -X50245000Y-88820750D01* -X50086250Y-88662000D01* -X49337000Y-88662000D01* -X49083000Y-88662000D01* -X49063000Y-88662000D01* -X49063000Y-88408000D01* -X49083000Y-88408000D01* -X49083000Y-87608750D01* -X49337000Y-87608750D01* -X49337000Y-88408000D01* -X50086250Y-88408000D01* -X50245000Y-88249250D01* -X50245000Y-87958691D01* -X50148327Y-87725302D01* -X49969699Y-87546673D01* -X49736310Y-87450000D01* -X49495750Y-87450000D01* -X49337000Y-87608750D01* -X49083000Y-87608750D01* -X48924250Y-87450000D01* -X48683690Y-87450000D01* -X48450301Y-87546673D01* -X48271673Y-87725302D01* -X48257013Y-87760694D01* -X48167809Y-87627191D01* -X47957765Y-87486843D01* -X47710000Y-87437560D01* -X47447990Y-87437560D01* -X47309999Y-87410112D01* -X47172009Y-87437560D01* -X46910000Y-87437560D01* -X46662235Y-87486843D01* -X46452191Y-87627191D01* -X46311843Y-87837235D01* -X46262560Y-88085000D01* -X46262560Y-88985000D01* -X46311843Y-89232765D01* -X46452191Y-89442809D01* -X46550001Y-89508164D01* -X46550001Y-93415605D01* -X46532862Y-93398466D01* -X46005439Y-93180000D01* -X45434561Y-93180000D01* -X44907138Y-93398466D01* -X44503466Y-93802138D01* -X44285000Y-94329561D01* -X44285000Y-94900439D01* -X44503466Y-95427862D01* -X44907138Y-95831534D01* -X45434561Y-96050000D01* -X46005439Y-96050000D01* -X46532862Y-95831534D01* -X46550000Y-95814396D01* -X46550000Y-97525299D01* -X46310000Y-97477560D01* -X44810000Y-97477560D01* -X44562235Y-97526843D01* -X44355470Y-97665000D01* -X42224802Y-97665000D01* -X38895451Y-94335649D01* -X39005000Y-94357440D01* -X41005000Y-94357440D01* -X41252765Y-94308157D01* -X41462809Y-94167809D01* -X41603157Y-93957765D01* -X41652440Y-93710000D01* -X41652440Y-91710000D01* -X41603157Y-91462235D01* -X41462809Y-91252191D01* -X41252765Y-91111843D01* -X41005000Y-91062560D01* -X39005000Y-91062560D01* -X38860000Y-91091402D01* -X38860000Y-86328430D01* -X38912862Y-86306534D01* -X39316534Y-85902862D01* -X39535000Y-85375439D01* -X39535000Y-84814506D01* -X43065000Y-84814506D01* -X43065000Y-85365494D01* -X43275853Y-85874540D01* -X43665460Y-86264147D01* -X44174506Y-86475000D01* -X44725494Y-86475000D01* -X45234540Y-86264147D01* -X45624147Y-85874540D01* -X45720000Y-85643130D01* -X45815853Y-85874540D01* -X46205460Y-86264147D01* -X46714506Y-86475000D01* -X47265494Y-86475000D01* -X47774540Y-86264147D01* -X48164147Y-85874540D01* -X48260000Y-85643130D01* -X48355853Y-85874540D01* -X48745460Y-86264147D01* -X49254506Y-86475000D01* -X49805494Y-86475000D01* -X50314540Y-86264147D01* -X50704147Y-85874540D01* -X50800000Y-85643130D01* -X50895853Y-85874540D01* -X51285460Y-86264147D01* -X51794506Y-86475000D01* -X52345494Y-86475000D01* -X52854540Y-86264147D01* -X53244147Y-85874540D01* -X53455000Y-85365494D01* -X53455000Y-84814506D01* -X53244147Y-84305460D01* -X52886127Y-83947440D01* -X54090000Y-83947440D01* -X54337765Y-83898157D01* -X54547809Y-83757809D01* -X54688157Y-83547765D01* -X54737440Y-83300000D01* -X54737440Y-82227361D01* -X60174473Y-76790329D01* -X60237929Y-76747929D01* -X60405904Y-76496537D01* -X60450000Y-76274852D01* -X60450000Y-76274848D01* -X60464888Y-76200001D01* -X60457953Y-76165136D01* -X60502862Y-76146534D01* -X60906534Y-75742862D01* -X61125000Y-75215439D01* -X61125000Y-74644561D01* -X60906534Y-74117138D01* -X60502862Y-73713466D01* -X59975439Y-73495000D01* -X59404561Y-73495000D01* -X58877138Y-73713466D01* -X58473466Y-74117138D01* -X58255000Y-74644561D01* -X58255000Y-75215439D01* -X58473466Y-75742862D01* -X58772901Y-76042297D01* -X53662639Y-81152560D01* -X52590000Y-81152560D01* -X52342235Y-81201843D01* -X52132191Y-81342191D01* -X51991843Y-81552235D01* -X51953531Y-81744844D01* -X51584540Y-81375853D01* -X51075494Y-81165000D01* -X50524506Y-81165000D01* -X50015460Y-81375853D01* -X49625853Y-81765460D01* -X49530000Y-81996870D01* -X49434147Y-81765460D01* -X49044540Y-81375853D01* -X48535494Y-81165000D01* -X47984506Y-81165000D01* -X47475460Y-81375853D01* -X47085853Y-81765460D01* -X46990000Y-81996870D01* -X46894147Y-81765460D01* -X46504540Y-81375853D01* -X45995494Y-81165000D01* -X45444506Y-81165000D01* -X44935460Y-81375853D01* -X44545853Y-81765460D01* -X44335000Y-82274506D01* -X44335000Y-82825494D01* -X44545853Y-83334540D01* -X44935460Y-83724147D01* -X45444506Y-83935000D01* -X45995494Y-83935000D01* -X46504540Y-83724147D01* -X46894147Y-83334540D01* -X46990000Y-83103130D01* -X47085853Y-83334540D01* -X47475460Y-83724147D01* -X47984506Y-83935000D01* -X48535494Y-83935000D01* -X49044540Y-83724147D01* -X49434147Y-83334540D01* -X49530000Y-83103130D01* -X49625853Y-83334540D01* -X50015460Y-83724147D01* -X50524506Y-83935000D01* -X51075494Y-83935000D01* -X51584540Y-83724147D01* -X51953531Y-83355156D01* -X51991843Y-83547765D01* -X52096905Y-83705000D01* -X51794506Y-83705000D01* -X51285460Y-83915853D01* -X50895853Y-84305460D01* -X50800000Y-84536870D01* -X50704147Y-84305460D01* -X50314540Y-83915853D01* -X49805494Y-83705000D01* -X49254506Y-83705000D01* -X48745460Y-83915853D01* -X48355853Y-84305460D01* -X48260000Y-84536870D01* -X48164147Y-84305460D01* -X47774540Y-83915853D01* -X47265494Y-83705000D01* -X46714506Y-83705000D01* -X46205460Y-83915853D01* -X45815853Y-84305460D01* -X45720000Y-84536870D01* -X45624147Y-84305460D01* -X45234540Y-83915853D01* -X44725494Y-83705000D01* -X44174506Y-83705000D01* -X43665460Y-83915853D01* -X43275853Y-84305460D01* -X43065000Y-84814506D01* -X39535000Y-84814506D01* -X39535000Y-84804561D01* -X39316534Y-84277138D01* -X38912862Y-83873466D01* -X38385439Y-83655000D01* -X37814561Y-83655000D01* -X37287138Y-83873466D01* -X36883466Y-84277138D01* -X36665000Y-84804561D01* -X32460000Y-84804561D01* -X32460000Y-74930000D01* -X36636887Y-74930000D01* -X36748260Y-75489909D01* -X37065423Y-75964577D01* -X37540091Y-76281740D01* -X37958667Y-76365000D01* -X38241333Y-76365000D01* -X38659909Y-76281740D01* -X39134577Y-75964577D01* -X39304228Y-75710676D01* -X40500000Y-75710676D01* -X40500000Y-76689324D01* -X40874513Y-77593478D01* -X41566522Y-78285487D01* -X42470676Y-78660000D01* -X43449324Y-78660000D01* -X44353478Y-78285487D01* -X45045487Y-77593478D01* -X45420000Y-76689324D01* -X45420000Y-75710676D01* -X52370000Y-75710676D01* -X52370000Y-76689324D01* -X52744513Y-77593478D01* -X53436522Y-78285487D01* -X54340676Y-78660000D01* -X55319324Y-78660000D01* -X56223478Y-78285487D01* -X56915487Y-77593478D01* -X57290000Y-76689324D01* -X57290000Y-75710676D01* -X56915487Y-74806522D01* -X56223478Y-74114513D01* -X55319324Y-73740000D01* -X54340676Y-73740000D01* -X53436522Y-74114513D01* -X52744513Y-74806522D01* -X52370000Y-75710676D01* -X45420000Y-75710676D01* -X45045487Y-74806522D01* -X44353478Y-74114513D01* -X43449324Y-73740000D01* -X42470676Y-73740000D01* -X41566522Y-74114513D01* -X40874513Y-74806522D01* -X40500000Y-75710676D01* -X39304228Y-75710676D01* -X39451740Y-75489909D01* -X39563113Y-74930000D01* -X39451740Y-74370091D01* -X39134577Y-73895423D01* -X38659909Y-73578260D01* -X38241333Y-73495000D01* -X37958667Y-73495000D01* -X37540091Y-73578260D01* -X37065423Y-73895423D01* -X36748260Y-74370091D01* -X36636887Y-74930000D01* -X32460000Y-74930000D01* -X32460000Y-68655000D01* -X64695000Y-68655000D01* -X64695000Y-101457792D01* -G36* -X64695001Y-128133265D02* -X64507745Y-128076861D01* -X63679605Y-128905000D01* -X64507745Y-129733139D01* -X64695001Y-129676735D01* -X64695001Y-141287784D01* -X64637809Y-141202191D01* -X64427765Y-141061843D01* -X64180000Y-141012560D01* -X64000000Y-141012560D01* -X64000000Y-139176782D01* -X64022235Y-139064999D01* -X63934146Y-138622145D01* -X63928229Y-138613289D01* -X63683289Y-138246711D01* -X63588521Y-138183389D01* -X62730000Y-137324869D01* -X62730000Y-136149396D01* -X62811534Y-136067862D01* -X63030000Y-135540439D01* -X63030000Y-134969561D01* -X62811534Y-134442138D01* -X62730000Y-134360604D01* -X62730000Y-130105762D01* -X62745995Y-130158864D01* -X63283223Y-130351965D01* -X63853454Y-130324778D01* -X64254005Y-130158864D01* -X64328139Y-129912745D01* -X63500000Y-129084605D01* -X63485858Y-129098748D01* -X63306252Y-128919142D01* -X63320395Y-128905000D01* -X63306252Y-128890858D01* -X63485858Y-128711252D01* -X63500000Y-128725395D01* -X64328139Y-127897255D01* -X64254005Y-127651136D01* -X63716777Y-127458035D01* -X63146546Y-127485222D01* -X62745995Y-127651136D01* -X62730000Y-127704238D01* -X62730000Y-125694288D01* -X63214561Y-125895000D01* -X63785439Y-125895000D01* -X64312862Y-125676534D01* -X64695001Y-125294395D01* -X64695001Y-128133265D01* -X64695001Y-128133265D01* -G37* -X64695001Y-128133265D02* -X64507745Y-128076861D01* -X63679605Y-128905000D01* -X64507745Y-129733139D01* -X64695001Y-129676735D01* -X64695001Y-141287784D01* -X64637809Y-141202191D01* -X64427765Y-141061843D01* -X64180000Y-141012560D01* -X64000000Y-141012560D01* -X64000000Y-139176782D01* -X64022235Y-139064999D01* -X63934146Y-138622145D01* -X63928229Y-138613289D01* -X63683289Y-138246711D01* -X63588521Y-138183389D01* -X62730000Y-137324869D01* -X62730000Y-136149396D01* -X62811534Y-136067862D01* -X63030000Y-135540439D01* -X63030000Y-134969561D01* -X62811534Y-134442138D01* -X62730000Y-134360604D01* -X62730000Y-130105762D01* -X62745995Y-130158864D01* -X63283223Y-130351965D01* -X63853454Y-130324778D01* -X64254005Y-130158864D01* -X64328139Y-129912745D01* -X63500000Y-129084605D01* -X63485858Y-129098748D01* -X63306252Y-128919142D01* -X63320395Y-128905000D01* -X63306252Y-128890858D01* -X63485858Y-128711252D01* -X63500000Y-128725395D01* -X64328139Y-127897255D01* -X64254005Y-127651136D01* -X63716777Y-127458035D01* -X63146546Y-127485222D01* -X62745995Y-127651136D01* -X62730000Y-127704238D01* -X62730000Y-125694288D01* -X63214561Y-125895000D01* -X63785439Y-125895000D01* -X64312862Y-125676534D01* -X64695001Y-125294395D01* -X64695001Y-128133265D01* -M02* diff --git a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.Mask.gts b/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.Mask.gts deleted file mode 100644 index 943b3ddd..00000000 --- a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.Mask.gts +++ /dev/null @@ -1,205 +0,0 @@ -G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.0.0-rc2-dev-40-gfef1ba999)* -G04 #@! TF.CreationDate,2018-03-01T23:08:39+01:00* -G04 #@! TF.ProjectId,HAN_ESP_TSS721,48414E5F4553505F5453533732312E6B,rev?* -G04 #@! TF.SameCoordinates,Original* -G04 #@! TF.FileFunction,Soldermask,Top* -G04 #@! TF.FilePolarity,Negative* -%FSLAX46Y46*% -G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* -G04 Created by KiCad (PCBNEW (5.0.0-rc2-dev-40-gfef1ba999)) date 03/01/18 23:08:39* -%MOMM*% -%LPD*% -G01* -G04 APERTURE LIST* -%ADD10R,1.200000X1.300000*% -%ADD11C,2.000000*% -%ADD12O,2.000000X2.000000*% -%ADD13C,4.050000*% -%ADD14R,1.900000X1.900000*% -%ADD15C,1.900000*% -%ADD16R,0.800000X1.750000*% -%ADD17O,1.650000X1.350000*% -%ADD18O,1.400000X1.950000*% -%ADD19R,1.900000X1.000000*% -%ADD20R,2.400000X2.400000*% -%ADD21C,2.400000*% -%ADD22R,4.200000X2.400000*% -%ADD23R,1.900000X2.400000*% -%ADD24R,2.100000X2.100000*% -%ADD25O,2.100000X2.100000*% -%ADD26R,2.900000X1.500000*% -%ADD27R,1.500000X2.900000*% -%ADD28R,1.920000X1.920000*% -%ADD29C,1.920000*% -G04 APERTURE END LIST* -D10* -X49210000Y-88535000D03* -X47310000Y-88535000D03* -X48260000Y-90535000D03* -D11* -X53340000Y-102235000D03* -D12* -X63500000Y-102235000D03* -D11* -X53340000Y-115570000D03* -D12* -X63500000Y-115570000D03* -D13* -X42960000Y-76200000D03* -X54830000Y-76200000D03* -D14* -X53340000Y-82550000D03* -D15* -X52070000Y-85090000D03* -X50800000Y-82550000D03* -X49530000Y-85090000D03* -X48260000Y-82550000D03* -X46990000Y-85090000D03* -X45720000Y-82550000D03* -X44450000Y-85090000D03* -D16* -X35530000Y-161210000D03* -X36180000Y-161210000D03* -X36830000Y-161210000D03* -X37480000Y-161210000D03* -X38130000Y-161210000D03* -D17* -X34330000Y-161210000D03* -X39330000Y-161210000D03* -D18* -X33330000Y-163910000D03* -X40330000Y-163910000D03* -D19* -X45560000Y-98425000D03* -X45560000Y-99695000D03* -X45560000Y-100965000D03* -X45560000Y-102235000D03* -X45560000Y-103505000D03* -X45560000Y-104775000D03* -X45560000Y-106045000D03* -X45560000Y-107315000D03* -X50960000Y-107315000D03* -X50960000Y-106045000D03* -X50960000Y-104775000D03* -X50960000Y-103505000D03* -X50960000Y-102235000D03* -X50960000Y-100965000D03* -X50960000Y-99695000D03* -X50960000Y-98425000D03* -D20* -X40005000Y-92710000D03* -D21* -X35005000Y-92710000D03* -D11* -X45720000Y-94615000D03* -X50720000Y-94615000D03* -X34290000Y-156210000D03* -X39290000Y-156210000D03* -D20* -X62230000Y-92710000D03* -D21* -X57230000Y-92710000D03* -D11* -X43180000Y-100965000D03* -D12* -X33020000Y-100965000D03* -D11* -X53340000Y-111125000D03* -D12* -X63500000Y-111125000D03* -D11* -X63500000Y-120015000D03* -D12* -X53340000Y-120015000D03* -D11* -X63500000Y-128905000D03* -D12* -X53340000Y-128905000D03* -D11* -X63500000Y-124460000D03* -D12* -X53340000Y-124460000D03* -D11* -X59690000Y-74930000D03* -D12* -X59690000Y-85090000D03* -D11* -X38100000Y-85090000D03* -D12* -X38100000Y-74930000D03* -D11* -X63500000Y-106680000D03* -D12* -X53340000Y-106680000D03* -D22* -X36830000Y-152375000D03* -D23* -X36830000Y-146075000D03* -X34530000Y-146075000D03* -X39130000Y-146075000D03* -D24* -X45720000Y-113030000D03* -D25* -X45720000Y-115570000D03* -D24* -X49530000Y-113030000D03* -D25* -X49530000Y-115570000D03* -D26* -X62930000Y-156210000D03* -X62930000Y-154210000D03* -X62930000Y-152210000D03* -X62930000Y-150210000D03* -X62930000Y-148210000D03* -X62930000Y-146210000D03* -X62930000Y-144210000D03* -X62930000Y-142210000D03* -X47530000Y-142210000D03* -X47530000Y-144210000D03* -X47530000Y-146210000D03* -X47530000Y-148210000D03* -X47530000Y-150210000D03* -X47530000Y-152210000D03* -X47530000Y-154210000D03* -X47530000Y-156210000D03* -D27* -X60240000Y-140510000D03* -X58240000Y-140510000D03* -X56240000Y-140510000D03* -X54240000Y-140510000D03* -X52240000Y-140510000D03* -X50240000Y-140510000D03* -D12* -X33020000Y-104140000D03* -D11* -X43180000Y-104140000D03* -D28* -X35560000Y-109855000D03* -D29* -X40640000Y-109855000D03* -X38100000Y-109855000D03* -D11* -X56595000Y-135255000D03* -X61595000Y-135255000D03* -D21* -X40560000Y-137795000D03* -D20* -X35560000Y-137795000D03* -D25* -X46990000Y-134620000D03* -X46990000Y-132080000D03* -X46990000Y-129540000D03* -X46990000Y-127000000D03* -X46990000Y-124460000D03* -D24* -X46990000Y-121920000D03* -D21* -X35560000Y-114785000D03* -X40060000Y-114785000D03* -X35560000Y-121285000D03* -X40060000Y-121285000D03* -X40060000Y-130960000D03* -X35560000Y-130960000D03* -X40060000Y-124460000D03* -X35560000Y-124460000D03* -M02* diff --git a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.SilkS.gto b/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.SilkS.gto deleted file mode 100644 index ad14208e..00000000 --- a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721-F.SilkS.gto +++ /dev/null @@ -1,2243 +0,0 @@ -G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.0.0-rc2-dev-40-gfef1ba999)* -G04 #@! TF.CreationDate,2018-03-01T23:08:39+01:00* -G04 #@! TF.ProjectId,HAN_ESP_TSS721,48414E5F4553505F5453533732312E6B,rev?* -G04 #@! TF.SameCoordinates,Original* -G04 #@! TF.FileFunction,Legend,Top* -G04 #@! TF.FilePolarity,Positive* -%FSLAX46Y46*% -G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* -G04 Created by KiCad (PCBNEW (5.0.0-rc2-dev-40-gfef1ba999)) date 03/01/18 23:08:39* -%MOMM*% -%LPD*% -G01* -G04 APERTURE LIST* -%ADD10C,0.120000*% -%ADD11C,0.150000*% -%ADD12C,0.152400*% -G04 APERTURE END LIST* -D10* -X46680000Y-90295000D02* -X47610000Y-90295000D01* -X49840000Y-90295000D02* -X48910000Y-90295000D01* -X49840000Y-90295000D02* -X49840000Y-88135000D01* -X46680000Y-90295000D02* -X46680000Y-88835000D01* -X55210000Y-100925000D02* -X55210000Y-103545000D01* -X55210000Y-103545000D02* -X61630000Y-103545000D01* -X61630000Y-103545000D02* -X61630000Y-100925000D01* -X61630000Y-100925000D02* -X55210000Y-100925000D01* -X54320000Y-102235000D02* -X55210000Y-102235000D01* -X62520000Y-102235000D02* -X61630000Y-102235000D01* -X55210000Y-114260000D02* -X55210000Y-116880000D01* -X55210000Y-116880000D02* -X61630000Y-116880000D01* -X61630000Y-116880000D02* -X61630000Y-114260000D01* -X61630000Y-114260000D02* -X55210000Y-114260000D01* -X54320000Y-115570000D02* -X55210000Y-115570000D01* -X62520000Y-115570000D02* -X61630000Y-115570000D01* -X56510000Y-68330000D02* -X41270000Y-68330000D01* -X41270000Y-86360000D02* -X41280000Y-77370000D01* -X41270000Y-86360000D02* -X56510000Y-86360000D01* -X56510000Y-86360000D02* -X56510000Y-77360000D01* -X41280000Y-75030000D02* -X41270000Y-68330000D01* -X56510000Y-75040000D02* -X56510000Y-68330000D01* -X32480000Y-166590000D02* -X41180000Y-166590000D01* -X32480000Y-160180000D02* -X41180000Y-160180000D01* -X41180000Y-160180000D02* -X41180000Y-166590000D01* -X41180000Y-165360000D02* -X32480000Y-165360000D01* -X32480000Y-166590000D02* -X32480000Y-160180000D01* -D11* -X46185000Y-97795000D02* -X46185000Y-97820000D01* -X50335000Y-97795000D02* -X50335000Y-97900000D01* -X50335000Y-107945000D02* -X50335000Y-107840000D01* -X46185000Y-107945000D02* -X46185000Y-107840000D01* -X46185000Y-97795000D02* -X50335000Y-97795000D01* -X46185000Y-107945000D02* -X50335000Y-107945000D01* -X46185000Y-97820000D02* -X44810000Y-97820000D01* -D10* -X32606563Y-94093264D02* -G75* -G03X42404357Y-94090000I4898437J1383264D01* -G01* -X32606563Y-91326736D02* -G75* -G02X42404357Y-91330000I4898437J-1383264D01* -G01* -X32606563Y-91326736D02* -G75* -G03X32605643Y-94090000I4898437J-1383264D01* -G01* -X37505000Y-97760000D02* -X37505000Y-87660000D01* -X37465000Y-97760000D02* -X37465000Y-87660000D01* -X37425000Y-97760000D02* -X37425000Y-87660000D01* -X37385000Y-97759000D02* -X37385000Y-87661000D01* -X37345000Y-97758000D02* -X37345000Y-87662000D01* -X37305000Y-97757000D02* -X37305000Y-87663000D01* -X37265000Y-97755000D02* -X37265000Y-87665000D01* -X37225000Y-97753000D02* -X37225000Y-87667000D01* -X37185000Y-97750000D02* -X37185000Y-87670000D01* -X37145000Y-97748000D02* -X37145000Y-87672000D01* -X37105000Y-97745000D02* -X37105000Y-87675000D01* -X37065000Y-97741000D02* -X37065000Y-87679000D01* -X37025000Y-97738000D02* -X37025000Y-87682000D01* -X36985000Y-97734000D02* -X36985000Y-87686000D01* -X36945000Y-97730000D02* -X36945000Y-87690000D01* -X36905000Y-97725000D02* -X36905000Y-87695000D01* -X36865000Y-97720000D02* -X36865000Y-87700000D01* -X36825000Y-97715000D02* -X36825000Y-87705000D01* -X36784000Y-97709000D02* -X36784000Y-87711000D01* -X36744000Y-97703000D02* -X36744000Y-87717000D01* -X36704000Y-97697000D02* -X36704000Y-87723000D01* -X36664000Y-97691000D02* -X36664000Y-87729000D01* -X36624000Y-97684000D02* -X36624000Y-87736000D01* -X36584000Y-97677000D02* -X36584000Y-87743000D01* -X36544000Y-97669000D02* -X36544000Y-87751000D01* -X36504000Y-97661000D02* -X36504000Y-87759000D01* -X36464000Y-97653000D02* -X36464000Y-87767000D01* -X36424000Y-97645000D02* -X36424000Y-87775000D01* -X36384000Y-97636000D02* -X36384000Y-87784000D01* -X36344000Y-97627000D02* -X36344000Y-87793000D01* -X36304000Y-97617000D02* -X36304000Y-87803000D01* -X36264000Y-97607000D02* -X36264000Y-87813000D01* -X36224000Y-97597000D02* -X36224000Y-87823000D01* -X36184000Y-97586000D02* -X36184000Y-93891000D01* -X36184000Y-91529000D02* -X36184000Y-87834000D01* -X36144000Y-97575000D02* -X36144000Y-93891000D01* -X36144000Y-91529000D02* -X36144000Y-87845000D01* -X36104000Y-97564000D02* -X36104000Y-93891000D01* -X36104000Y-91529000D02* -X36104000Y-87856000D01* -X36064000Y-97553000D02* -X36064000Y-93891000D01* -X36064000Y-91529000D02* -X36064000Y-87867000D01* -X36024000Y-97541000D02* -X36024000Y-93891000D01* -X36024000Y-91529000D02* -X36024000Y-87879000D01* -X35984000Y-97528000D02* -X35984000Y-93891000D01* -X35984000Y-91529000D02* -X35984000Y-87892000D01* -X35944000Y-97516000D02* -X35944000Y-93891000D01* -X35944000Y-91529000D02* -X35944000Y-87904000D01* -X35904000Y-97502000D02* -X35904000Y-93891000D01* -X35904000Y-91529000D02* -X35904000Y-87918000D01* -X35864000Y-97489000D02* -X35864000Y-93891000D01* -X35864000Y-91529000D02* -X35864000Y-87931000D01* -X35824000Y-97475000D02* -X35824000Y-93891000D01* -X35824000Y-91529000D02* -X35824000Y-87945000D01* -X35784000Y-97461000D02* -X35784000Y-93891000D01* -X35784000Y-91529000D02* -X35784000Y-87959000D01* -X35744000Y-97447000D02* -X35744000Y-93891000D01* -X35744000Y-91529000D02* -X35744000Y-87973000D01* -X35704000Y-97432000D02* -X35704000Y-93891000D01* -X35704000Y-91529000D02* -X35704000Y-87988000D01* -X35664000Y-97416000D02* -X35664000Y-93891000D01* -X35664000Y-91529000D02* -X35664000Y-88004000D01* -X35624000Y-97401000D02* -X35624000Y-93891000D01* -X35624000Y-91529000D02* -X35624000Y-88019000D01* -X35584000Y-97384000D02* -X35584000Y-93891000D01* -X35584000Y-91529000D02* -X35584000Y-88036000D01* -X35544000Y-97368000D02* -X35544000Y-93891000D01* -X35544000Y-91529000D02* -X35544000Y-88052000D01* -X35504000Y-97351000D02* -X35504000Y-93891000D01* -X35504000Y-91529000D02* -X35504000Y-88069000D01* -X35464000Y-97334000D02* -X35464000Y-93891000D01* -X35464000Y-91529000D02* -X35464000Y-88086000D01* -X35424000Y-97316000D02* -X35424000Y-93891000D01* -X35424000Y-91529000D02* -X35424000Y-88104000D01* -X35384000Y-97298000D02* -X35384000Y-93891000D01* -X35384000Y-91529000D02* -X35384000Y-88122000D01* -X35344000Y-97279000D02* -X35344000Y-93891000D01* -X35344000Y-91529000D02* -X35344000Y-88141000D01* -X35304000Y-97260000D02* -X35304000Y-93891000D01* -X35304000Y-91529000D02* -X35304000Y-88160000D01* -X35264000Y-97241000D02* -X35264000Y-93891000D01* -X35264000Y-91529000D02* -X35264000Y-88179000D01* -X35224000Y-97221000D02* -X35224000Y-93891000D01* -X35224000Y-91529000D02* -X35224000Y-88199000D01* -X35184000Y-97201000D02* -X35184000Y-93891000D01* -X35184000Y-91529000D02* -X35184000Y-88219000D01* -X35144000Y-97180000D02* -X35144000Y-93891000D01* -X35144000Y-91529000D02* -X35144000Y-88240000D01* -X35104000Y-97159000D02* -X35104000Y-93891000D01* -X35104000Y-91529000D02* -X35104000Y-88261000D01* -X35064000Y-97138000D02* -X35064000Y-93891000D01* -X35064000Y-91529000D02* -X35064000Y-88282000D01* -X35024000Y-97115000D02* -X35024000Y-93891000D01* -X35024000Y-91529000D02* -X35024000Y-88305000D01* -X34984000Y-97093000D02* -X34984000Y-93891000D01* -X34984000Y-91529000D02* -X34984000Y-88327000D01* -X34944000Y-97070000D02* -X34944000Y-93891000D01* -X34944000Y-91529000D02* -X34944000Y-88350000D01* -X34904000Y-97046000D02* -X34904000Y-93891000D01* -X34904000Y-91529000D02* -X34904000Y-88374000D01* -X34864000Y-97022000D02* -X34864000Y-93891000D01* -X34864000Y-91529000D02* -X34864000Y-88398000D01* -X34824000Y-96998000D02* -X34824000Y-93891000D01* -X34824000Y-91529000D02* -X34824000Y-88422000D01* -X34784000Y-96973000D02* -X34784000Y-93891000D01* -X34784000Y-91529000D02* -X34784000Y-88447000D01* -X34744000Y-96947000D02* -X34744000Y-93891000D01* -X34744000Y-91529000D02* -X34744000Y-88473000D01* -X34704000Y-96921000D02* -X34704000Y-93891000D01* -X34704000Y-91529000D02* -X34704000Y-88499000D01* -X34664000Y-96895000D02* -X34664000Y-93891000D01* -X34664000Y-91529000D02* -X34664000Y-88525000D01* -X34624000Y-96867000D02* -X34624000Y-93891000D01* -X34624000Y-91529000D02* -X34624000Y-88553000D01* -X34584000Y-96840000D02* -X34584000Y-93891000D01* -X34584000Y-91529000D02* -X34584000Y-88580000D01* -X34544000Y-96811000D02* -X34544000Y-93891000D01* -X34544000Y-91529000D02* -X34544000Y-88609000D01* -X34504000Y-96782000D02* -X34504000Y-93891000D01* -X34504000Y-91529000D02* -X34504000Y-88638000D01* -X34464000Y-96753000D02* -X34464000Y-93891000D01* -X34464000Y-91529000D02* -X34464000Y-88667000D01* -X34424000Y-96723000D02* -X34424000Y-93891000D01* -X34424000Y-91529000D02* -X34424000Y-88697000D01* -X34384000Y-96692000D02* -X34384000Y-93891000D01* -X34384000Y-91529000D02* -X34384000Y-88728000D01* -X34344000Y-96661000D02* -X34344000Y-93891000D01* -X34344000Y-91529000D02* -X34344000Y-88759000D01* -X34304000Y-96629000D02* -X34304000Y-93891000D01* -X34304000Y-91529000D02* -X34304000Y-88791000D01* -X34264000Y-96596000D02* -X34264000Y-93891000D01* -X34264000Y-91529000D02* -X34264000Y-88824000D01* -X34224000Y-96563000D02* -X34224000Y-93891000D01* -X34224000Y-91529000D02* -X34224000Y-88857000D01* -X34184000Y-96529000D02* -X34184000Y-93891000D01* -X34184000Y-91529000D02* -X34184000Y-88891000D01* -X34144000Y-96494000D02* -X34144000Y-93891000D01* -X34144000Y-91529000D02* -X34144000Y-88926000D01* -X34104000Y-96458000D02* -X34104000Y-93891000D01* -X34104000Y-91529000D02* -X34104000Y-88962000D01* -X34064000Y-96422000D02* -X34064000Y-93891000D01* -X34064000Y-91529000D02* -X34064000Y-88998000D01* -X34024000Y-96385000D02* -X34024000Y-93891000D01* -X34024000Y-91529000D02* -X34024000Y-89035000D01* -X33984000Y-96347000D02* -X33984000Y-93891000D01* -X33984000Y-91529000D02* -X33984000Y-89073000D01* -X33944000Y-96308000D02* -X33944000Y-93891000D01* -X33944000Y-91529000D02* -X33944000Y-89112000D01* -X33904000Y-96269000D02* -X33904000Y-93891000D01* -X33904000Y-91529000D02* -X33904000Y-89151000D01* -X33864000Y-96228000D02* -X33864000Y-93891000D01* -X33864000Y-91529000D02* -X33864000Y-89192000D01* -X33824000Y-96187000D02* -X33824000Y-89233000D01* -X33784000Y-96145000D02* -X33784000Y-89275000D01* -X33744000Y-96101000D02* -X33744000Y-89319000D01* -X33704000Y-96057000D02* -X33704000Y-89363000D01* -X33664000Y-96012000D02* -X33664000Y-89408000D01* -X33624000Y-95965000D02* -X33624000Y-89455000D01* -X33584000Y-95917000D02* -X33584000Y-89503000D01* -X33544000Y-95868000D02* -X33544000Y-89552000D01* -X33504000Y-95818000D02* -X33504000Y-89602000D01* -X33464000Y-95767000D02* -X33464000Y-89653000D01* -X33424000Y-95714000D02* -X33424000Y-89706000D01* -X33384000Y-95659000D02* -X33384000Y-89761000D01* -X33344000Y-95604000D02* -X33344000Y-89816000D01* -X33304000Y-95546000D02* -X33304000Y-89874000D01* -X33264000Y-95487000D02* -X33264000Y-89933000D01* -X33224000Y-95425000D02* -X33224000Y-89995000D01* -X33184000Y-95362000D02* -X33184000Y-90058000D01* -X33144000Y-95297000D02* -X33144000Y-90123000D01* -X33104000Y-95229000D02* -X33104000Y-90191000D01* -X33064000Y-95159000D02* -X33064000Y-90261000D01* -X33024000Y-95087000D02* -X33024000Y-90333000D01* -X32984000Y-95011000D02* -X32984000Y-90409000D01* -X32944000Y-94932000D02* -X32944000Y-90488000D01* -X32904000Y-94850000D02* -X32904000Y-90570000D01* -X32864000Y-94763000D02* -X32864000Y-90657000D01* -X32824000Y-94672000D02* -X32824000Y-90748000D01* -X32784000Y-94576000D02* -X32784000Y-90844000D01* -X32744000Y-94473000D02* -X32744000Y-90947000D01* -X32704000Y-94364000D02* -X32704000Y-91056000D01* -X32664000Y-94246000D02* -X32664000Y-91174000D01* -X32624000Y-94117000D02* -X32624000Y-91303000D01* -X32584000Y-93975000D02* -X32584000Y-91445000D01* -X32544000Y-93814000D02* -X32544000Y-91606000D01* -X32504000Y-93623000D02* -X32504000Y-91797000D01* -X32464000Y-93382000D02* -X32464000Y-92038000D01* -X32424000Y-92989000D02* -X32424000Y-92431000D01* -X42705000Y-92710000D02* -X41205000Y-92710000D01* -X41955000Y-93460000D02* -X41955000Y-91960000D01* -X44660000Y-92805000D02* -X51780000Y-92805000D01* -X44660000Y-96425000D02* -X51780000Y-96425000D01* -X44660000Y-92805000D02* -X44660000Y-96425000D01* -X51780000Y-92805000D02* -X51780000Y-96425000D01* -X33230000Y-154400000D02* -X40350000Y-154400000D01* -X33230000Y-158020000D02* -X40350000Y-158020000D01* -X33230000Y-154400000D02* -X33230000Y-158020000D01* -X40350000Y-154400000D02* -X40350000Y-158020000D01* -X54831563Y-94093264D02* -G75* -G03X64629357Y-94090000I4898437J1383264D01* -G01* -X54831563Y-91326736D02* -G75* -G02X64629357Y-91330000I4898437J-1383264D01* -G01* -X54831563Y-91326736D02* -G75* -G03X54830643Y-94090000I4898437J-1383264D01* -G01* -X59730000Y-97760000D02* -X59730000Y-87660000D01* -X59690000Y-97760000D02* -X59690000Y-87660000D01* -X59650000Y-97760000D02* -X59650000Y-87660000D01* -X59610000Y-97759000D02* -X59610000Y-87661000D01* -X59570000Y-97758000D02* -X59570000Y-87662000D01* -X59530000Y-97757000D02* -X59530000Y-87663000D01* -X59490000Y-97755000D02* -X59490000Y-87665000D01* -X59450000Y-97753000D02* -X59450000Y-87667000D01* -X59410000Y-97750000D02* -X59410000Y-87670000D01* -X59370000Y-97748000D02* -X59370000Y-87672000D01* -X59330000Y-97745000D02* -X59330000Y-87675000D01* -X59290000Y-97741000D02* -X59290000Y-87679000D01* -X59250000Y-97738000D02* -X59250000Y-87682000D01* -X59210000Y-97734000D02* -X59210000Y-87686000D01* -X59170000Y-97730000D02* -X59170000Y-87690000D01* -X59130000Y-97725000D02* -X59130000Y-87695000D01* -X59090000Y-97720000D02* -X59090000Y-87700000D01* -X59050000Y-97715000D02* -X59050000Y-87705000D01* -X59009000Y-97709000D02* -X59009000Y-87711000D01* -X58969000Y-97703000D02* -X58969000Y-87717000D01* -X58929000Y-97697000D02* -X58929000Y-87723000D01* -X58889000Y-97691000D02* -X58889000Y-87729000D01* -X58849000Y-97684000D02* -X58849000Y-87736000D01* -X58809000Y-97677000D02* -X58809000Y-87743000D01* -X58769000Y-97669000D02* -X58769000Y-87751000D01* -X58729000Y-97661000D02* -X58729000Y-87759000D01* -X58689000Y-97653000D02* -X58689000Y-87767000D01* -X58649000Y-97645000D02* -X58649000Y-87775000D01* -X58609000Y-97636000D02* -X58609000Y-87784000D01* -X58569000Y-97627000D02* -X58569000Y-87793000D01* -X58529000Y-97617000D02* -X58529000Y-87803000D01* -X58489000Y-97607000D02* -X58489000Y-87813000D01* -X58449000Y-97597000D02* -X58449000Y-87823000D01* -X58409000Y-97586000D02* -X58409000Y-93891000D01* -X58409000Y-91529000D02* -X58409000Y-87834000D01* -X58369000Y-97575000D02* -X58369000Y-93891000D01* -X58369000Y-91529000D02* -X58369000Y-87845000D01* -X58329000Y-97564000D02* -X58329000Y-93891000D01* -X58329000Y-91529000D02* -X58329000Y-87856000D01* -X58289000Y-97553000D02* -X58289000Y-93891000D01* -X58289000Y-91529000D02* -X58289000Y-87867000D01* -X58249000Y-97541000D02* -X58249000Y-93891000D01* -X58249000Y-91529000D02* -X58249000Y-87879000D01* -X58209000Y-97528000D02* -X58209000Y-93891000D01* -X58209000Y-91529000D02* -X58209000Y-87892000D01* -X58169000Y-97516000D02* -X58169000Y-93891000D01* -X58169000Y-91529000D02* -X58169000Y-87904000D01* -X58129000Y-97502000D02* -X58129000Y-93891000D01* -X58129000Y-91529000D02* -X58129000Y-87918000D01* -X58089000Y-97489000D02* -X58089000Y-93891000D01* -X58089000Y-91529000D02* -X58089000Y-87931000D01* -X58049000Y-97475000D02* -X58049000Y-93891000D01* -X58049000Y-91529000D02* -X58049000Y-87945000D01* -X58009000Y-97461000D02* -X58009000Y-93891000D01* -X58009000Y-91529000D02* -X58009000Y-87959000D01* -X57969000Y-97447000D02* -X57969000Y-93891000D01* -X57969000Y-91529000D02* -X57969000Y-87973000D01* -X57929000Y-97432000D02* -X57929000Y-93891000D01* -X57929000Y-91529000D02* -X57929000Y-87988000D01* -X57889000Y-97416000D02* -X57889000Y-93891000D01* -X57889000Y-91529000D02* -X57889000Y-88004000D01* -X57849000Y-97401000D02* -X57849000Y-93891000D01* -X57849000Y-91529000D02* -X57849000Y-88019000D01* -X57809000Y-97384000D02* -X57809000Y-93891000D01* -X57809000Y-91529000D02* -X57809000Y-88036000D01* -X57769000Y-97368000D02* -X57769000Y-93891000D01* -X57769000Y-91529000D02* -X57769000Y-88052000D01* -X57729000Y-97351000D02* -X57729000Y-93891000D01* -X57729000Y-91529000D02* -X57729000Y-88069000D01* -X57689000Y-97334000D02* -X57689000Y-93891000D01* -X57689000Y-91529000D02* -X57689000Y-88086000D01* -X57649000Y-97316000D02* -X57649000Y-93891000D01* -X57649000Y-91529000D02* -X57649000Y-88104000D01* -X57609000Y-97298000D02* -X57609000Y-93891000D01* -X57609000Y-91529000D02* -X57609000Y-88122000D01* -X57569000Y-97279000D02* -X57569000Y-93891000D01* -X57569000Y-91529000D02* -X57569000Y-88141000D01* -X57529000Y-97260000D02* -X57529000Y-93891000D01* -X57529000Y-91529000D02* -X57529000Y-88160000D01* -X57489000Y-97241000D02* -X57489000Y-93891000D01* -X57489000Y-91529000D02* -X57489000Y-88179000D01* -X57449000Y-97221000D02* -X57449000Y-93891000D01* -X57449000Y-91529000D02* -X57449000Y-88199000D01* -X57409000Y-97201000D02* -X57409000Y-93891000D01* -X57409000Y-91529000D02* -X57409000Y-88219000D01* -X57369000Y-97180000D02* -X57369000Y-93891000D01* -X57369000Y-91529000D02* -X57369000Y-88240000D01* -X57329000Y-97159000D02* -X57329000Y-93891000D01* -X57329000Y-91529000D02* -X57329000Y-88261000D01* -X57289000Y-97138000D02* -X57289000Y-93891000D01* -X57289000Y-91529000D02* -X57289000Y-88282000D01* -X57249000Y-97115000D02* -X57249000Y-93891000D01* -X57249000Y-91529000D02* -X57249000Y-88305000D01* -X57209000Y-97093000D02* -X57209000Y-93891000D01* -X57209000Y-91529000D02* -X57209000Y-88327000D01* -X57169000Y-97070000D02* -X57169000Y-93891000D01* -X57169000Y-91529000D02* -X57169000Y-88350000D01* -X57129000Y-97046000D02* -X57129000Y-93891000D01* -X57129000Y-91529000D02* -X57129000Y-88374000D01* -X57089000Y-97022000D02* -X57089000Y-93891000D01* -X57089000Y-91529000D02* -X57089000Y-88398000D01* -X57049000Y-96998000D02* -X57049000Y-93891000D01* -X57049000Y-91529000D02* -X57049000Y-88422000D01* -X57009000Y-96973000D02* -X57009000Y-93891000D01* -X57009000Y-91529000D02* -X57009000Y-88447000D01* -X56969000Y-96947000D02* -X56969000Y-93891000D01* -X56969000Y-91529000D02* -X56969000Y-88473000D01* -X56929000Y-96921000D02* -X56929000Y-93891000D01* -X56929000Y-91529000D02* -X56929000Y-88499000D01* -X56889000Y-96895000D02* -X56889000Y-93891000D01* -X56889000Y-91529000D02* -X56889000Y-88525000D01* -X56849000Y-96867000D02* -X56849000Y-93891000D01* -X56849000Y-91529000D02* -X56849000Y-88553000D01* -X56809000Y-96840000D02* -X56809000Y-93891000D01* -X56809000Y-91529000D02* -X56809000Y-88580000D01* -X56769000Y-96811000D02* -X56769000Y-93891000D01* -X56769000Y-91529000D02* -X56769000Y-88609000D01* -X56729000Y-96782000D02* -X56729000Y-93891000D01* -X56729000Y-91529000D02* -X56729000Y-88638000D01* -X56689000Y-96753000D02* -X56689000Y-93891000D01* -X56689000Y-91529000D02* -X56689000Y-88667000D01* -X56649000Y-96723000D02* -X56649000Y-93891000D01* -X56649000Y-91529000D02* -X56649000Y-88697000D01* -X56609000Y-96692000D02* -X56609000Y-93891000D01* -X56609000Y-91529000D02* -X56609000Y-88728000D01* -X56569000Y-96661000D02* -X56569000Y-93891000D01* -X56569000Y-91529000D02* -X56569000Y-88759000D01* -X56529000Y-96629000D02* -X56529000Y-93891000D01* -X56529000Y-91529000D02* -X56529000Y-88791000D01* -X56489000Y-96596000D02* -X56489000Y-93891000D01* -X56489000Y-91529000D02* -X56489000Y-88824000D01* -X56449000Y-96563000D02* -X56449000Y-93891000D01* -X56449000Y-91529000D02* -X56449000Y-88857000D01* -X56409000Y-96529000D02* -X56409000Y-93891000D01* -X56409000Y-91529000D02* -X56409000Y-88891000D01* -X56369000Y-96494000D02* -X56369000Y-93891000D01* -X56369000Y-91529000D02* -X56369000Y-88926000D01* -X56329000Y-96458000D02* -X56329000Y-93891000D01* -X56329000Y-91529000D02* -X56329000Y-88962000D01* -X56289000Y-96422000D02* -X56289000Y-93891000D01* -X56289000Y-91529000D02* -X56289000Y-88998000D01* -X56249000Y-96385000D02* -X56249000Y-93891000D01* -X56249000Y-91529000D02* -X56249000Y-89035000D01* -X56209000Y-96347000D02* -X56209000Y-93891000D01* -X56209000Y-91529000D02* -X56209000Y-89073000D01* -X56169000Y-96308000D02* -X56169000Y-93891000D01* -X56169000Y-91529000D02* -X56169000Y-89112000D01* -X56129000Y-96269000D02* -X56129000Y-93891000D01* -X56129000Y-91529000D02* -X56129000Y-89151000D01* -X56089000Y-96228000D02* -X56089000Y-93891000D01* -X56089000Y-91529000D02* -X56089000Y-89192000D01* -X56049000Y-96187000D02* -X56049000Y-89233000D01* -X56009000Y-96145000D02* -X56009000Y-89275000D01* -X55969000Y-96101000D02* -X55969000Y-89319000D01* -X55929000Y-96057000D02* -X55929000Y-89363000D01* -X55889000Y-96012000D02* -X55889000Y-89408000D01* -X55849000Y-95965000D02* -X55849000Y-89455000D01* -X55809000Y-95917000D02* -X55809000Y-89503000D01* -X55769000Y-95868000D02* -X55769000Y-89552000D01* -X55729000Y-95818000D02* -X55729000Y-89602000D01* -X55689000Y-95767000D02* -X55689000Y-89653000D01* -X55649000Y-95714000D02* -X55649000Y-89706000D01* -X55609000Y-95659000D02* -X55609000Y-89761000D01* -X55569000Y-95604000D02* -X55569000Y-89816000D01* -X55529000Y-95546000D02* -X55529000Y-89874000D01* -X55489000Y-95487000D02* -X55489000Y-89933000D01* -X55449000Y-95425000D02* -X55449000Y-89995000D01* -X55409000Y-95362000D02* -X55409000Y-90058000D01* -X55369000Y-95297000D02* -X55369000Y-90123000D01* -X55329000Y-95229000D02* -X55329000Y-90191000D01* -X55289000Y-95159000D02* -X55289000Y-90261000D01* -X55249000Y-95087000D02* -X55249000Y-90333000D01* -X55209000Y-95011000D02* -X55209000Y-90409000D01* -X55169000Y-94932000D02* -X55169000Y-90488000D01* -X55129000Y-94850000D02* -X55129000Y-90570000D01* -X55089000Y-94763000D02* -X55089000Y-90657000D01* -X55049000Y-94672000D02* -X55049000Y-90748000D01* -X55009000Y-94576000D02* -X55009000Y-90844000D01* -X54969000Y-94473000D02* -X54969000Y-90947000D01* -X54929000Y-94364000D02* -X54929000Y-91056000D01* -X54889000Y-94246000D02* -X54889000Y-91174000D01* -X54849000Y-94117000D02* -X54849000Y-91303000D01* -X54809000Y-93975000D02* -X54809000Y-91445000D01* -X54769000Y-93814000D02* -X54769000Y-91606000D01* -X54729000Y-93623000D02* -X54729000Y-91797000D01* -X54689000Y-93382000D02* -X54689000Y-92038000D01* -X54649000Y-92989000D02* -X54649000Y-92431000D01* -X64930000Y-92710000D02* -X63430000Y-92710000D01* -X64180000Y-93460000D02* -X64180000Y-91960000D01* -X41310000Y-102275000D02* -X41310000Y-99655000D01* -X41310000Y-99655000D02* -X34890000Y-99655000D01* -X34890000Y-99655000D02* -X34890000Y-102275000D01* -X34890000Y-102275000D02* -X41310000Y-102275000D01* -X42200000Y-100965000D02* -X41310000Y-100965000D01* -X34000000Y-100965000D02* -X34890000Y-100965000D01* -X55210000Y-109815000D02* -X55210000Y-112435000D01* -X55210000Y-112435000D02* -X61630000Y-112435000D01* -X61630000Y-112435000D02* -X61630000Y-109815000D01* -X61630000Y-109815000D02* -X55210000Y-109815000D01* -X54320000Y-111125000D02* -X55210000Y-111125000D01* -X62520000Y-111125000D02* -X61630000Y-111125000D01* -X61630000Y-121325000D02* -X61630000Y-118705000D01* -X61630000Y-118705000D02* -X55210000Y-118705000D01* -X55210000Y-118705000D02* -X55210000Y-121325000D01* -X55210000Y-121325000D02* -X61630000Y-121325000D01* -X62520000Y-120015000D02* -X61630000Y-120015000D01* -X54320000Y-120015000D02* -X55210000Y-120015000D01* -X61630000Y-130215000D02* -X61630000Y-127595000D01* -X61630000Y-127595000D02* -X55210000Y-127595000D01* -X55210000Y-127595000D02* -X55210000Y-130215000D01* -X55210000Y-130215000D02* -X61630000Y-130215000D01* -X62520000Y-128905000D02* -X61630000Y-128905000D01* -X54320000Y-128905000D02* -X55210000Y-128905000D01* -X61630000Y-125770000D02* -X61630000Y-123150000D01* -X61630000Y-123150000D02* -X55210000Y-123150000D01* -X55210000Y-123150000D02* -X55210000Y-125770000D01* -X55210000Y-125770000D02* -X61630000Y-125770000D01* -X62520000Y-124460000D02* -X61630000Y-124460000D01* -X54320000Y-124460000D02* -X55210000Y-124460000D01* -X61000000Y-76800000D02* -X58380000Y-76800000D01* -X58380000Y-76800000D02* -X58380000Y-83220000D01* -X58380000Y-83220000D02* -X61000000Y-83220000D01* -X61000000Y-83220000D02* -X61000000Y-76800000D01* -X59690000Y-75910000D02* -X59690000Y-76800000D01* -X59690000Y-84110000D02* -X59690000Y-83220000D01* -X36790000Y-83220000D02* -X39410000Y-83220000D01* -X39410000Y-83220000D02* -X39410000Y-76800000D01* -X39410000Y-76800000D02* -X36790000Y-76800000D01* -X36790000Y-76800000D02* -X36790000Y-83220000D01* -X38100000Y-84110000D02* -X38100000Y-83220000D01* -X38100000Y-75910000D02* -X38100000Y-76800000D01* -X61630000Y-107990000D02* -X61630000Y-105370000D01* -X61630000Y-105370000D02* -X55210000Y-105370000D01* -X55210000Y-105370000D02* -X55210000Y-107990000D01* -X55210000Y-107990000D02* -X61630000Y-107990000D01* -X62520000Y-106680000D02* -X61630000Y-106680000D01* -X54320000Y-106680000D02* -X55210000Y-106680000D01* -X33420000Y-151135000D02* -X34680000Y-151135000D01* -X40240000Y-151135000D02* -X38980000Y-151135000D01* -X33420000Y-147375000D02* -X33420000Y-151135000D01* -X40240000Y-145125000D02* -X40240000Y-151135000D01* -X44390000Y-116900000D02* -X47050000Y-116900000D01* -X44390000Y-114300000D02* -X44390000Y-116900000D01* -X47050000Y-114300000D02* -X47050000Y-116900000D01* -X44390000Y-114300000D02* -X47050000Y-114300000D01* -X44390000Y-113030000D02* -X44390000Y-111700000D01* -X44390000Y-111700000D02* -X45720000Y-111700000D01* -X48200000Y-116900000D02* -X50860000Y-116900000D01* -X48200000Y-114300000D02* -X48200000Y-116900000D01* -X50860000Y-114300000D02* -X50860000Y-116900000D01* -X48200000Y-114300000D02* -X50860000Y-114300000D01* -X48200000Y-113030000D02* -X48200000Y-111700000D01* -X48200000Y-111700000D02* -X49530000Y-111700000D01* -D12* -X63246000Y-141351000D02* -X63246000Y-140589000D01* -X63246000Y-140589000D02* -X47244000Y-140589000D01* -X47244000Y-140589000D02* -X47244000Y-141351000D01* -D10* -X34000000Y-104140000D02* -X34890000Y-104140000D01* -X42200000Y-104140000D02* -X41310000Y-104140000D01* -X34890000Y-105450000D02* -X41310000Y-105450000D01* -X34890000Y-102830000D02* -X34890000Y-105450000D01* -X41310000Y-102830000D02* -X34890000Y-102830000D01* -X41310000Y-105450000D02* -X41310000Y-102830000D01* -X40424184Y-110977795D02* -G75* -G02X39900000Y-111705000I-2324184J1122795D01* -G01* -X40456400Y-108756193D02* -G75* -G03X38100000Y-107255000I-2356400J-1098807D01* -G01* -X35743600Y-108756193D02* -G75* -G02X38100000Y-107255000I2356400J-1098807D01* -G01* -X35775816Y-110977795D02* -G75* -G03X36300000Y-111705000I2324184J1122795D01* -G01* -X36300000Y-111705000D02* -X39900000Y-111705000D01* -X55535000Y-137065000D02* -X55535000Y-133445000D01* -X62655000Y-137065000D02* -X62655000Y-133445000D01* -X62655000Y-133445000D02* -X55535000Y-133445000D01* -X62655000Y-137065000D02* -X55535000Y-137065000D01* -X33610000Y-137045000D02* -X33610000Y-138545000D01* -X32860000Y-137795000D02* -X34360000Y-137795000D01* -X43141000Y-137516000D02* -X43141000Y-138074000D01* -X43101000Y-137123000D02* -X43101000Y-138467000D01* -X43061000Y-136882000D02* -X43061000Y-138708000D01* -X43021000Y-136691000D02* -X43021000Y-138899000D01* -X42981000Y-136530000D02* -X42981000Y-139060000D01* -X42941000Y-136388000D02* -X42941000Y-139202000D01* -X42901000Y-136259000D02* -X42901000Y-139331000D01* -X42861000Y-136141000D02* -X42861000Y-139449000D01* -X42821000Y-136032000D02* -X42821000Y-139558000D01* -X42781000Y-135929000D02* -X42781000Y-139661000D01* -X42741000Y-135833000D02* -X42741000Y-139757000D01* -X42701000Y-135742000D02* -X42701000Y-139848000D01* -X42661000Y-135655000D02* -X42661000Y-139935000D01* -X42621000Y-135573000D02* -X42621000Y-140017000D01* -X42581000Y-135494000D02* -X42581000Y-140096000D01* -X42541000Y-135418000D02* -X42541000Y-140172000D01* -X42501000Y-135346000D02* -X42501000Y-140244000D01* -X42461000Y-135276000D02* -X42461000Y-140314000D01* -X42421000Y-135208000D02* -X42421000Y-140382000D01* -X42381000Y-135143000D02* -X42381000Y-140447000D01* -X42341000Y-135080000D02* -X42341000Y-140510000D01* -X42301000Y-135018000D02* -X42301000Y-140572000D01* -X42261000Y-134959000D02* -X42261000Y-140631000D01* -X42221000Y-134901000D02* -X42221000Y-140689000D01* -X42181000Y-134846000D02* -X42181000Y-140744000D01* -X42141000Y-134791000D02* -X42141000Y-140799000D01* -X42101000Y-134738000D02* -X42101000Y-140852000D01* -X42061000Y-134687000D02* -X42061000Y-140903000D01* -X42021000Y-134637000D02* -X42021000Y-140953000D01* -X41981000Y-134588000D02* -X41981000Y-141002000D01* -X41941000Y-134540000D02* -X41941000Y-141050000D01* -X41901000Y-134493000D02* -X41901000Y-141097000D01* -X41861000Y-134448000D02* -X41861000Y-141142000D01* -X41821000Y-134404000D02* -X41821000Y-141186000D01* -X41781000Y-134360000D02* -X41781000Y-141230000D01* -X41741000Y-134318000D02* -X41741000Y-141272000D01* -X41701000Y-138976000D02* -X41701000Y-141313000D01* -X41701000Y-134277000D02* -X41701000Y-136614000D01* -X41661000Y-138976000D02* -X41661000Y-141354000D01* -X41661000Y-134236000D02* -X41661000Y-136614000D01* -X41621000Y-138976000D02* -X41621000Y-141393000D01* -X41621000Y-134197000D02* -X41621000Y-136614000D01* -X41581000Y-138976000D02* -X41581000Y-141432000D01* -X41581000Y-134158000D02* -X41581000Y-136614000D01* -X41541000Y-138976000D02* -X41541000Y-141470000D01* -X41541000Y-134120000D02* -X41541000Y-136614000D01* -X41501000Y-138976000D02* -X41501000Y-141507000D01* -X41501000Y-134083000D02* -X41501000Y-136614000D01* -X41461000Y-138976000D02* -X41461000Y-141543000D01* -X41461000Y-134047000D02* -X41461000Y-136614000D01* -X41421000Y-138976000D02* -X41421000Y-141579000D01* -X41421000Y-134011000D02* -X41421000Y-136614000D01* -X41381000Y-138976000D02* -X41381000Y-141614000D01* -X41381000Y-133976000D02* -X41381000Y-136614000D01* -X41341000Y-138976000D02* -X41341000Y-141648000D01* -X41341000Y-133942000D02* -X41341000Y-136614000D01* -X41301000Y-138976000D02* -X41301000Y-141681000D01* -X41301000Y-133909000D02* -X41301000Y-136614000D01* -X41261000Y-138976000D02* -X41261000Y-141714000D01* -X41261000Y-133876000D02* -X41261000Y-136614000D01* -X41221000Y-138976000D02* -X41221000Y-141746000D01* -X41221000Y-133844000D02* -X41221000Y-136614000D01* -X41181000Y-138976000D02* -X41181000Y-141777000D01* -X41181000Y-133813000D02* -X41181000Y-136614000D01* -X41141000Y-138976000D02* -X41141000Y-141808000D01* -X41141000Y-133782000D02* -X41141000Y-136614000D01* -X41101000Y-138976000D02* -X41101000Y-141838000D01* -X41101000Y-133752000D02* -X41101000Y-136614000D01* -X41061000Y-138976000D02* -X41061000Y-141867000D01* -X41061000Y-133723000D02* -X41061000Y-136614000D01* -X41021000Y-138976000D02* -X41021000Y-141896000D01* -X41021000Y-133694000D02* -X41021000Y-136614000D01* -X40981000Y-138976000D02* -X40981000Y-141925000D01* -X40981000Y-133665000D02* -X40981000Y-136614000D01* -X40941000Y-138976000D02* -X40941000Y-141952000D01* -X40941000Y-133638000D02* -X40941000Y-136614000D01* -X40901000Y-138976000D02* -X40901000Y-141980000D01* -X40901000Y-133610000D02* -X40901000Y-136614000D01* -X40861000Y-138976000D02* -X40861000Y-142006000D01* -X40861000Y-133584000D02* -X40861000Y-136614000D01* -X40821000Y-138976000D02* -X40821000Y-142032000D01* -X40821000Y-133558000D02* -X40821000Y-136614000D01* -X40781000Y-138976000D02* -X40781000Y-142058000D01* -X40781000Y-133532000D02* -X40781000Y-136614000D01* -X40741000Y-138976000D02* -X40741000Y-142083000D01* -X40741000Y-133507000D02* -X40741000Y-136614000D01* -X40701000Y-138976000D02* -X40701000Y-142107000D01* -X40701000Y-133483000D02* -X40701000Y-136614000D01* -X40661000Y-138976000D02* -X40661000Y-142131000D01* -X40661000Y-133459000D02* -X40661000Y-136614000D01* -X40621000Y-138976000D02* -X40621000Y-142155000D01* -X40621000Y-133435000D02* -X40621000Y-136614000D01* -X40581000Y-138976000D02* -X40581000Y-142178000D01* -X40581000Y-133412000D02* -X40581000Y-136614000D01* -X40541000Y-138976000D02* -X40541000Y-142200000D01* -X40541000Y-133390000D02* -X40541000Y-136614000D01* -X40501000Y-138976000D02* -X40501000Y-142223000D01* -X40501000Y-133367000D02* -X40501000Y-136614000D01* -X40461000Y-138976000D02* -X40461000Y-142244000D01* -X40461000Y-133346000D02* -X40461000Y-136614000D01* -X40421000Y-138976000D02* -X40421000Y-142265000D01* -X40421000Y-133325000D02* -X40421000Y-136614000D01* -X40381000Y-138976000D02* -X40381000Y-142286000D01* -X40381000Y-133304000D02* -X40381000Y-136614000D01* -X40341000Y-138976000D02* -X40341000Y-142306000D01* -X40341000Y-133284000D02* -X40341000Y-136614000D01* -X40301000Y-138976000D02* -X40301000Y-142326000D01* -X40301000Y-133264000D02* -X40301000Y-136614000D01* -X40261000Y-138976000D02* -X40261000Y-142345000D01* -X40261000Y-133245000D02* -X40261000Y-136614000D01* -X40221000Y-138976000D02* -X40221000Y-142364000D01* -X40221000Y-133226000D02* -X40221000Y-136614000D01* -X40181000Y-138976000D02* -X40181000Y-142383000D01* -X40181000Y-133207000D02* -X40181000Y-136614000D01* -X40141000Y-138976000D02* -X40141000Y-142401000D01* -X40141000Y-133189000D02* -X40141000Y-136614000D01* -X40101000Y-138976000D02* -X40101000Y-142419000D01* -X40101000Y-133171000D02* -X40101000Y-136614000D01* -X40061000Y-138976000D02* -X40061000Y-142436000D01* -X40061000Y-133154000D02* -X40061000Y-136614000D01* -X40021000Y-138976000D02* -X40021000Y-142453000D01* -X40021000Y-133137000D02* -X40021000Y-136614000D01* -X39981000Y-138976000D02* -X39981000Y-142469000D01* -X39981000Y-133121000D02* -X39981000Y-136614000D01* -X39941000Y-138976000D02* -X39941000Y-142486000D01* -X39941000Y-133104000D02* -X39941000Y-136614000D01* -X39901000Y-138976000D02* -X39901000Y-142501000D01* -X39901000Y-133089000D02* -X39901000Y-136614000D01* -X39861000Y-138976000D02* -X39861000Y-142517000D01* -X39861000Y-133073000D02* -X39861000Y-136614000D01* -X39821000Y-138976000D02* -X39821000Y-142532000D01* -X39821000Y-133058000D02* -X39821000Y-136614000D01* -X39781000Y-138976000D02* -X39781000Y-142546000D01* -X39781000Y-133044000D02* -X39781000Y-136614000D01* -X39741000Y-138976000D02* -X39741000Y-142560000D01* -X39741000Y-133030000D02* -X39741000Y-136614000D01* -X39701000Y-138976000D02* -X39701000Y-142574000D01* -X39701000Y-133016000D02* -X39701000Y-136614000D01* -X39661000Y-138976000D02* -X39661000Y-142587000D01* -X39661000Y-133003000D02* -X39661000Y-136614000D01* -X39621000Y-138976000D02* -X39621000Y-142601000D01* -X39621000Y-132989000D02* -X39621000Y-136614000D01* -X39581000Y-138976000D02* -X39581000Y-142613000D01* -X39581000Y-132977000D02* -X39581000Y-136614000D01* -X39541000Y-138976000D02* -X39541000Y-142626000D01* -X39541000Y-132964000D02* -X39541000Y-136614000D01* -X39501000Y-138976000D02* -X39501000Y-142638000D01* -X39501000Y-132952000D02* -X39501000Y-136614000D01* -X39461000Y-138976000D02* -X39461000Y-142649000D01* -X39461000Y-132941000D02* -X39461000Y-136614000D01* -X39421000Y-138976000D02* -X39421000Y-142660000D01* -X39421000Y-132930000D02* -X39421000Y-136614000D01* -X39381000Y-138976000D02* -X39381000Y-142671000D01* -X39381000Y-132919000D02* -X39381000Y-136614000D01* -X39341000Y-132908000D02* -X39341000Y-142682000D01* -X39301000Y-132898000D02* -X39301000Y-142692000D01* -X39261000Y-132888000D02* -X39261000Y-142702000D01* -X39221000Y-132878000D02* -X39221000Y-142712000D01* -X39181000Y-132869000D02* -X39181000Y-142721000D01* -X39141000Y-132860000D02* -X39141000Y-142730000D01* -X39101000Y-132852000D02* -X39101000Y-142738000D01* -X39061000Y-132844000D02* -X39061000Y-142746000D01* -X39021000Y-132836000D02* -X39021000Y-142754000D01* -X38981000Y-132828000D02* -X38981000Y-142762000D01* -X38941000Y-132821000D02* -X38941000Y-142769000D01* -X38901000Y-132814000D02* -X38901000Y-142776000D01* -X38861000Y-132808000D02* -X38861000Y-142782000D01* -X38821000Y-132802000D02* -X38821000Y-142788000D01* -X38781000Y-132796000D02* -X38781000Y-142794000D01* -X38740000Y-132790000D02* -X38740000Y-142800000D01* -X38700000Y-132785000D02* -X38700000Y-142805000D01* -X38660000Y-132780000D02* -X38660000Y-142810000D01* -X38620000Y-132775000D02* -X38620000Y-142815000D01* -X38580000Y-132771000D02* -X38580000Y-142819000D01* -X38540000Y-132767000D02* -X38540000Y-142823000D01* -X38500000Y-132764000D02* -X38500000Y-142826000D01* -X38460000Y-132760000D02* -X38460000Y-142830000D01* -X38420000Y-132757000D02* -X38420000Y-142833000D01* -X38380000Y-132755000D02* -X38380000Y-142835000D01* -X38340000Y-132752000D02* -X38340000Y-142838000D01* -X38300000Y-132750000D02* -X38300000Y-142840000D01* -X38260000Y-132748000D02* -X38260000Y-142842000D01* -X38220000Y-132747000D02* -X38220000Y-142843000D01* -X38180000Y-132746000D02* -X38180000Y-142844000D01* -X38140000Y-132745000D02* -X38140000Y-142845000D01* -X38100000Y-132745000D02* -X38100000Y-142845000D01* -X38060000Y-132745000D02* -X38060000Y-142845000D01* -X42958437Y-139178264D02* -G75* -G03X42959357Y-136415000I-4898437J1383264D01* -G01* -X42958437Y-139178264D02* -G75* -G02X33160643Y-139175000I-4898437J1383264D01* -G01* -X42958437Y-136411736D02* -G75* -G03X33160643Y-136415000I-4898437J-1383264D01* -G01* -X45660000Y-120590000D02* -X46990000Y-120590000D01* -X45660000Y-121920000D02* -X45660000Y-120590000D01* -X45660000Y-123190000D02* -X48320000Y-123190000D01* -X48320000Y-123190000D02* -X48320000Y-135950000D01* -X45660000Y-123190000D02* -X45660000Y-135950000D01* -X45660000Y-135950000D02* -X48320000Y-135950000D01* -X38560000Y-114535000D02* -X37060000Y-114535000D01* -X34560000Y-115785000D02* -X34560000Y-120285000D01* -X37060000Y-121535000D02* -X38560000Y-121535000D01* -X41060000Y-120285000D02* -X41060000Y-115785000D01* -X41060000Y-129960000D02* -X41060000Y-125460000D01* -X37060000Y-131210000D02* -X38560000Y-131210000D01* -X34560000Y-125460000D02* -X34560000Y-129960000D01* -X38560000Y-124210000D02* -X37060000Y-124210000D01* -D11* -X51307619Y-89630238D02* -X51260000Y-89725476D01* -X51164761Y-89820714D01* -X51021904Y-89963571D01* -X50974285Y-90058809D01* -X50974285Y-90154047D01* -X51212380Y-90106428D02* -X51164761Y-90201666D01* -X51069523Y-90296904D01* -X50879047Y-90344523D01* -X50545714Y-90344523D01* -X50355238Y-90296904D01* -X50260000Y-90201666D01* -X50212380Y-90106428D01* -X50212380Y-89915952D01* -X50260000Y-89820714D01* -X50355238Y-89725476D01* -X50545714Y-89677857D01* -X50879047Y-89677857D01* -X51069523Y-89725476D01* -X51164761Y-89820714D01* -X51212380Y-89915952D01* -X51212380Y-90106428D01* -X51212380Y-88725476D02* -X51212380Y-89296904D01* -X51212380Y-89011190D02* -X50212380Y-89011190D01* -X50355238Y-89106428D01* -X50450476Y-89201666D01* -X50498095Y-89296904D01* -X58253333Y-100782380D02* -X57920000Y-100306190D01* -X57681904Y-100782380D02* -X57681904Y-99782380D01* -X58062857Y-99782380D01* -X58158095Y-99830000D01* -X58205714Y-99877619D01* -X58253333Y-99972857D01* -X58253333Y-100115714D01* -X58205714Y-100210952D01* -X58158095Y-100258571D01* -X58062857Y-100306190D01* -X57681904Y-100306190D01* -X58634285Y-99877619D02* -X58681904Y-99830000D01* -X58777142Y-99782380D01* -X59015238Y-99782380D01* -X59110476Y-99830000D01* -X59158095Y-99877619D01* -X59205714Y-99972857D01* -X59205714Y-100068095D01* -X59158095Y-100210952D01* -X58586666Y-100782380D01* -X59205714Y-100782380D01* -X58253333Y-114117380D02* -X57920000Y-113641190D01* -X57681904Y-114117380D02* -X57681904Y-113117380D01* -X58062857Y-113117380D01* -X58158095Y-113165000D01* -X58205714Y-113212619D01* -X58253333Y-113307857D01* -X58253333Y-113450714D01* -X58205714Y-113545952D01* -X58158095Y-113593571D01* -X58062857Y-113641190D01* -X57681904Y-113641190D01* -X59110476Y-113117380D02* -X58920000Y-113117380D01* -X58824761Y-113165000D01* -X58777142Y-113212619D01* -X58681904Y-113355476D01* -X58634285Y-113545952D01* -X58634285Y-113926904D01* -X58681904Y-114022142D01* -X58729523Y-114069761D01* -X58824761Y-114117380D01* -X59015238Y-114117380D01* -X59110476Y-114069761D01* -X59158095Y-114022142D01* -X59205714Y-113926904D01* -X59205714Y-113688809D01* -X59158095Y-113593571D01* -X59110476Y-113545952D01* -X59015238Y-113498333D01* -X58824761Y-113498333D01* -X58729523Y-113545952D01* -X58681904Y-113593571D01* -X58634285Y-113688809D01* -X48306666Y-70822380D02* -X48306666Y-71536666D01* -X48259047Y-71679523D01* -X48163809Y-71774761D01* -X48020952Y-71822380D01* -X47925714Y-71822380D01* -X49306666Y-71822380D02* -X48735238Y-71822380D01* -X49020952Y-71822380D02* -X49020952Y-70822380D01* -X48925714Y-70965238D01* -X48830476Y-71060476D01* -X48735238Y-71108095D01* -X42211666Y-164552380D02* -X42211666Y-165266666D01* -X42164047Y-165409523D01* -X42068809Y-165504761D01* -X41925952Y-165552380D01* -X41830714Y-165552380D01* -X42640238Y-164647619D02* -X42687857Y-164600000D01* -X42783095Y-164552380D01* -X43021190Y-164552380D01* -X43116428Y-164600000D01* -X43164047Y-164647619D01* -X43211666Y-164742857D01* -X43211666Y-164838095D01* -X43164047Y-164980952D01* -X42592619Y-165552380D01* -X43211666Y-165552380D01* -X47498095Y-96322380D02* -X47498095Y-97131904D01* -X47545714Y-97227142D01* -X47593333Y-97274761D01* -X47688571Y-97322380D01* -X47879047Y-97322380D01* -X47974285Y-97274761D01* -X48021904Y-97227142D01* -X48069523Y-97131904D01* -X48069523Y-96322380D01* -X49069523Y-97322380D02* -X48498095Y-97322380D01* -X48783809Y-97322380D02* -X48783809Y-96322380D01* -X48688571Y-96465238D01* -X48593333Y-96560476D01* -X48498095Y-96608095D01* -X33488333Y-98147142D02* -X33440714Y-98194761D01* -X33297857Y-98242380D01* -X33202619Y-98242380D01* -X33059761Y-98194761D01* -X32964523Y-98099523D01* -X32916904Y-98004285D01* -X32869285Y-97813809D01* -X32869285Y-97670952D01* -X32916904Y-97480476D01* -X32964523Y-97385238D01* -X33059761Y-97290000D01* -X33202619Y-97242380D01* -X33297857Y-97242380D01* -X33440714Y-97290000D01* -X33488333Y-97337619D01* -X34440714Y-98242380D02* -X33869285Y-98242380D01* -X34155000Y-98242380D02* -X34155000Y-97242380D01* -X34059761Y-97385238D01* -X33964523Y-97480476D01* -X33869285Y-97528095D01* -X52538333Y-96242142D02* -X52490714Y-96289761D01* -X52347857Y-96337380D01* -X52252619Y-96337380D01* -X52109761Y-96289761D01* -X52014523Y-96194523D01* -X51966904Y-96099285D01* -X51919285Y-95908809D01* -X51919285Y-95765952D01* -X51966904Y-95575476D01* -X52014523Y-95480238D01* -X52109761Y-95385000D01* -X52252619Y-95337380D01* -X52347857Y-95337380D01* -X52490714Y-95385000D01* -X52538333Y-95432619D01* -X52919285Y-95432619D02* -X52966904Y-95385000D01* -X53062142Y-95337380D01* -X53300238Y-95337380D01* -X53395476Y-95385000D01* -X53443095Y-95432619D01* -X53490714Y-95527857D01* -X53490714Y-95623095D01* -X53443095Y-95765952D01* -X52871666Y-96337380D01* -X53490714Y-96337380D01* -X41743333Y-156567142D02* -X41695714Y-156614761D01* -X41552857Y-156662380D01* -X41457619Y-156662380D01* -X41314761Y-156614761D01* -X41219523Y-156519523D01* -X41171904Y-156424285D01* -X41124285Y-156233809D01* -X41124285Y-156090952D01* -X41171904Y-155900476D01* -X41219523Y-155805238D01* -X41314761Y-155710000D01* -X41457619Y-155662380D01* -X41552857Y-155662380D01* -X41695714Y-155710000D01* -X41743333Y-155757619D01* -X42076666Y-155662380D02* -X42695714Y-155662380D01* -X42362380Y-156043333D01* -X42505238Y-156043333D01* -X42600476Y-156090952D01* -X42648095Y-156138571D01* -X42695714Y-156233809D01* -X42695714Y-156471904D01* -X42648095Y-156567142D01* -X42600476Y-156614761D01* -X42505238Y-156662380D01* -X42219523Y-156662380D01* -X42124285Y-156614761D01* -X42076666Y-156567142D01* -X63333333Y-98147142D02* -X63285714Y-98194761D01* -X63142857Y-98242380D01* -X63047619Y-98242380D01* -X62904761Y-98194761D01* -X62809523Y-98099523D01* -X62761904Y-98004285D01* -X62714285Y-97813809D01* -X62714285Y-97670952D01* -X62761904Y-97480476D01* -X62809523Y-97385238D01* -X62904761Y-97290000D01* -X63047619Y-97242380D01* -X63142857Y-97242380D01* -X63285714Y-97290000D01* -X63333333Y-97337619D01* -X64238095Y-97242380D02* -X63761904Y-97242380D01* -X63714285Y-97718571D01* -X63761904Y-97670952D01* -X63857142Y-97623333D01* -X64095238Y-97623333D01* -X64190476Y-97670952D01* -X64238095Y-97718571D01* -X64285714Y-97813809D01* -X64285714Y-98051904D01* -X64238095Y-98147142D01* -X64190476Y-98194761D01* -X64095238Y-98242380D01* -X63857142Y-98242380D01* -X63761904Y-98194761D01* -X63714285Y-98147142D01* -X37933333Y-99512380D02* -X37600000Y-99036190D01* -X37361904Y-99512380D02* -X37361904Y-98512380D01* -X37742857Y-98512380D01* -X37838095Y-98560000D01* -X37885714Y-98607619D01* -X37933333Y-98702857D01* -X37933333Y-98845714D01* -X37885714Y-98940952D01* -X37838095Y-98988571D01* -X37742857Y-99036190D01* -X37361904Y-99036190D01* -X38885714Y-99512380D02* -X38314285Y-99512380D01* -X38600000Y-99512380D02* -X38600000Y-98512380D01* -X38504761Y-98655238D01* -X38409523Y-98750476D01* -X38314285Y-98798095D01* -X58253333Y-109672380D02* -X57920000Y-109196190D01* -X57681904Y-109672380D02* -X57681904Y-108672380D01* -X58062857Y-108672380D01* -X58158095Y-108720000D01* -X58205714Y-108767619D01* -X58253333Y-108862857D01* -X58253333Y-109005714D01* -X58205714Y-109100952D01* -X58158095Y-109148571D01* -X58062857Y-109196190D01* -X57681904Y-109196190D01* -X58586666Y-108672380D02* -X59205714Y-108672380D01* -X58872380Y-109053333D01* -X59015238Y-109053333D01* -X59110476Y-109100952D01* -X59158095Y-109148571D01* -X59205714Y-109243809D01* -X59205714Y-109481904D01* -X59158095Y-109577142D01* -X59110476Y-109624761D01* -X59015238Y-109672380D01* -X58729523Y-109672380D01* -X58634285Y-109624761D01* -X58586666Y-109577142D01* -X58253333Y-118562380D02* -X57920000Y-118086190D01* -X57681904Y-118562380D02* -X57681904Y-117562380D01* -X58062857Y-117562380D01* -X58158095Y-117610000D01* -X58205714Y-117657619D01* -X58253333Y-117752857D01* -X58253333Y-117895714D01* -X58205714Y-117990952D01* -X58158095Y-118038571D01* -X58062857Y-118086190D01* -X57681904Y-118086190D01* -X59110476Y-117895714D02* -X59110476Y-118562380D01* -X58872380Y-117514761D02* -X58634285Y-118229047D01* -X59253333Y-118229047D01* -X58253333Y-127452380D02* -X57920000Y-126976190D01* -X57681904Y-127452380D02* -X57681904Y-126452380D01* -X58062857Y-126452380D01* -X58158095Y-126500000D01* -X58205714Y-126547619D01* -X58253333Y-126642857D01* -X58253333Y-126785714D01* -X58205714Y-126880952D01* -X58158095Y-126928571D01* -X58062857Y-126976190D01* -X57681904Y-126976190D01* -X59158095Y-126452380D02* -X58681904Y-126452380D01* -X58634285Y-126928571D01* -X58681904Y-126880952D01* -X58777142Y-126833333D01* -X59015238Y-126833333D01* -X59110476Y-126880952D01* -X59158095Y-126928571D01* -X59205714Y-127023809D01* -X59205714Y-127261904D01* -X59158095Y-127357142D01* -X59110476Y-127404761D01* -X59015238Y-127452380D01* -X58777142Y-127452380D01* -X58681904Y-127404761D01* -X58634285Y-127357142D01* -X58253333Y-123007380D02* -X57920000Y-122531190D01* -X57681904Y-123007380D02* -X57681904Y-122007380D01* -X58062857Y-122007380D01* -X58158095Y-122055000D01* -X58205714Y-122102619D01* -X58253333Y-122197857D01* -X58253333Y-122340714D01* -X58205714Y-122435952D01* -X58158095Y-122483571D01* -X58062857Y-122531190D01* -X57681904Y-122531190D01* -X58586666Y-122007380D02* -X59253333Y-122007380D01* -X58824761Y-123007380D01* -X62452380Y-80176666D02* -X61976190Y-80510000D01* -X62452380Y-80748095D02* -X61452380Y-80748095D01* -X61452380Y-80367142D01* -X61500000Y-80271904D01* -X61547619Y-80224285D01* -X61642857Y-80176666D01* -X61785714Y-80176666D01* -X61880952Y-80224285D01* -X61928571Y-80271904D01* -X61976190Y-80367142D01* -X61976190Y-80748095D01* -X61880952Y-79605238D02* -X61833333Y-79700476D01* -X61785714Y-79748095D01* -X61690476Y-79795714D01* -X61642857Y-79795714D01* -X61547619Y-79748095D01* -X61500000Y-79700476D01* -X61452380Y-79605238D01* -X61452380Y-79414761D01* -X61500000Y-79319523D01* -X61547619Y-79271904D01* -X61642857Y-79224285D01* -X61690476Y-79224285D01* -X61785714Y-79271904D01* -X61833333Y-79319523D01* -X61880952Y-79414761D01* -X61880952Y-79605238D01* -X61928571Y-79700476D01* -X61976190Y-79748095D01* -X62071428Y-79795714D01* -X62261904Y-79795714D01* -X62357142Y-79748095D01* -X62404761Y-79700476D01* -X62452380Y-79605238D01* -X62452380Y-79414761D01* -X62404761Y-79319523D01* -X62357142Y-79271904D01* -X62261904Y-79224285D01* -X62071428Y-79224285D01* -X61976190Y-79271904D01* -X61928571Y-79319523D01* -X61880952Y-79414761D01* -X36242380Y-80176666D02* -X35766190Y-80510000D01* -X36242380Y-80748095D02* -X35242380Y-80748095D01* -X35242380Y-80367142D01* -X35290000Y-80271904D01* -X35337619Y-80224285D01* -X35432857Y-80176666D01* -X35575714Y-80176666D01* -X35670952Y-80224285D01* -X35718571Y-80271904D01* -X35766190Y-80367142D01* -X35766190Y-80748095D01* -X36242380Y-79700476D02* -X36242380Y-79510000D01* -X36194761Y-79414761D01* -X36147142Y-79367142D01* -X36004285Y-79271904D01* -X35813809Y-79224285D01* -X35432857Y-79224285D01* -X35337619Y-79271904D01* -X35290000Y-79319523D01* -X35242380Y-79414761D01* -X35242380Y-79605238D01* -X35290000Y-79700476D01* -X35337619Y-79748095D01* -X35432857Y-79795714D01* -X35670952Y-79795714D01* -X35766190Y-79748095D01* -X35813809Y-79700476D01* -X35861428Y-79605238D01* -X35861428Y-79414761D01* -X35813809Y-79319523D01* -X35766190Y-79271904D01* -X35670952Y-79224285D01* -X57777142Y-105227380D02* -X57443809Y-104751190D01* -X57205714Y-105227380D02* -X57205714Y-104227380D01* -X57586666Y-104227380D01* -X57681904Y-104275000D01* -X57729523Y-104322619D01* -X57777142Y-104417857D01* -X57777142Y-104560714D01* -X57729523Y-104655952D01* -X57681904Y-104703571D01* -X57586666Y-104751190D01* -X57205714Y-104751190D01* -X58729523Y-105227380D02* -X58158095Y-105227380D01* -X58443809Y-105227380D02* -X58443809Y-104227380D01* -X58348571Y-104370238D01* -X58253333Y-104465476D01* -X58158095Y-104513095D01* -X59348571Y-104227380D02* -X59443809Y-104227380D01* -X59539047Y-104275000D01* -X59586666Y-104322619D01* -X59634285Y-104417857D01* -X59681904Y-104608333D01* -X59681904Y-104846428D01* -X59634285Y-105036904D01* -X59586666Y-105132142D01* -X59539047Y-105179761D01* -X59443809Y-105227380D01* -X59348571Y-105227380D01* -X59253333Y-105179761D01* -X59205714Y-105132142D01* -X59158095Y-105036904D01* -X59110476Y-104846428D01* -X59110476Y-104608333D01* -X59158095Y-104417857D01* -X59205714Y-104322619D01* -X59253333Y-104275000D01* -X59348571Y-104227380D01* -X39457380Y-153161904D02* -X40266904Y-153161904D01* -X40362142Y-153114285D01* -X40409761Y-153066666D01* -X40457380Y-152971428D01* -X40457380Y-152780952D01* -X40409761Y-152685714D01* -X40362142Y-152638095D01* -X40266904Y-152590476D01* -X39457380Y-152590476D01* -X39457380Y-152209523D02* -X39457380Y-151590476D01* -X39838333Y-151923809D01* -X39838333Y-151780952D01* -X39885952Y-151685714D01* -X39933571Y-151638095D01* -X40028809Y-151590476D01* -X40266904Y-151590476D01* -X40362142Y-151638095D01* -X40409761Y-151685714D01* -X40457380Y-151780952D01* -X40457380Y-152066666D01* -X40409761Y-152161904D01* -X40362142Y-152209523D01* -X44886666Y-110152380D02* -X44886666Y-110866666D01* -X44839047Y-111009523D01* -X44743809Y-111104761D01* -X44600952Y-111152380D01* -X44505714Y-111152380D01* -X45362857Y-111152380D02* -X45362857Y-110152380D01* -X45743809Y-110152380D01* -X45839047Y-110200000D01* -X45886666Y-110247619D01* -X45934285Y-110342857D01* -X45934285Y-110485714D01* -X45886666Y-110580952D01* -X45839047Y-110628571D01* -X45743809Y-110676190D01* -X45362857Y-110676190D01* -X46886666Y-111152380D02* -X46315238Y-111152380D01* -X46600952Y-111152380D02* -X46600952Y-110152380D01* -X46505714Y-110295238D01* -X46410476Y-110390476D01* -X46315238Y-110438095D01* -X48696666Y-110152380D02* -X48696666Y-110866666D01* -X48649047Y-111009523D01* -X48553809Y-111104761D01* -X48410952Y-111152380D01* -X48315714Y-111152380D01* -X49172857Y-111152380D02* -X49172857Y-110152380D01* -X49553809Y-110152380D01* -X49649047Y-110200000D01* -X49696666Y-110247619D01* -X49744285Y-110342857D01* -X49744285Y-110485714D01* -X49696666Y-110580952D01* -X49649047Y-110628571D01* -X49553809Y-110676190D01* -X49172857Y-110676190D01* -X50125238Y-110247619D02* -X50172857Y-110200000D01* -X50268095Y-110152380D01* -X50506190Y-110152380D01* -X50601428Y-110200000D01* -X50649047Y-110247619D01* -X50696666Y-110342857D01* -X50696666Y-110438095D01* -X50649047Y-110580952D01* -X50077619Y-111152380D01* -X50696666Y-111152380D01* -X52792380Y-150621904D02* -X53601904Y-150621904D01* -X53697142Y-150574285D01* -X53744761Y-150526666D01* -X53792380Y-150431428D01* -X53792380Y-150240952D01* -X53744761Y-150145714D01* -X53697142Y-150098095D01* -X53601904Y-150050476D01* -X52792380Y-150050476D01* -X52887619Y-149621904D02* -X52840000Y-149574285D01* -X52792380Y-149479047D01* -X52792380Y-149240952D01* -X52840000Y-149145714D01* -X52887619Y-149098095D01* -X52982857Y-149050476D01* -X53078095Y-149050476D01* -X53220952Y-149098095D01* -X53792380Y-149669523D01* -X53792380Y-149050476D01* -X37457142Y-106497380D02* -X37123809Y-106021190D01* -X36885714Y-106497380D02* -X36885714Y-105497380D01* -X37266666Y-105497380D01* -X37361904Y-105545000D01* -X37409523Y-105592619D01* -X37457142Y-105687857D01* -X37457142Y-105830714D01* -X37409523Y-105925952D01* -X37361904Y-105973571D01* -X37266666Y-106021190D01* -X36885714Y-106021190D01* -X38409523Y-106497380D02* -X37838095Y-106497380D01* -X38123809Y-106497380D02* -X38123809Y-105497380D01* -X38028571Y-105640238D01* -X37933333Y-105735476D01* -X37838095Y-105783095D01* -X39361904Y-106497380D02* -X38790476Y-106497380D01* -X39076190Y-106497380D02* -X39076190Y-105497380D01* -X38980952Y-105640238D01* -X38885714Y-105735476D01* -X38790476Y-105783095D01* -X33107380Y-110616904D02* -X33916904Y-110616904D01* -X34012142Y-110569285D01* -X34059761Y-110521666D01* -X34107380Y-110426428D01* -X34107380Y-110235952D01* -X34059761Y-110140714D01* -X34012142Y-110093095D01* -X33916904Y-110045476D01* -X33107380Y-110045476D01* -X33440714Y-109140714D02* -X34107380Y-109140714D01* -X33059761Y-109378809D02* -X33774047Y-109616904D01* -X33774047Y-108997857D01* -X58928333Y-138672142D02* -X58880714Y-138719761D01* -X58737857Y-138767380D01* -X58642619Y-138767380D01* -X58499761Y-138719761D01* -X58404523Y-138624523D01* -X58356904Y-138529285D01* -X58309285Y-138338809D01* -X58309285Y-138195952D01* -X58356904Y-138005476D01* -X58404523Y-137910238D01* -X58499761Y-137815000D01* -X58642619Y-137767380D01* -X58737857Y-137767380D01* -X58880714Y-137815000D01* -X58928333Y-137862619D01* -X59785476Y-137767380D02* -X59595000Y-137767380D01* -X59499761Y-137815000D01* -X59452142Y-137862619D01* -X59356904Y-138005476D01* -X59309285Y-138195952D01* -X59309285Y-138576904D01* -X59356904Y-138672142D01* -X59404523Y-138719761D01* -X59499761Y-138767380D01* -X59690238Y-138767380D01* -X59785476Y-138719761D01* -X59833095Y-138672142D01* -X59880714Y-138576904D01* -X59880714Y-138338809D01* -X59833095Y-138243571D01* -X59785476Y-138195952D01* -X59690238Y-138148333D01* -X59499761Y-138148333D01* -X59404523Y-138195952D01* -X59356904Y-138243571D01* -X59309285Y-138338809D01* -X37893333Y-131842142D02* -X37845714Y-131889761D01* -X37702857Y-131937380D01* -X37607619Y-131937380D01* -X37464761Y-131889761D01* -X37369523Y-131794523D01* -X37321904Y-131699285D01* -X37274285Y-131508809D01* -X37274285Y-131365952D01* -X37321904Y-131175476D01* -X37369523Y-131080238D01* -X37464761Y-130985000D01* -X37607619Y-130937380D01* -X37702857Y-130937380D01* -X37845714Y-130985000D01* -X37893333Y-131032619D01* -X38750476Y-131270714D02* -X38750476Y-131937380D01* -X38512380Y-130889761D02* -X38274285Y-131604047D01* -X38893333Y-131604047D01* -X46656666Y-119042380D02* -X46656666Y-119756666D01* -X46609047Y-119899523D01* -X46513809Y-119994761D01* -X46370952Y-120042380D01* -X46275714Y-120042380D01* -X47037619Y-119042380D02* -X47656666Y-119042380D01* -X47323333Y-119423333D01* -X47466190Y-119423333D01* -X47561428Y-119470952D01* -X47609047Y-119518571D01* -X47656666Y-119613809D01* -X47656666Y-119851904D01* -X47609047Y-119947142D01* -X47561428Y-119994761D01* -X47466190Y-120042380D01* -X47180476Y-120042380D01* -X47085238Y-119994761D01* -X47037619Y-119947142D01* -X33964761Y-119368333D02* -X34012380Y-119225476D01* -X34012380Y-118987380D01* -X33964761Y-118892142D01* -X33917142Y-118844523D01* -X33821904Y-118796904D01* -X33726666Y-118796904D01* -X33631428Y-118844523D01* -X33583809Y-118892142D01* -X33536190Y-118987380D01* -X33488571Y-119177857D01* -X33440952Y-119273095D01* -X33393333Y-119320714D01* -X33298095Y-119368333D01* -X33202857Y-119368333D01* -X33107619Y-119320714D01* -X33060000Y-119273095D01* -X33012380Y-119177857D01* -X33012380Y-118939761D01* -X33060000Y-118796904D01* -X33012380Y-118463571D02* -X34012380Y-118225476D01* -X33298095Y-118035000D01* -X34012380Y-117844523D01* -X33012380Y-117606428D01* -X34012380Y-116701666D02* -X34012380Y-117273095D01* -X34012380Y-116987380D02* -X33012380Y-116987380D01* -X33155238Y-117082619D01* -X33250476Y-117177857D01* -X33298095Y-117273095D01* -X33964761Y-129043333D02* -X34012380Y-128900476D01* -X34012380Y-128662380D01* -X33964761Y-128567142D01* -X33917142Y-128519523D01* -X33821904Y-128471904D01* -X33726666Y-128471904D01* -X33631428Y-128519523D01* -X33583809Y-128567142D01* -X33536190Y-128662380D01* -X33488571Y-128852857D01* -X33440952Y-128948095D01* -X33393333Y-128995714D01* -X33298095Y-129043333D01* -X33202857Y-129043333D01* -X33107619Y-128995714D01* -X33060000Y-128948095D01* -X33012380Y-128852857D01* -X33012380Y-128614761D01* -X33060000Y-128471904D01* -X33012380Y-128138571D02* -X34012380Y-127900476D01* -X33298095Y-127710000D01* -X34012380Y-127519523D01* -X33012380Y-127281428D01* -X33107619Y-126948095D02* -X33060000Y-126900476D01* -X33012380Y-126805238D01* -X33012380Y-126567142D01* -X33060000Y-126471904D01* -X33107619Y-126424285D01* -X33202857Y-126376666D01* -X33298095Y-126376666D01* -X33440952Y-126424285D01* -X34012380Y-126995714D01* -X34012380Y-126376666D01* -M02* diff --git a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721.drl b/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721.drl deleted file mode 100644 index 6736bae8..00000000 --- a/Electrical/HAN_ESP_TSS721/gerber/HAN_ESP_TSS721.drl +++ /dev/null @@ -1,118 +0,0 @@ -M48 -;DRILL file {KiCad (5.0.0-rc2-dev-40-gfef1ba999)} date 03/01/18 23:10:02 -;FORMAT={-:-/ absolute / inch / decimal} -FMAT,2 -INCH,TZ -T1C0.0157 -T2C0.0197 -T3C0.0217 -T4C0.0236 -T5C0.0315 -T6C0.0354 -T7C0.0394 -T8C0.0433 -T9C0.1280 -% -G90 -G05 -M72 -T1 -X1.7Y-5.725 -X1.75Y-5.925 -X1.8Y-3.725 -X1.9Y-3.625 -X1.9Y-4.025 -X1.95Y-6.05 -X2.Y-6.1 -X2.05Y-3.35 -X2.05Y-3.475 -X2.05Y-5.675 -X2.1Y-3.925 -X2.175Y-5.2 -X2.175Y-5.975 -X2.3Y-5.825 -X2.35Y-5.65 -T4 -X2.175Y-4.3 -T5 -X2.1Y-4.025 -X2.5Y-4.025 -X2.1Y-4.55 -X2.5Y-4.55 -X1.3Y-4.1 -X1.5Y-2.95 -X1.5Y-3.35 -X1.7Y-4.1 -X2.35Y-3.35 -X2.2281Y-5.325 -X2.425Y-5.325 -X2.35Y-2.95 -X1.4Y-4.325 -X1.5Y-4.325 -X1.6Y-4.325 -X2.1Y-4.9 -X2.5Y-4.9 -X2.1Y-4.2 -X2.1Y-4.375 -X2.5Y-4.375 -X1.3Y-3.975 -X1.7Y-3.975 -X1.35Y-6.15 -X1.5469Y-6.15 -X1.9969Y-3.725 -X2.1Y-4.725 -X2.5Y-4.725 -X2.1Y-5.075 -X2.5Y-5.075 -X1.8Y-3.725 -X2.5Y-4.2 -T6 -X1.75Y-3.35 -X1.8Y-3.25 -X1.85Y-3.35 -X1.9Y-3.25 -X1.95Y-3.35 -X2.Y-3.25 -X2.05Y-3.35 -X2.1Y-3.25 -T7 -X1.85Y-4.8 -X1.85Y-4.9 -X1.85Y-5. -X1.85Y-5.1 -X1.85Y-5.2 -X1.95Y-4.45 -X1.95Y-4.55 -X1.85Y-5.3 -X1.4Y-5.425 -X1.5969Y-5.425 -X2.2531Y-3.65 -X2.45Y-3.65 -X1.8Y-4.45 -X1.8Y-4.55 -X1.3781Y-3.65 -X1.575Y-3.65 -T8 -X1.4Y-4.9 -X1.4Y-5.1559 -X1.5772Y-4.9 -X1.5772Y-5.1559 -X1.4Y-4.5191 -X1.4Y-4.775 -X1.5772Y-4.5191 -X1.5772Y-4.775 -T9 -X1.6913Y-3. -X2.1587Y-3. -T2 -X1.3122Y-6.4659G85X1.3122Y-6.4404 -G05 -X1.5878Y-6.4659G85X1.5878Y-6.4404 -G05 -T3 -X1.3457Y-6.3469G85X1.3575Y-6.3469 -G05 -X1.5425Y-6.3469G85X1.5543Y-6.3469 -G05 -T0 -M30 diff --git a/Electrical/kicad-libs/kicad-footprints/AmsToMqttBridge.pretty/VIA-0.6mm.kicad_mod b/Electrical/kicad-libs/kicad-footprints/AmsToMqttBridge.pretty/VIA-0.6mm.kicad_mod deleted file mode 100644 index 77bd935c..00000000 --- a/Electrical/kicad-libs/kicad-footprints/AmsToMqttBridge.pretty/VIA-0.6mm.kicad_mod +++ /dev/null @@ -1,10 +0,0 @@ -(module VIA-0.6mm (layer F.Cu) (tedit 5A9445CC) - (fp_text reference REF** (at 0 1.27) (layer F.SilkS) hide - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value VIA-0.6mm (at 0 -1.27) (layer F.Fab) hide - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad " " thru_hole circle (at 0 0) (size 0.6 0.6) (drill 0.3) (layers *.Cu) - (zone_connect 2)) -) diff --git a/Electrical/kicad-libs/kicad-symbols b/Electrical/kicad-libs/kicad-symbols deleted file mode 160000 index f886cacb..00000000 --- a/Electrical/kicad-libs/kicad-symbols +++ /dev/null @@ -1 +0,0 @@ -Subproject commit f886cacb58461d356730e744d9d2ae55590825e4 diff --git a/Electrical/HAN_ESP_TSS721/enclosure/Bottom.stl b/Enclosure/Bottom.stl similarity index 100% rename from Electrical/HAN_ESP_TSS721/enclosure/Bottom.stl rename to Enclosure/Bottom.stl diff --git a/Electrical/HAN_ESP_TSS721/enclosure/Top.stl b/Enclosure/Top.stl similarity index 100% rename from Electrical/HAN_ESP_TSS721/enclosure/Top.stl rename to Enclosure/Top.stl diff --git a/Electrical/HAN_ESP_TSS721/enclosure/top and bottom.gco b/Enclosure/top and bottom.gco similarity index 100% rename from Electrical/HAN_ESP_TSS721/enclosure/top and bottom.gco rename to Enclosure/top and bottom.gco diff --git a/Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721-B.Cu.svg b/Images/HAN_ESP_TSS721-B.Cu.svg similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721-B.Cu.svg rename to Images/HAN_ESP_TSS721-B.Cu.svg diff --git a/Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721-F.Cu.svg b/Images/HAN_ESP_TSS721-F.Cu.svg similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721-F.Cu.svg rename to Images/HAN_ESP_TSS721-F.Cu.svg diff --git a/Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721-F.SilkS.svg b/Images/HAN_ESP_TSS721-F.SilkS.svg similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721-F.SilkS.svg rename to Images/HAN_ESP_TSS721-F.SilkS.svg diff --git a/Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721-brd.svg b/Images/HAN_ESP_TSS721-brd.svg similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721-brd.svg rename to Images/HAN_ESP_TSS721-brd.svg diff --git a/Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721.wrl b/Images/HAN_ESP_TSS721.wrl similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/HAN_ESP_TSS721.wrl rename to Images/HAN_ESP_TSS721.wrl diff --git a/Electrical/HAN_ESP_TSS721/images/HanReaderConnected.PNG b/Images/HanReaderConnected.PNG similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/HanReaderConnected.PNG rename to Images/HanReaderConnected.PNG diff --git a/Electrical/HAN_ESP_TSS721/images/HanReaderInEnclosure.PNG b/Images/HanReaderInEnclosure.PNG similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/HanReaderInEnclosure.PNG rename to Images/HanReaderInEnclosure.PNG diff --git a/logo/Makefile b/Images/Makefile similarity index 100% rename from logo/Makefile rename to Images/Makefile diff --git a/logo/NodeRedScreen.PNG b/Images/NodeRedScreen.PNG similarity index 100% rename from logo/NodeRedScreen.PNG rename to Images/NodeRedScreen.PNG diff --git a/Electrical/HAN_ESP_TSS721/images/PCB_3D.png b/Images/PCB_3D.png similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/PCB_3D.png rename to Images/PCB_3D.png diff --git a/logo/bridge.png b/Images/bridge.png similarity index 100% rename from logo/bridge.png rename to Images/bridge.png diff --git a/logo/bridge.svg b/Images/bridge.svg similarity index 100% rename from logo/bridge.svg rename to Images/bridge.svg diff --git a/logo/network-transmit-receive.png b/Images/network-transmit-receive.png similarity index 100% rename from logo/network-transmit-receive.png rename to Images/network-transmit-receive.png diff --git a/logo/network-transmit-receive.svg b/Images/network-transmit-receive.svg similarity index 100% rename from logo/network-transmit-receive.svg rename to Images/network-transmit-receive.svg diff --git a/logo/pcb.png b/Images/pcb.png similarity index 100% rename from logo/pcb.png rename to Images/pcb.png diff --git a/logo/pcb.svg b/Images/pcb.svg similarity index 100% rename from logo/pcb.svg rename to Images/pcb.svg diff --git a/logo/powerlines.png b/Images/powerlines.png similarity index 100% rename from logo/powerlines.png rename to Images/powerlines.png diff --git a/logo/powerlines.svg b/Images/powerlines.svg similarity index 100% rename from logo/powerlines.svg rename to Images/powerlines.svg diff --git a/Electrical/HAN_ESP_TSS721/images/schematics.png b/Images/schematics.png similarity index 100% rename from Electrical/HAN_ESP_TSS721/images/schematics.png rename to Images/schematics.png diff --git a/logo/simple_meter_icon.png b/Images/simple_meter_icon.png similarity index 100% rename from logo/simple_meter_icon.png rename to Images/simple_meter_icon.png diff --git a/logo/simple_meter_icon.svg b/Images/simple_meter_icon.svg similarity index 100% rename from logo/simple_meter_icon.svg rename to Images/simple_meter_icon.svg diff --git a/PCB/Gerber for ordering/Original/gerber.zip b/PCB/Gerber for ordering/Original/gerber.zip new file mode 100644 index 00000000..29b0ea45 Binary files /dev/null and b/PCB/Gerber for ordering/Original/gerber.zip differ diff --git a/Electrical/HAN_ESP_TSS721/Conn_USB-micro-2.0_socket_right-angle.wrl b/PCB/KiCAD/HAN_ESP_TSS721/Conn_USB-micro-2.0_socket_right-angle.wrl similarity index 100% rename from Electrical/HAN_ESP_TSS721/Conn_USB-micro-2.0_socket_right-angle.wrl rename to PCB/KiCAD/HAN_ESP_TSS721/Conn_USB-micro-2.0_socket_right-angle.wrl diff --git a/Electrical/HAN_ESP_TSS721/ESP Prog Header.dcm b/PCB/KiCAD/HAN_ESP_TSS721/ESP Prog Header.dcm similarity index 100% rename from Electrical/HAN_ESP_TSS721/ESP Prog Header.dcm rename to PCB/KiCAD/HAN_ESP_TSS721/ESP Prog Header.dcm diff --git a/Electrical/HAN_ESP_TSS721/ESP Prog Header.lib b/PCB/KiCAD/HAN_ESP_TSS721/ESP Prog Header.lib similarity index 100% rename from Electrical/HAN_ESP_TSS721/ESP Prog Header.lib rename to PCB/KiCAD/HAN_ESP_TSS721/ESP Prog Header.lib diff --git a/Electrical/HAN_ESP_TSS721/ESP8266.dcm b/PCB/KiCAD/HAN_ESP_TSS721/ESP8266.dcm similarity index 100% rename from Electrical/HAN_ESP_TSS721/ESP8266.dcm rename to PCB/KiCAD/HAN_ESP_TSS721/ESP8266.dcm diff --git a/Electrical/HAN_ESP_TSS721/ESP8266.lib b/PCB/KiCAD/HAN_ESP_TSS721/ESP8266.lib similarity index 100% rename from Electrical/HAN_ESP_TSS721/ESP8266.lib rename to PCB/KiCAD/HAN_ESP_TSS721/ESP8266.lib diff --git a/Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721-cache.lib b/PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721-cache.lib similarity index 100% rename from Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721-cache.lib rename to PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721-cache.lib diff --git a/Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.kicad_pcb b/PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.kicad_pcb similarity index 100% rename from Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.kicad_pcb rename to PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.kicad_pcb diff --git a/Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.kicad_pcb-bak b/PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.kicad_pcb-bak similarity index 100% rename from Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.kicad_pcb-bak rename to PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.kicad_pcb-bak diff --git a/Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.net b/PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.net similarity index 100% rename from Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.net rename to PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.net diff --git a/Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.pro b/PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.pro similarity index 100% rename from Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.pro rename to PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.pro diff --git a/Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.sch b/PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.sch similarity index 100% rename from Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.sch rename to PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.sch diff --git a/Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.xml b/PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.xml similarity index 100% rename from Electrical/HAN_ESP_TSS721/HAN_ESP_TSS721.xml rename to PCB/KiCAD/HAN_ESP_TSS721/HAN_ESP_TSS721.xml diff --git a/Electrical/HAN_ESP_TSS721/README.md b/PCB/KiCAD/HAN_ESP_TSS721/README.md similarity index 100% rename from Electrical/HAN_ESP_TSS721/README.md rename to PCB/KiCAD/HAN_ESP_TSS721/README.md diff --git a/Electrical/HAN_ESP_TSS721/sym-lib-table b/PCB/KiCAD/HAN_ESP_TSS721/sym-lib-table similarity index 100% rename from Electrical/HAN_ESP_TSS721/sym-lib-table rename to PCB/KiCAD/HAN_ESP_TSS721/sym-lib-table diff --git a/Electrical/HAN_ESP_TSS721/tss721.dcm b/PCB/KiCAD/HAN_ESP_TSS721/tss721.dcm similarity index 100% rename from Electrical/HAN_ESP_TSS721/tss721.dcm rename to PCB/KiCAD/HAN_ESP_TSS721/tss721.dcm diff --git a/Electrical/HAN_ESP_TSS721/tss721.lib b/PCB/KiCAD/HAN_ESP_TSS721/tss721.lib similarity index 100% rename from Electrical/HAN_ESP_TSS721/tss721.lib rename to PCB/KiCAD/HAN_ESP_TSS721/tss721.lib diff --git a/PCB/README.md b/PCB/README.md new file mode 100644 index 00000000..044ccf27 --- /dev/null +++ b/PCB/README.md @@ -0,0 +1,60 @@ + +# Overview + +Here are links to the different board designs together with a short summary. + +## HAN_ESP_TSS721 (The current design) + +This is the current and most robust design for the [main board](HAN_ESP_TSS721). There's been great help in creating this, both here on GitHub, but also at the Norwegian home automation forum, [www.hjemmeautomasjon.no](https://www.hjemmeautomasjon.no/forums/topic/1982-lesing-av-ams-data-amshan-iot/) + +The board + +* uses TSS721 for MBus to TTL conversion +* holds ESP8266 for processing and transmit HAN data to WiFi / MQTT +* full schematics and PCB in editable [KiCad](http://www.kicad-pcb.org/) source files +* features a temperature sensor (DS18B20) +* uses a modular design, leaving these features optional + * temperature sensor + * M-bus TX + * WiFi (Leave ESP, power supply and use for only M-bus to TTL) + +### Status + +At the time of this writing, this has never been tried as a whole, but all parts has been prototyped individually. First PCB prototypes are very soon in the order. + +## HAN_ESP_Simple (Was: Board 1) + +The project's original [board design](HAN_ESP_Simple). It + +* is based on the ESP8266 chip +* is powered by USB +* uses a very simple voltage divider to demodulate the M-bus signal +* has shematic and pcb design only available as finished pdf/png files + +### Status + +Prototypes have been made and some people have started using them(?). + +## HAN_TTL_TSS721 (Was: Board 2) + +This [board design](HAN_TTL_TSS721) is a newer alternative to the original. It + +* is an Arduino shield. +* uses the industry standard TSS721 chip to interface the M-bus. +* is optically isolate +* has shematic and pcb design available in editable [KiCad](http://www.kicad-pcb.org/) source files + +### Status + +Unfinished, just started. + +## MBUS_Simulator (Was: Board 3) + +This [board](MBUS_Simulator) is a M-bus master simulator to be able to develop and +test the other boards without being dependent on having and using a real AMS unit. + +### Status + +Implementation done. + +Please also see [Getting started building or modifying](GETTING_STARTED.md) diff --git a/README.md b/README.md index 6c450681..55c7123e 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,16 @@ +>!!! NOTE !!! +>I am currently editing this fork to focus on the 'HAN_ESP_TSS721' board which is complete, but needs some minor work with the software to make it more user friendly. +>I'm organizing the files differently to separate simulators and HAN documentation, deleting theme-related files which aren't necessary for functionality etc. so it's easier to get the files you need for creating one yourself, without worrying about the development documentation. +> +>There will be tutorial for ordering, assembly and for uploding software, which would make this project more approachable for everyone interested. +>Later on the PCB might be redesigned to use less SMD parts to be more soldering friendly. + # AMS <-> MQTT Bridge -> This project may help you build your own reader for HAN data streamed from the new AMS electrical meters installed in Norway in 2017/2018. Data is read using an Arduino-programmed ESP8266 (in an ESP12 module from AI Thinker), then pushed to MQTT over WiFi. You can have full control over this data, and you can basically do anything with it. -> -> This project does not include any fancy UI setup or even storage for the AMS data. -> -> *Building this project will require some skills in ordering and assembling electronic circuits as well as programming, and I have not included detailed instructions to take a beginner through the steps. I still hope some still find information here useful, maybe also for other projects.* + This project may help you build your own reader for HAN data streamed from the new AMS electrical meters installed in Norway in 2017/2018. Data is read using an Arduino-programmed ESP8266 (in an ESP12 module from AI Thinker), then pushed to MQTT over WiFi. You can have full control over this data, and you can basically do anything with it. + + This project does not include any fancy UI setup or even storage for the AMS data. + + *Building this project will require some skills in ordering and assembling electronic circuits as well as programming, and I have not included detailed instructions to take a beginner through the steps. I still hope some still find information here useful, maybe also for other projects.* ## The completed hardware ![The HAN Reader Hardware](./Electrical/HAN_ESP_TSS721/images/HanReaderInEnclosure.PNG) diff --git a/_config.yml b/_config.yml deleted file mode 100644 index c7418817..00000000 --- a/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-slate \ No newline at end of file