diff --git a/solarcar-map/data-load/data-load.md b/solarcar-map/data-load/data-load.md new file mode 100644 index 000000000..8845db49c --- /dev/null +++ b/solarcar-map/data-load/data-load.md @@ -0,0 +1,102 @@ +# Title of the Lab + +## Introduction + +*Describe the lab in one or two sentences, for example:* This lab walks you through the steps to ... + +Estimated Time: -- minutes + +### About (Optional) +Enter background information here about the technology/feature or product used in this lab - no need to repeat what you covered in the introduction. Keep this section fairly concise. If you find yourself needing more than two sections/paragraphs, please utilize the "Learn More" section. + +### Objectives + +*List objectives for this lab using the format below* + +In this lab, you will: +* Objective 1 +* Objective 2 +* Objective 3 + +### Prerequisites (Optional) + +*List the prerequisites for this lab using the format below. Fill in whatever knowledge, accounts, etc. is needed to complete the lab. Do NOT list each previous lab as a prerequisite.* + +This lab assumes you have: +* An Oracle Cloud account +* All previous labs successfully completed + + +*Below, is the "fold"--where items are collapsed by default.* + +## Task 1: Concise Task Description + +(optional) Task 1 opening paragraph. + +1. Step 1 + + ![Image alt text](images/sample1.png) + + To create a link to local file you want the reader to download, use the following formats. _The filename must be in lowercase letters and CANNOT include any spaces._ + + Download the [starter file](files/starter-file.sql) SQL code. + + When the file type is recognized by the browser, it will attempt to render it. So you can use the following format to force the download dialog box. + + Download the [sample JSON code](files/sample.json?download=1). + + > Note: do not include zip files, CSV, PDF, PSD, JAR, WAR, EAR, bin, or exe files - you must have those objects stored somewhere else. We highly recommend using Oracle Cloud Object Store and creating a PAR URL instead. See [Using Pre-Authenticated Requests](https://docs.cloud.oracle.com/en-us/iaas/Content/Object/Tasks/usingpreauthenticatedrequests.htm) + +2. Step 2 + + ![Image alt text](images/sample1.png) + +4. Example with inline navigation icon ![Image alt text](images/sample2.png) click **Navigation**. + +5. Example with bold **text**. + + If you add another paragraph, add 3 spaces before the line. + +## Task 2: Concise Task Description + +1. Step 1 - tables sample + + Use tables sparingly: + + | Column 1 | Column 2 | Column 3 | + | --- | --- | --- | + | 1 | Some text or a link | More text | + | 2 |Some text or a link | More text | + | 3 | Some text or a link | More text | + +2. You can also include bulleted lists - make sure to indent 4 spaces: + + - List item 1 + - List item 2 + +3. Code examples + + ``` + Adding code examples + Indentation is important for the code example to appear inside the step + Multiple lines of code + Enclose the text you want to copy in . + ``` + +4. Code examples that include variables + + ``` + ssh -i + ``` + +## Learn More + +*(optional - include links to docs, white papers, blogs, etc)* + +* [URL text 1](http://docs.oracle.com) +* [URL text 2](http://docs.oracle.com) + +## Acknowledgements +* **Author** - +* **Contributors** - -- optional +* **Last Updated By/Date** - diff --git a/solarcar-map/data-load/files/sample.json b/solarcar-map/data-load/files/sample.json new file mode 100644 index 000000000..48109ed27 --- /dev/null +++ b/solarcar-map/data-load/files/sample.json @@ -0,0 +1,38 @@ +{ + "quiz": { + "sport": { + "q1": { + "question": "Which one is correct team name in NBA?", + "options": [ + "New York Bulls", + "Los Angeles Kings", + "Golden State Warriros", + "Huston Rocket" + ], + "answer": "Huston Rocket" + } + }, + "maths": { + "q1": { + "question": "5 + 7 = ?", + "options": [ + "10", + "11", + "12", + "13" + ], + "answer": "12" + }, + "q2": { + "question": "12 - 8 = ?", + "options": [ + "1", + "2", + "3", + "4" + ], + "answer": "4" + } + } + } +} diff --git a/solarcar-map/data-load/files/starter-file.sql b/solarcar-map/data-load/files/starter-file.sql new file mode 100644 index 000000000..9d7e762e8 --- /dev/null +++ b/solarcar-map/data-load/files/starter-file.sql @@ -0,0 +1,101 @@ +/* NOTE: Files cannot contain empty lines (line breaks) */ +/* Specify the base URL that you copied from your files in OCI Object Storage in the define base_URL line below*/ +/* change idthydc0kinr to your real namespace. The name is case-sensitive. */ +/* change ADWCLab to your real bucket name. The name is case-sensitive. */ +/* change us-phoenix-1 to your real region name. The name is case-sensitive. */ +/* you can find these values on the OCI Console .. Storage .. Object Storage screen */ +set define on +define base_URL='https://objectstorage.us-phoenix-1.oraclecloud.com/n/idthydc0kinr/b/ADWCLab/o' +/* copy Channels table */ +begin + dbms_cloud.copy_data( + table_name =>'CHANNELS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/chan_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +/* copy Countries table */ +begin + dbms_cloud.copy_data( + table_name =>'COUNTRIES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/coun_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +/* Copy customers */ +begin + dbms_cloud.copy_data( + table_name =>'CUSTOMERS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/cust1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SUPPLEMENTARY_DEMOGRAPHICS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/dem1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SALES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/dmsal_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'PRODUCTS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/prod1v3.dat', + format => json_object('delimiter' value '|', 'quote' value '^', 'ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'PROMOTIONS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/prom1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SALES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/sale1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'TIMES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/time_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'COSTS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/costs.dat', + format => json_object('ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true') + ); +end; +/ diff --git a/solarcar-map/data-load/images/sample1.png b/solarcar-map/data-load/images/sample1.png new file mode 100644 index 000000000..2d9ad4738 Binary files /dev/null and b/solarcar-map/data-load/images/sample1.png differ diff --git a/solarcar-map/data-load/images/sample2.png b/solarcar-map/data-load/images/sample2.png new file mode 100644 index 000000000..145c9d39c Binary files /dev/null and b/solarcar-map/data-load/images/sample2.png differ diff --git a/solarcar-map/howtouse-deletewhenfinished.md b/solarcar-map/howtouse-deletewhenfinished.md new file mode 100644 index 000000000..27dec4b5b --- /dev/null +++ b/solarcar-map/howtouse-deletewhenfinished.md @@ -0,0 +1,73 @@ +# Workshop with a single set of labs + +## Instructions - Delete this file when finished + +1. Open the sample-workshop template in Atom or Visual Studio Code +2. We pre-created 5 folders. A workshop is created out of multiple labs. +3. Remove the comments like this one: *List objectives for this lab* +4. Make sure you use lower case folder and file name and dashes for spaces (setup-adb NOT Setup_ADB) +5. Your image names should have descriptive names. Not just adb1, adb2, adb3. For handicap accessibility, we need the image descriptions to explain what the image looks like. Remember all lowercase and dashes. +6. Download our QA doc from WMS. We find workshops get in production quicker when you know what's needed to move to production up front and you use the skeleton. + +PS: You do not need a Readme.md. Readme's exist only at the top library levels. We direct all traffic to LiveLabs since we can't track usage on GitHub. Do not create any direct links to GitHub, your workshop may be super popular but we can't track it so no one will know. + +## Absolute Path for Oracle Cloud menu Navigation + +**Lab 1: Provision an Instance -> Step 0: Use these Standardized Pictures for Oracle Cloud Navigation (Commonly for Provisioning)** - We've included a list of common screenshots for navigating the Oracle Cloud Menu. Please read this section and use the relevant absolute path images where appropriate. This will future proof your workshop in case of Oracle Cloud user interface updates. + +## Folder Structure + +In this example, the goal is to create several "children" workshops from one longer "parent" workshop. The children are made up of parts from the parent. + +sample-workshop/ + -- individual labs + + provision/ + setup/ + dataload/ + query/ + introduction/ + introduction.md -- description of the everything workshop, note that it is a "lab" since there is only one + + workshops/ + freetier/ -- freetier version of the workshop + index.html + manifest.json + livelabs/ -- livelabs version of the workshop + index.html + manifest.json + + +### FreeTier vs LiveLabs + +* "FreeTier" - includes Free Trials, Paid Accounts, and for some workshops, Always Free accounts (brown button) +* "LiveLabs" - these are workshops that use Oracle-provided tenancies (green button) +* "Desktop" - this is a new deployment where the workshop is encapsulated in a NoVNC environment running in a compute instance + +### About the Workshop + +The workshop includes all 6 of the individual labs in a single sequence. + +The folder structure includes an Introduction "lab" that describes the workshop as a complete set of 6 labs. Note: you may not need to have a different introduction for each of the parent and child versions of the workshops, this is illustrative only. + +Look at the product-name-workshop/freetier folder and look at the manifest.json file to see the structure. + +> **Note:** The use of "Lab n:" in the titles is optional + +The Prerequisite "lab" is the first lab in a common folder on the oracle-livelabs/common repo. Because this lab already exists, we can use a RAW/absolute URL instead: + + ``` + "filename": "https://oracle-livelabs.github.io/common/labs/cloud-login/cloud-login-livelabs2.md" }, + ``` + +The manifest.json file needs to know the location of each lab relative to where it exists in the hierarchy. In this structure, labs are located two levels up, for example: + + ``` + "filename": "../../provision/provision.md" + ``` + +### For example: + +This [APEX Workshop](https://oracle-livelabs.github.io/apex/spreadsheet/workshops/freetier/) is a good example of a workshop with a single set of labs: [https://github.com/oracle-livelabs/apex/tree/main/spreadsheet](https://github.com/oracle-livelabs/apex/tree/main/spreadsheet). + + diff --git a/solarcar-map/introduction/files/live location.csv b/solarcar-map/introduction/files/live location.csv new file mode 100644 index 000000000..31151d3ca --- /dev/null +++ b/solarcar-map/introduction/files/live location.csv @@ -0,0 +1,2 @@ +COUNTRY,DRIVER,LATITUDE,LONGITUDE +Australia,Alex,-25.1963823,133.2011792 diff --git a/solarcar-map/introduction/files/route.csv b/solarcar-map/introduction/files/route.csv new file mode 100644 index 000000000..55a5f20f7 --- /dev/null +++ b/solarcar-map/introduction/files/route.csv @@ -0,0 +1,13 @@ +START_LATITUDE,START_LONGITUDE,END_LATITUDE,END_LONGITUDE,SEGMENT,SEGMENT_NAME,Route_WKT +-34.927561,138.620159,-34.927561,138.620159,11,Adelaide (Finish),"LINESTRING (138.620159 -34.927561, 138.620159 -34.927561)" +-34.730554,138.582043,-34.927561,138.620159,11,End of Race (Marshalling starts),"LINESTRING (138.5821367334 -34.7305213023, 138.58237 -34.73119, 138.58241 -34.73131, 138.5826 -34.73183, 138.58267 -34.73203, 138.5827 -34.73212, 138.58274 -34.73223, 138.58285 -34.73254, 138.58297 -34.73289, 138.58304 -34.73309, 138.58314 -34.73338, 138.58352 -34.73448, 138.58393 -34.73571, 138.58431 -34.73683, 138.58452 -34.73744, 138.5849 -34.73858, 138.58501 -34.73891, 138.58523 -34.73957, 138.58534 -34.73989, 138.58547 -34.74026, 138.58579 -34.74121, 138.58586 -34.74142, 138.58609 -34.74219, 138.58616 -34.74243, 138.58622 -34.74262, 138.58625 -34.74272, 138.58628 -34.74284, 138.58632 -34.74301, 138.58649 -34.74367, 138.58654 -34.74388, 138.58658 -34.74402, 138.58666 -34.74432, 138.58684 -34.74495, 138.58699 -34.74542, 138.58715 -34.74592, 138.58731 -34.7464, 138.58756 -34.74714, 138.5876 -34.74726, 138.58768 -34.74752, 138.58786 -34.74805, 138.58814 -34.74887, 138.58848 -34.74987, 138.58868 -34.75046, 138.58881 -34.75083, 138.58907 -34.75158, 138.58927 -34.75217, 138.5896 -34.75314, 138.58969 -34.75341, 138.59002 -34.7544, 138.5902 -34.75494, 138.59041 -34.75555, 138.59126 -34.75805, 138.59135 -34.75832, 138.59154 -34.75891, 138.5917 -34.75939, 138.5918 -34.75968, 138.59196 -34.76017, 138.59206 -34.76045, 138.59219 -34.76083, 138.59234 -34.76126, 138.59251 -34.76175, 138.59283 -34.76268, 138.59289 -34.76285, 138.59304 -34.7633, 138.59317 -34.76365, 138.59322 -34.76381, 138.59349 -34.76462, 138.59353 -34.76473, 138.59357 -34.76485, 138.59368 -34.76518, 138.59384 -34.76567, 138.59401 -34.76622, 138.59405 -34.76636, 138.59409 -34.7665, 138.59412 -34.76662, 138.59415 -34.76677, 138.59418 -34.76692, 138.59421 -34.76707, 138.59423 -34.76718, 138.59425 -34.7673, 138.59426 -34.76739, 138.59429 -34.76768, 138.59431 -34.7679, 138.59433 -34.76812, 138.59436 -34.76849, 138.59442 -34.76909, 138.59444 -34.7693, 138.59446 -34.76951, 138.59457 -34.7705, 138.59458 -34.77062, 138.59459 -34.77072, 138.5946 -34.77082, 138.59467 -34.77151, 138.59473 -34.77206, 138.59482 -34.773, 138.59485 -34.77331, 138.59487 -34.77353, 138.59489 -34.77369, 138.59492 -34.77397, 138.59495 -34.77423, 138.59498 -34.77453, 138.59505 -34.77521, 138.59525 -34.77715, 138.59536 -34.77821, 138.59539 -34.77846, 138.59543 -34.77885, 138.5955 -34.77955, 138.59552 -34.77972, 138.59553 -34.77985, 138.59556 -34.78012, 138.59558 -34.78032, 138.59562 -34.78067, 138.59567 -34.78119, 138.59572 -34.78174, 138.59583 -34.78289, 138.59586 -34.78314, 138.5959 -34.78352, 138.59603 -34.78478, 138.59609 -34.78541, 138.59612 -34.78576, 138.5962 -34.78654, 138.59621 -34.78667, 138.59624 -34.78702, 138.59629 -34.7875, 138.59632 -34.78787, 138.59634 -34.78804, 138.59637 -34.78832, 138.5964 -34.78862, 138.59647 -34.78938, 138.59649 -34.78959, 138.59652 -34.78982, 138.59662 -34.79072, 138.59669 -34.79146, 138.59673 -34.79188, 138.59676 -34.79222, 138.59679 -34.79271, 138.59681 -34.79328, 138.5968 -34.79369, 138.5968 -34.79388, 138.59677 -34.7942, 138.59675 -34.79449, 138.59674 -34.79455, 138.59673 -34.79468, 138.59668 -34.79519, 138.59656 -34.79637, 138.59654 -34.79665, 138.59652 -34.79751, 138.59653 -34.79782, 138.59654 -34.79812, 138.59657 -34.79859, 138.59658 -34.79877, 138.59659 -34.79894, 138.59663 -34.79947, 138.59668 -34.80008, 138.59672 -34.80067, 138.59675 -34.80108, 138.59677 -34.80136, 138.59679 -34.8016, 138.5968 -34.80181, 138.59681 -34.80193, 138.59686 -34.80257, 138.59699 -34.80406, 138.597 -34.80421, 138.59714 -34.80629, 138.59725 -34.80772, 138.59728 -34.808, 138.59734 -34.80856, 138.59738 -34.80898, 138.59744 -34.8094, 138.5975 -34.80993, 138.59752 -34.81013, 138.59754 -34.81039, 138.59756 -34.81076, 138.59761 -34.81131, 138.59762 -34.81149, 138.59769 -34.81274, 138.59771 -34.81303, 138.59773 -34.81334, 138.59776 -34.81429, 138.59778 -34.81491, 138.59784 -34.81582, 138.59788 -34.81651, 138.59797 -34.81786, 138.59806 -34.8191, 138.59808 -34.81931, 138.59811 -34.81979, 138.59815 -34.82025, 138.59819 -34.82089, 138.59822 -34.82125, 138.59825 -34.82159, 138.59827 -34.82181, 138.59837 -34.82319, 138.59844 -34.82407, 138.59845 -34.82422, 138.5985 -34.82496, 138.59852 -34.82533, 138.59855 -34.82603, 138.5986 -34.82664, 138.59862 -34.82704, 138.59863 -34.82714, 138.59865 -34.8274, 138.59866 -34.82749, 138.59866 -34.82753, 138.59867 -34.82761, 138.59871 -34.82813, 138.59873 -34.8284, 138.59878 -34.82913, 138.59882 -34.82978, 138.59884 -34.83006, 138.59889 -34.83065, 138.59893 -34.83099, 138.59895 -34.83121, 138.59899 -34.83158, 138.59901 -34.83181, 138.59902 -34.83192, 138.59905 -34.83238, 138.59906 -34.83258, 138.59907 -34.83279, 138.59911 -34.8337, 138.59913 -34.83392, 138.59919 -34.83458, 138.59923 -34.83502, 138.59927 -34.83535, 138.59935 -34.83645, 138.5994 -34.83703, 138.59948 -34.83805, 138.5995 -34.83833, 138.59952 -34.83866, 138.59956 -34.83929, 138.59966 -34.84069, 138.59968 -34.84104, 138.59969 -34.84125, 138.59976 -34.84201, 138.59977 -34.84216, 138.59985 -34.84288, 138.59997 -34.84396, 138.60001 -34.84428, 138.60002 -34.84436, 138.60003 -34.84446, 138.60004 -34.8446, 138.60007 -34.84498, 138.60009 -34.8453, 138.60017 -34.84634, 138.6002 -34.84679, 138.60021 -34.847, 138.60022 -34.84747, 138.60023 -34.84769, 138.60024 -34.848, 138.60025 -34.84815, 138.60027 -34.84845, 138.60031 -34.84904, 138.60036 -34.84985, 138.60038 -34.85014, 138.60039 -34.85033, 138.60045 -34.85113, 138.6005 -34.8519, 138.60054 -34.85231, 138.60057 -34.85272, 138.60064 -34.85385, 138.60066 -34.85408, 138.60068 -34.85433, 138.60072 -34.85493, 138.60074 -34.85532, 138.60076 -34.85558, 138.60078 -34.85588, 138.60086 -34.85692, 138.60088 -34.85721, 138.60097 -34.85852, 138.60108 -34.85993, 138.60114 -34.86078, 138.60119 -34.86148, 138.60121 -34.86174, 138.60126 -34.86237, 138.60127 -34.86271, 138.60131 -34.86323, 138.60133 -34.86358, 138.60134 -34.86367, 138.6014 -34.86447, 138.60142 -34.86483, 138.60144 -34.86515, 138.60146 -34.86538, 138.6015 -34.86602, 138.60152 -34.86628, 138.60163 -34.86785, 138.60165 -34.86822, 138.60166 -34.86846, 138.6017 -34.86905, 138.60173 -34.86946, 138.60179 -34.87033, 138.6018 -34.87052, 138.60181 -34.87061, 138.60184 -34.87108, 138.60186 -34.87135, 138.60188 -34.87175, 138.60189 -34.87192, 138.6019 -34.87201, 138.60194 -34.87258, 138.60198 -34.87323, 138.60199 -34.87343, 138.602 -34.87361, 138.60201 -34.87369, 138.60207 -34.87429, 138.60209 -34.87458, 138.60216 -34.87555, 138.60219 -34.87598, 138.60221 -34.87618, 138.60226 -34.87688, 138.60227 -34.87711, 138.60229 -34.87738, 138.6023 -34.87753, 138.60231 -34.87769, 138.60232 -34.87781, 138.60233 -34.87792, 138.60239 -34.87874, 138.60245 -34.87957, 138.60247 -34.87981, 138.60249 -34.88004, 138.60251 -34.88027, 138.60253 -34.88054, 138.60256 -34.88096, 138.6026 -34.88163, 138.60263 -34.88198, 138.60265 -34.88219, 138.60268 -34.88261, 138.60272 -34.88323, 138.60274 -34.88343, 138.60279 -34.88422, 138.6028 -34.88438, 138.60285 -34.88501, 138.60289 -34.88557, 138.60291 -34.88583, 138.60297 -34.88678, 138.60298 -34.88688, 138.603 -34.88724, 138.60301 -34.88735, 138.60303 -34.88761, 138.60307 -34.88806, 138.60309 -34.88837, 138.6031 -34.88862, 138.60311 -34.88873, 138.60314 -34.88927, 138.60315 -34.88951, 138.60321 -34.89024, 138.60324 -34.89059, 138.60327 -34.89101, 138.60331 -34.89151, 138.60333 -34.89178, 138.60335 -34.89203, 138.60336 -34.89223, 138.60338 -34.89249, 138.6034 -34.8929, 138.60341 -34.8931, 138.60349 -34.89326, 138.60353 -34.89333, 138.60358 -34.8934, 138.60363 -34.89345, 138.60372 -34.89351, 138.60396 -34.89351, 138.60425 -34.8935, 138.60454 -34.89349, 138.60478 -34.89349, 138.60507 -34.89348, 138.60518 -34.89348, 138.60547 -34.89346, 138.6061 -34.89342, 138.60669 -34.89339, 138.60681 -34.89338, 138.60737 -34.89335, 138.60808 -34.89332, 138.60803 -34.89576, 138.60806 -34.89577, 138.60809 -34.89579, 138.6081 -34.89582, 138.60867 -34.8958, 138.60934 -34.89577, 138.60934 -34.89587, 138.60931 -34.89754, 138.60931 -34.89767, 138.6093 -34.89785, 138.6093 -34.8981, 138.6093 -34.89817, 138.60926 -34.8997, 138.60923 -34.90058, 138.60922 -34.90087, 138.60921 -34.90119, 138.60928 -34.90147, 138.60932 -34.90157, 138.60938 -34.90167, 138.60944 -34.90174, 138.6095 -34.9018, 138.60961 -34.9019, 138.60987 -34.90211, 138.61004 -34.90223, 138.61009 -34.90227, 138.61019 -34.90236, 138.61033 -34.90248, 138.61042 -34.90257, 138.61048 -34.90264, 138.61057 -34.90274, 138.61072 -34.90291, 138.611 -34.90325, 138.61113 -34.90342, 138.61116 -34.90345, 138.61145 -34.9038, 138.61187 -34.90431, 138.61247 -34.90506, 138.6126 -34.90524, 138.61267 -34.90536, 138.61272 -34.90547, 138.61275 -34.90556, 138.61279 -34.90573, 138.6128 -34.90593, 138.61281 -34.90613, 138.61281 -34.90653, 138.61282 -34.90736, 138.61281 -34.90756, 138.61281 -34.9076, 138.6128 -34.90775, 138.61278 -34.90787, 138.61277 -34.90793, 138.6127 -34.90843, 138.61269 -34.90855, 138.6127 -34.90871, 138.61271 -34.90883, 138.61272 -34.90892, 138.61274 -34.90904, 138.61276 -34.90915, 138.61277 -34.90919, 138.61281 -34.90934, 138.61283 -34.90942, 138.61284 -34.90947, 138.61286 -34.90957, 138.61287 -34.90961, 138.6129 -34.90974, 138.61293 -34.90989, 138.61296 -34.91002, 138.61299 -34.91015, 138.613 -34.91018, 138.61302 -34.91028, 138.61303 -34.91034, 138.61307 -34.91053, 138.61313 -34.91078, 138.61319 -34.91106, 138.61323 -34.91122, 138.61329 -34.91148, 138.61333 -34.91167, 138.61336 -34.91179, 138.6134 -34.91196, 138.61362 -34.91291, 138.61364 -34.91299, 138.61374 -34.9134, 138.61391 -34.91418, 138.61409 -34.91498, 138.61412 -34.9151, 138.61424 -34.91562, 138.6143 -34.91588, 138.61434 -34.91603, 138.61439 -34.91624, 138.61453 -34.91676, 138.61457 -34.91694, 138.61466 -34.91734, 138.61472 -34.9176, 138.61476 -34.91777, 138.61478 -34.91787, 138.61483 -34.91823, 138.61488 -34.91842, 138.61495 -34.91867, 138.61502 -34.91896, 138.61507 -34.91919, 138.61515 -34.91956, 138.61522 -34.91982, 138.61528 -34.92012, 138.61529 -34.92016, 138.6154 -34.92072, 138.61548 -34.9211, 138.6155 -34.92121, 138.61552 -34.92133, 138.61553 -34.92143, 138.61554 -34.92155, 138.61563 -34.9219, 138.61569 -34.92214, 138.61575 -34.92233, 138.61583 -34.92248, 138.61595 -34.92263, 138.6161 -34.92277, 138.61624 -34.92287, 138.61631 -34.92292, 138.61657 -34.92311, 138.61668 -34.92319, 138.617 -34.92342, 138.6174 -34.9237, 138.6181 -34.92419, 138.61838 -34.92439, 138.61848 -34.92446, 138.61872 -34.92463, 138.61894 -34.92479, 138.61927 -34.92502, 138.61953 -34.9252, 138.61966 -34.9253, 138.61996 -34.92551, 138.62048 -34.92588, 138.62082 -34.92612, 138.62099 -34.92624, 138.62151 -34.92662, 138.62178 -34.92682, 138.62181 -34.92684, 138.6221 -34.92707, 138.62231 -34.92725, 138.62253 -34.9274, 138.62264 -34.92746, 138.62269 -34.92747, 138.62271 -34.92748, 138.62273 -34.9275, 138.62274 -34.92752, 138.62275 -34.92755, 138.62275 -34.92758, 138.62274 -34.92761, 138.62272 -34.92764, 138.62269 -34.92766, 138.62267 -34.92767, 138.62263 -34.92768, 138.62258 -34.92767, 138.62256 -34.92766, 138.62253 -34.92764, 138.62248 -34.92766, 138.62243 -34.92768, 138.62236 -34.9277, 138.62229 -34.92771, 138.62224 -34.92771, 138.62213 -34.9277, 138.62174 -34.92766, 138.62135 -34.92762, 138.62123 -34.92761, 138.62108 -34.9276, 138.62094 -34.92759, 138.62078 -34.92759, 138.62062 -34.92759, 138.62038 -34.9276, 138.6201610052 -34.9276091248)" +-32.492181,137.772173,-34.730554,138.582043,10,Port Augusta,"LINESTRING (137.7719303203 -32.4917797666, 137.77193 -32.49178, 137.77182 -32.49178, 137.77129 -32.49172, 137.77069 -32.49167, 137.77068 -32.49161, 137.77039 -32.49159, 137.77041 -32.49154, 137.77136 -32.49157, 137.77188 -32.49163, 137.77194 -32.4916, 137.77201 -32.491509, 137.7725 -32.49122, 137.77278 -32.49158, 137.7733 -32.49226, 137.77341 -32.49239, 137.77373 -32.4928, 137.77426 -32.49347, 137.77431 -32.49345, 137.77436 -32.49344, 137.7744 -32.49345, 137.77444 -32.49347, 137.77447 -32.493519, 137.77448 -32.49357, 137.77483 -32.49389, 137.77533 -32.494529, 137.77606 -32.49545, 137.77627 -32.49569, 137.77674 -32.496299, 137.77732 -32.49704, 137.77781 -32.49765, 137.77849 -32.49851, 137.77861 -32.49877, 137.77888 -32.49913, 137.77896 -32.4992, 137.77884 -32.49931, 137.77843 -32.49972, 137.77819 -32.49996, 137.77835 -32.50007, 137.77857 -32.50022, 137.77876 -32.50036, 137.77916 -32.50068, 137.7795 -32.50099, 137.77971 -32.501199, 137.7799 -32.50139, 137.78004 -32.50154, 137.78017 -32.5017, 137.78023 -32.501779, 137.78031 -32.50188, 137.78044 -32.50204, 137.78047 -32.502139, 137.78094 -32.50274, 137.78113 -32.50298, 137.78132 -32.50321, 137.78145 -32.50338, 137.78161 -32.50357, 137.78178 -32.50377, 137.78203 -32.504019, 137.78223 -32.50419, 137.78241 -32.50433, 137.78255 -32.50443, 137.78277 -32.50457, 137.78295 -32.504669, 137.78316 -32.504779, 137.78336 -32.504869, 137.78352 -32.50493, 137.78362 -32.50497, 137.78373 -32.50501, 137.78382 -32.50504, 137.7839 -32.50504, 137.78408 -32.50509, 137.78417 -32.50511, 137.78431 -32.505139, 137.78446 -32.50517, 137.78471 -32.50521, 137.78487 -32.50524, 137.78519 -32.50531, 137.78557 -32.50542, 137.78573 -32.50547, 137.7859 -32.50553, 137.78615 -32.505629, 137.78645 -32.50575, 137.78715 -32.50601, 137.78785 -32.506259, 137.78827 -32.50641, 137.78838 -32.50645, 137.78873 -32.50658, 137.78928 -32.50678, 137.78936 -32.50681, 137.79061 -32.50726, 137.79259 -32.50798, 137.79262 -32.50799, 137.79362 -32.50835, 137.79408 -32.508519, 137.79426 -32.508589, 137.79462 -32.508719, 137.79472 -32.50876, 137.79489 -32.50882, 137.79498 -32.50885, 137.7952 -32.50893, 137.79548 -32.50903, 137.7967 -32.50947, 137.79737 -32.50972, 137.79796 -32.50992, 137.79843 -32.510039, 137.79903 -32.51016, 137.79907 -32.51017, 137.79968 -32.510289, 137.8001 -32.51036, 137.80085 -32.510509, 137.80177 -32.510689, 137.80218 -32.51077, 137.80253 -32.51084, 137.80301 -32.51093, 137.80344 -32.51101, 137.80376 -32.51108, 137.8043 -32.51118, 137.80442 -32.5112, 137.80582 -32.51147, 137.80732 -32.51176, 137.80746 -32.511789, 137.80812 -32.51192, 137.80849 -32.512, 137.80873 -32.51205, 137.80878 -32.51206, 137.80926 -32.512189, 137.8097 -32.51232, 137.81005 -32.512439, 137.81035 -32.512549, 137.81056 -32.51263, 137.81105 -32.512839, 137.81147 -32.51305, 137.8117 -32.51317, 137.81191 -32.513289, 137.81222 -32.51348, 137.81242 -32.51361, 137.81279 -32.513849, 137.81316 -32.51413, 137.8134 -32.51433, 137.81351 -32.51442, 137.81376 -32.51465, 137.81402 -32.514899, 137.81428 -32.51516, 137.8149 -32.5158, 137.81522 -32.516129, 137.81568 -32.516579, 137.81588 -32.51675, 137.81613 -32.516979, 137.81635 -32.51717, 137.81657 -32.51735, 137.81677 -32.5175, 137.81699 -32.51767, 137.81717 -32.5178, 137.81742 -32.51797, 137.81791 -32.518279, 137.81827 -32.5185, 137.81833 -32.51854, 137.81838 -32.518569, 137.81901 -32.518949, 137.81957 -32.5193, 137.81962 -32.519329, 137.82005 -32.51959, 137.82065 -32.51997, 137.82127 -32.52035, 137.82167 -32.5206, 137.82185 -32.52071, 137.8222 -32.520919, 137.82258 -32.52116, 137.82299 -32.52141, 137.82329 -32.52159, 137.82374 -32.52187, 137.82406 -32.52207, 137.82425 -32.52218, 137.82466 -32.52244, 137.82505 -32.52268, 137.82534 -32.52286, 137.8257 -32.52309, 137.82593 -32.52324, 137.82676 -32.5238, 137.82719 -32.524099, 137.82745 -32.52429, 137.82781 -32.524549, 137.82817 -32.52481, 137.82861 -32.525109, 137.82894 -32.525329, 137.82919 -32.5255, 137.82933 -32.52559, 137.82944 -32.52566, 137.82949 -32.52572, 137.82955 -32.52576, 137.82963 -32.52581, 137.82979 -32.52591, 137.83013 -32.52612, 137.83066 -32.52644, 137.83113 -32.52673, 137.83199 -32.52726, 137.83213 -32.52734, 137.83232 -32.527459, 137.83254 -32.5276, 137.83271 -32.5277, 137.83414 -32.52857, 137.83572 -32.529539, 137.8398 -32.53204, 137.84029 -32.532339, 137.8419 -32.53333, 137.84463 -32.534999, 137.84985 -32.5382, 137.85219 -32.53962, 137.85303 -32.540149, 137.85354 -32.5405, 137.85401 -32.54084, 137.85428 -32.54105, 137.85462 -32.54133, 137.8549 -32.54157, 137.8552 -32.541829, 137.85565 -32.54227, 137.85602 -32.54267, 137.85633 -32.54301, 137.8566 -32.543329, 137.85672 -32.54348, 137.85701 -32.54387, 137.8571 -32.54399, 137.85721 -32.54414, 137.85728 -32.54423, 137.85796 -32.545119, 137.85881 -32.54628, 137.85901 -32.54655, 137.85925 -32.54688, 137.85981 -32.54768, 137.86012 -32.54811, 137.86082 -32.549039, 137.86123 -32.549599, 137.86324 -32.55234, 137.86453 -32.55409, 137.86487 -32.55455, 137.86534 -32.55522, 137.86576 -32.55581, 137.86583 -32.5559, 137.86636 -32.55668, 137.86705 -32.557699, 137.86789 -32.55895, 137.86854 -32.5599, 137.87014 -32.56228, 137.87063 -32.56301, 137.87216 -32.56527, 137.87414 -32.56821, 137.8763 -32.57139, 137.87665 -32.5719, 137.87672 -32.572, 137.87726 -32.57278, 137.87783 -32.57359, 137.8781 -32.57397, 137.87821 -32.574129, 137.8784 -32.57439, 137.87896 -32.57519, 137.87949 -32.57593, 137.87954 -32.576, 137.88153 -32.57882, 137.88285 -32.580669, 137.88375 -32.58195, 137.88408 -32.58241, 137.88442 -32.58289, 137.88493 -32.58361, 137.88505 -32.583779, 137.88522 -32.584, 137.88557 -32.58448, 137.88563 -32.58457, 137.88569 -32.58466, 137.88602 -32.58513, 137.88631 -32.58554, 137.88663 -32.58599, 137.88671 -32.586109, 137.88731 -32.58695, 137.88745 -32.587139, 137.88796 -32.58787, 137.88929 -32.58974, 137.89011 -32.59091, 137.89136 -32.59266, 137.89167 -32.593089, 137.89192 -32.59344, 137.89289 -32.59482, 137.89433 -32.59685, 137.89516 -32.59802, 137.89595 -32.59912, 137.89649 -32.59989, 137.89698 -32.60058, 137.89755 -32.60138, 137.89803 -32.60206, 137.89883 -32.6032, 137.89923 -32.60376, 137.89972 -32.60446, 137.9005 -32.605539, 137.90099 -32.60624, 137.90121 -32.60656, 137.90153 -32.60698, 137.90244 -32.60826, 137.90312 -32.609209, 137.90396 -32.61039, 137.90487 -32.611669, 137.90538 -32.612389, 137.90593 -32.61318, 137.90698 -32.614649, 137.90712 -32.614849, 137.9072 -32.61497, 137.90744 -32.615299, 137.90794 -32.616, 137.90855 -32.61687, 137.90888 -32.61735, 137.90939 -32.618049, 137.90963 -32.618409, 137.91041 -32.619529, 137.91066 -32.61988, 137.91102 -32.620379, 137.91186 -32.62157, 137.91194 -32.62169, 137.91237 -32.62229, 137.91313 -32.62336, 137.91339 -32.62373, 137.91366 -32.624119, 137.91397 -32.62455, 137.91426 -32.62498, 137.9148 -32.625709, 137.91495 -32.62592, 137.91512 -32.62615, 137.91519 -32.62625, 137.91537 -32.626489, 137.91566 -32.62688, 137.91583 -32.62713, 137.91608 -32.627519, 137.91628 -32.627789, 137.91643 -32.62801, 137.91654 -32.628169, 137.91688 -32.62863, 137.91696 -32.62876, 137.91709 -32.62895, 137.91723 -32.62915, 137.91729 -32.62923, 137.91755 -32.6296, 137.91772 -32.62984, 137.91833 -32.63069, 137.91842 -32.63082, 137.91858 -32.63105, 137.91892 -32.63152, 137.91903 -32.63167, 137.91959 -32.632489, 137.91972 -32.63268, 137.91984 -32.632869, 137.92002 -32.63315, 137.92044 -32.63383, 137.92077 -32.6344, 137.92131 -32.635399, 137.92168 -32.63613, 137.92195 -32.636699, 137.92241 -32.63776, 137.92273 -32.63859, 137.92297 -32.63926, 137.92311 -32.63967, 137.92329 -32.640259, 137.92355 -32.64119, 137.92405 -32.64307, 137.92474 -32.64567, 137.92518 -32.647309, 137.92544 -32.64828, 137.9258 -32.64965, 137.92611 -32.65081, 137.92703 -32.65424, 137.92723 -32.65493, 137.92761 -32.65618, 137.92802 -32.65746, 137.92849 -32.658839, 137.92879 -32.6597, 137.92888 -32.65993, 137.92891 -32.66002, 137.92911 -32.66055, 137.92938 -32.66127, 137.92973 -32.66217, 137.92991 -32.662619, 137.9304 -32.6638, 137.93091 -32.66501, 137.93154 -32.6665, 137.93176 -32.66702, 137.93186 -32.66725, 137.9321 -32.66781, 137.93256 -32.66893, 137.93266 -32.66915, 137.93315 -32.670319, 137.93359 -32.671349, 137.93396 -32.67223, 137.93429 -32.673009, 137.93449 -32.67346, 137.93466 -32.67387, 137.93483 -32.67425, 137.93525 -32.67524, 137.93548 -32.67579, 137.93579 -32.67653, 137.93609 -32.67723, 137.93677 -32.678849, 137.93721 -32.67992, 137.93744 -32.68048, 137.93778 -32.68135, 137.938 -32.68193, 137.9381 -32.6822, 137.93841 -32.68303, 137.9386 -32.68358, 137.93893 -32.68451, 137.93936 -32.685769, 137.93957 -32.686369, 137.9397 -32.68675, 137.94037 -32.68867, 137.94054 -32.68918, 137.94083 -32.69014, 137.94089 -32.69035, 137.94098 -32.690649, 137.94126 -32.69166, 137.94141 -32.69231, 137.94155 -32.692929, 137.94169 -32.693649, 137.94174 -32.6939, 137.94185 -32.694519, 137.94198 -32.69536, 137.94207 -32.69601, 137.94211 -32.696289, 137.94217 -32.696779, 137.94219 -32.69698, 137.94231 -32.69845, 137.94234 -32.69915, 137.94237 -32.70022, 137.94236 -32.70105, 137.94234 -32.702039, 137.9423 -32.702869, 137.94221 -32.703989, 137.94216 -32.70452, 137.94206 -32.70546, 137.94204 -32.705579, 137.94196 -32.70609, 137.94172 -32.70752, 137.94169 -32.70767, 137.94142 -32.708959, 137.94117 -32.71005, 137.94108 -32.71042, 137.94098 -32.71087, 137.94069 -32.71224, 137.94053 -32.71307, 137.94038 -32.71397, 137.94025 -32.714779, 137.94014 -32.71557, 137.94007 -32.71622, 137.93999 -32.716929, 137.93991 -32.71793, 137.93985 -32.71889, 137.9398 -32.720019, 137.93979 -32.720509, 137.93979 -32.721249, 137.93979 -32.721359, 137.93979 -32.7216, 137.9398 -32.72209, 137.9398 -32.72252, 137.93982 -32.722749, 137.93982 -32.72303, 137.93983 -32.72328, 137.93986 -32.72372, 137.93993 -32.7248, 137.94 -32.72554, 137.94006 -32.726219, 137.9401 -32.726529, 137.9402 -32.72729, 137.94031 -32.72811, 137.94038 -32.72861, 137.94051 -32.72952, 137.94056 -32.72988, 137.94081 -32.73173, 137.94125 -32.734879, 137.94139 -32.73593, 137.94158 -32.73728, 137.94174 -32.73812, 137.94197 -32.739179, 137.94218 -32.740029, 137.94233 -32.74055, 137.94249 -32.741059, 137.94268 -32.741639, 137.94297 -32.742449, 137.94326 -32.74319, 137.94363 -32.74404, 137.94388 -32.74458, 137.94456 -32.746029, 137.94481 -32.74655, 137.94497 -32.746899, 137.94511 -32.74719, 137.94522 -32.74743, 137.9457 -32.74845, 137.94616 -32.749429, 137.94812 -32.753619, 137.94934 -32.7562, 137.94971 -32.756999, 137.95013 -32.75789, 137.95099 -32.75974, 137.95153 -32.76089, 137.95193 -32.761789, 137.95214 -32.7623, 137.9523 -32.76272, 137.95259 -32.76352, 137.95285 -32.76431, 137.9531 -32.76515, 137.95321 -32.765569, 137.95338 -32.76624, 137.9535 -32.76679, 137.95361 -32.76735, 137.95375 -32.768169, 137.95386 -32.76885, 137.9539 -32.769219, 137.95397 -32.76992, 137.95402 -32.77058, 137.95405 -32.77118, 137.95409 -32.772039, 137.95409 -32.7725, 137.95409 -32.773159, 137.95408 -32.77335, 137.95405 -32.77402, 137.95401 -32.775109, 137.954 -32.77557, 137.95402 -32.776899, 137.95404 -32.77735, 137.9541 -32.778149, 137.95419 -32.779, 137.95427 -32.77962, 137.95436 -32.78017, 137.95445 -32.78071, 137.95461 -32.781509, 137.95479 -32.78226, 137.95496 -32.78294, 137.95503 -32.783189, 137.95518 -32.78373, 137.95551 -32.784709, 137.95567 -32.78522, 137.95593 -32.785939, 137.95639 -32.7872, 137.9565 -32.787509, 137.95676 -32.78824, 137.95752 -32.79038, 137.95804 -32.79182, 137.95887 -32.79415, 137.95913 -32.79489, 137.95944 -32.79573, 137.95975 -32.796639, 137.96003 -32.79741, 137.96067 -32.7992, 137.96081 -32.799599, 137.96123 -32.80064, 137.96138 -32.80099, 137.96178 -32.801859, 137.96209 -32.80249, 137.96241 -32.8031, 137.9626 -32.803449, 137.96289 -32.80395, 137.96329 -32.80463, 137.96377 -32.80538, 137.96396 -32.80567, 137.96402 -32.80576, 137.96406 -32.805819, 137.96428 -32.80614, 137.96465 -32.80666, 137.96476 -32.80681, 137.96509 -32.80728, 137.96566 -32.80807, 137.96568 -32.8081, 137.9658 -32.808259, 137.96634 -32.808999, 137.96646 -32.80917, 137.96706 -32.81, 137.96711 -32.81007, 137.96755 -32.81069, 137.96818 -32.81157, 137.96845 -32.81194, 137.96942 -32.813299, 137.97144 -32.81613, 137.97212 -32.817079, 137.97248 -32.81759, 137.97345 -32.818939, 137.97396 -32.81965, 137.97402 -32.81973, 137.97406 -32.81978, 137.97435 -32.8202, 137.97492 -32.82101, 137.97515 -32.82133, 137.97548 -32.82179, 137.97586 -32.822339, 137.97624 -32.82293, 137.97656 -32.82345, 137.9769 -32.824019, 137.97744 -32.824979, 137.9778 -32.82566, 137.97798 -32.826009, 137.97844 -32.82697, 137.97867 -32.8275, 137.97883 -32.827869, 137.97918 -32.828719, 137.97931 -32.82907, 137.97943 -32.8294, 137.97961 -32.82991, 137.97967 -32.8301, 137.97975 -32.83032, 137.97984 -32.83059, 137.98008 -32.83139, 137.98013 -32.83158, 137.98017 -32.831719, 137.98026 -32.832009, 137.98046 -32.83281, 137.98054 -32.83317, 137.98071 -32.83393, 137.98078 -32.83428, 137.98082 -32.83453, 137.9809 -32.835, 137.98103 -32.83583, 137.98112 -32.836599, 137.9812 -32.83733, 137.98128 -32.83861, 137.98137 -32.84015, 137.98139 -32.8407, 137.98146 -32.841839, 137.98147 -32.842059, 137.9815 -32.84257, 137.98154 -32.84322, 137.98154 -32.8433, 137.98157 -32.843809, 137.98161 -32.8446, 137.98169 -32.84603, 137.9817 -32.84619, 137.98171 -32.84646, 137.98173 -32.84678, 137.98176 -32.84724, 137.98178 -32.84761, 137.98179 -32.847929, 137.98181 -32.84832, 137.98185 -32.848869, 137.98186 -32.84911, 137.98188 -32.84957, 137.98192 -32.85073, 137.98194 -32.85108, 137.98199 -32.85205, 137.98201 -32.852249, 137.98203 -32.85257, 137.98207 -32.85308, 137.98208 -32.85325, 137.9821 -32.85369, 137.98213 -32.85443, 137.98217 -32.85622, 137.98217 -32.85875, 137.98218 -32.85922, 137.98218 -32.86039, 137.98219 -32.86097, 137.98217 -32.86157, 137.98217 -32.86249, 137.98218 -32.86387, 137.98218 -32.86489, 137.98218 -32.865519, 137.98218 -32.86601, 137.98219 -32.867089, 137.9822 -32.86846, 137.98219 -32.86909, 137.9822 -32.86992, 137.9822 -32.87119, 137.98221 -32.87265, 137.98221 -32.87348, 137.98222 -32.87382, 137.98223 -32.87449, 137.98224 -32.87525, 137.98224 -32.87636, 137.98225 -32.879109, 137.98227 -32.88353, 137.98228 -32.88534, 137.98229 -32.88723, 137.9823 -32.889069, 137.9823 -32.8893, 137.9823 -32.88935, 137.9823 -32.89024, 137.9823 -32.891129, 137.98231 -32.891689, 137.98231 -32.89265, 137.98231 -32.89332, 137.98231 -32.89369, 137.98231 -32.89459, 137.98231 -32.89526, 137.98232 -32.89618, 137.98232 -32.897419, 137.98232 -32.8983, 137.98233 -32.89943, 137.98234 -32.90038, 137.98234 -32.9012, 137.98235 -32.901539, 137.98236 -32.90203, 137.98236 -32.90233, 137.98236 -32.90269, 137.98236 -32.90347, 137.98237 -32.90553, 137.98236 -32.90739, 137.98237 -32.90907, 137.98237 -32.91052, 137.98237 -32.91146, 137.98237 -32.91181, 137.98237 -32.91192, 137.98237 -32.912439, 137.98236 -32.91417, 137.98236 -32.91464, 137.98236 -32.9151, 137.98236 -32.9161, 137.98236 -32.91716, 137.98237 -32.91834, 137.98237 -32.92038, 137.98237 -32.921999, 137.98237 -32.92271, 137.98238 -32.92345, 137.98238 -32.92411, 137.98238 -32.92439, 137.98238 -32.92497, 137.98239 -32.92622, 137.98239 -32.92699, 137.98239 -32.927169, 137.9824 -32.92964, 137.9824 -32.9309, 137.98242 -32.93481, 137.98243 -32.93643, 137.98243 -32.938989, 137.98244 -32.93977, 137.98244 -32.940689, 137.98245 -32.9429, 137.98246 -32.94617, 137.98247 -32.94909, 137.98249 -32.95639, 137.9825 -32.960479, 137.98251 -32.962739, 137.98251 -32.96391, 137.98252 -32.96492, 137.98252 -32.96636, 137.98253 -32.96797, 137.98253 -32.96933, 137.98254 -32.97023, 137.98254 -32.97048, 137.98254 -32.97068, 137.98252 -32.97108, 137.98252 -32.97157, 137.98254 -32.97232, 137.98259 -32.97316, 137.9826 -32.9733, 137.98261 -32.973419, 137.98265 -32.97377, 137.98276 -32.97461, 137.98282 -32.97506, 137.98292 -32.97563, 137.98299 -32.976, 137.98302 -32.976129, 137.98312 -32.976599, 137.98329 -32.97729, 137.98351 -32.97807, 137.98407 -32.98006, 137.98412 -32.98021, 137.98437 -32.981119, 137.98455 -32.98165, 137.9846 -32.981859, 137.98469 -32.98219, 137.98479 -32.98258, 137.98487 -32.98284, 137.98493 -32.98306, 137.98501 -32.9833, 137.98509 -32.983539, 137.98516 -32.983759, 137.98522 -32.98397, 137.98544 -32.98474, 137.98553 -32.985039, 137.98569 -32.98552, 137.98591 -32.98604, 137.98613 -32.98652, 137.98636 -32.98698, 137.98666 -32.98753, 137.98692 -32.98789, 137.98738 -32.9885, 137.98785 -32.98908, 137.98844 -32.98968, 137.98899 -32.9902, 137.98932 -32.99047, 137.98964 -32.99072, 137.99011 -32.991059, 137.99057 -32.99136, 137.99112 -32.9917, 137.99176 -32.99205, 137.99236 -32.99235, 137.9932 -32.9927, 137.99388 -32.99298, 137.99428 -32.993139, 137.99476 -32.99333, 137.99514 -32.99348, 137.9953 -32.99355, 137.99542 -32.9936, 137.99557 -32.99366, 137.99596 -32.99381, 137.99662 -32.994079, 137.99733 -32.99437, 137.99806 -32.99466, 137.9987 -32.994929, 137.99922 -32.99516, 137.99964 -32.995359, 137.99993 -32.9955, 138.00061 -32.99586, 138.00134 -32.99627, 138.00169 -32.99649, 138.00247 -32.997, 138.00291 -32.9973, 138.00361 -32.997839, 138.00413 -32.99823, 138.00479 -32.99882, 138.00531 -32.999299, 138.00563 -32.99963, 138.006 -33.00002, 138.00632 -33.00038, 138.00649 -33.00057, 138.00671 -33.00083, 138.0069 -33.00107, 138.00716 -33.00141, 138.00729 -33.001579, 138.0074 -33.00172, 138.00779 -33.00227, 138.00819 -33.00289, 138.00852 -33.00345, 138.00877 -33.00392, 138.00907 -33.00451, 138.00923 -33.004849, 138.00941 -33.00526, 138.00958 -33.00569, 138.00973 -33.00611, 138.00993 -33.00672, 138.01013 -33.00736, 138.01022 -33.00766, 138.01035 -33.008069, 138.01039 -33.00819, 138.01081 -33.00956, 138.0109 -33.00983, 138.01107 -33.010379, 138.01115 -33.01065, 138.01129 -33.01111, 138.01132 -33.0112, 138.01138 -33.01139, 138.01156 -33.01198, 138.01167 -33.012349, 138.0118 -33.01279, 138.01191 -33.01314, 138.01222 -33.014139, 138.01243 -33.014789, 138.01262 -33.01536, 138.01281 -33.015949, 138.01296 -33.016379, 138.0132 -33.01715, 138.01336 -33.01769, 138.01347 -33.01806, 138.01361 -33.01849, 138.01375 -33.01892, 138.01398 -33.01956, 138.01413 -33.01991, 138.01453 -33.02078, 138.01469 -33.02113, 138.01495 -33.02162, 138.01538 -33.02237, 138.01562 -33.022779, 138.01588 -33.0232, 138.01619 -33.02368, 138.01678 -33.02452, 138.01782 -33.02595, 138.01968 -33.0285, 138.02171 -33.0313, 138.02183 -33.03147, 138.02347 -33.03372, 138.02562 -33.03667, 138.02593 -33.0371, 138.02726 -33.038919, 138.02863 -33.04081, 138.02903 -33.04137, 138.02919 -33.04158, 138.02991 -33.04258, 138.0303 -33.04312, 138.03071 -33.0437, 138.03085 -33.0439, 138.03098 -33.0441, 138.03121 -33.044469, 138.03136 -33.044719, 138.03151 -33.04498, 138.03166 -33.04527, 138.03187 -33.045659, 138.03203 -33.04598, 138.0322 -33.04637, 138.03243 -33.04692, 138.03259 -33.04735, 138.03264 -33.04749, 138.03275 -33.04777, 138.03286 -33.048119, 138.03292 -33.04831, 138.03296 -33.04845, 138.03305 -33.048769, 138.03318 -33.04929, 138.03324 -33.04955, 138.0333 -33.04988, 138.03342 -33.05048, 138.03353 -33.05107, 138.03359 -33.051409, 138.03363 -33.051679, 138.03381 -33.05294, 138.03396 -33.053829, 138.03415 -33.05472, 138.03427 -33.05521, 138.03441 -33.05569, 138.03455 -33.05613, 138.03478 -33.05679, 138.03493 -33.05716, 138.03512 -33.05758, 138.03524 -33.057859, 138.03537 -33.05811, 138.03582 -33.05898, 138.0361 -33.05946, 138.03651 -33.060139, 138.03676 -33.06055, 138.03782 -33.062289, 138.03804 -33.062649, 138.03822 -33.06295, 138.03836 -33.06318, 138.03864 -33.06365, 138.03883 -33.06395, 138.03924 -33.064639, 138.03972 -33.06543, 138.04006 -33.06597, 138.04043 -33.06653, 138.04112 -33.06758, 138.0418 -33.06862, 138.0443 -33.072409, 138.04437 -33.072519, 138.04446 -33.07266, 138.04457 -33.07283, 138.04484 -33.07325, 138.0454 -33.07415, 138.04589 -33.075, 138.04655 -33.07611, 138.04663 -33.07625, 138.04683 -33.0766, 138.0471 -33.07705, 138.04739 -33.07754, 138.04778 -33.0782, 138.04802 -33.07865, 138.04841 -33.07931, 138.0485 -33.07945, 138.0489 -33.08014, 138.04953 -33.0812, 138.04966 -33.08141, 138.04999 -33.081989, 138.05091 -33.08355, 138.0518 -33.08504, 138.05241 -33.08605, 138.05269 -33.08652, 138.05298 -33.086979, 138.05316 -33.087249, 138.05358 -33.08786, 138.05378 -33.08813, 138.05411 -33.08856, 138.05439 -33.088929, 138.05473 -33.08935, 138.05495 -33.089619, 138.05516 -33.08983, 138.05537 -33.090069, 138.05554 -33.09026, 138.05588 -33.090629, 138.05603 -33.09078, 138.05668 -33.091479, 138.057 -33.09182, 138.05803 -33.09292, 138.05905 -33.093989, 138.06067 -33.0957, 138.06193 -33.09702, 138.06356 -33.09874, 138.06425 -33.09948, 138.06495 -33.10024, 138.06525 -33.10058, 138.06569 -33.1011, 138.06605 -33.10159, 138.06638 -33.10206, 138.06658 -33.102379, 138.06685 -33.10282, 138.06702 -33.10311, 138.06709 -33.10325, 138.06717 -33.1034, 138.06728 -33.10363, 138.06741 -33.10392, 138.06757 -33.10434, 138.06765 -33.10461, 138.06776 -33.10492, 138.06779 -33.10503, 138.06793 -33.10548, 138.06801 -33.1058, 138.06812 -33.106299, 138.06822 -33.10684, 138.06825 -33.107059, 138.06829 -33.107439, 138.06833 -33.10795, 138.06835 -33.108469, 138.06835 -33.10909, 138.06836 -33.10965, 138.06836 -33.11029, 138.06836 -33.11105, 138.06836 -33.111559, 138.06836 -33.11245, 138.06836 -33.11405, 138.06836 -33.11566, 138.06835 -33.11703, 138.06835 -33.11802, 138.06835 -33.11865, 138.06835 -33.11987, 138.06836 -33.1211, 138.06835 -33.12337, 138.06835 -33.12377, 138.06835 -33.12444, 138.06835 -33.12757, 138.06835 -33.12801, 138.06835 -33.12847, 138.06835 -33.12904, 138.06835 -33.1297, 138.06835 -33.1315, 138.06835 -33.133429, 138.06835 -33.13395, 138.06836 -33.13434, 138.06837 -33.13509, 138.06838 -33.13542, 138.06838 -33.13574, 138.06838 -33.13669, 138.06837 -33.13902, 138.06837 -33.14009, 138.06838 -33.140639, 138.06837 -33.14309, 138.06837 -33.143389, 138.06837 -33.14436, 138.06837 -33.14485, 138.06835 -33.145159, 138.06835 -33.145699, 138.06835 -33.14653, 138.06835 -33.14737, 138.06835 -33.14782, 138.06835 -33.14839, 138.06834 -33.148739, 138.06834 -33.150309, 138.06834 -33.15346, 138.06834 -33.1541, 138.06834 -33.154719, 138.06833 -33.15511, 138.06831 -33.15549, 138.06829 -33.15573, 138.06824 -33.15618, 138.06816 -33.15668, 138.06814 -33.15681, 138.06808 -33.157089, 138.06804 -33.15731, 138.06796 -33.15761, 138.0679 -33.15784, 138.06776 -33.15831, 138.06764 -33.15867, 138.06749 -33.1591, 138.0673 -33.159619, 138.06718 -33.16001, 138.06705 -33.16058, 138.06701 -33.160809, 138.06698 -33.16104, 138.06696 -33.1612, 138.06692 -33.1616, 138.06691 -33.16182, 138.06691 -33.16236, 138.06693 -33.162799, 138.06692 -33.16335, 138.06693 -33.16387, 138.06693 -33.16414, 138.06692 -33.16446, 138.06693 -33.164769, 138.06694 -33.16507, 138.06697 -33.16534, 138.067 -33.165619, 138.06706 -33.16585, 138.06715 -33.16613, 138.06722 -33.16635, 138.06734 -33.16669, 138.06744 -33.167, 138.06768 -33.16737, 138.06779 -33.16764, 138.06792 -33.16799, 138.06794 -33.16803, 138.06804 -33.168329, 138.06808 -33.16846, 138.06813 -33.16861, 138.06818 -33.16877, 138.06824 -33.16899, 138.06829 -33.169269, 138.06831 -33.169559, 138.0683 -33.16999, 138.0683 -33.171, 138.0683 -33.17215, 138.0683 -33.17394, 138.0683 -33.17401, 138.0683 -33.17747, 138.0683 -33.179789, 138.0683 -33.18207, 138.06831 -33.18246, 138.06831 -33.1836, 138.06831 -33.18539, 138.0683 -33.18609, 138.0683 -33.18771, 138.0683 -33.1882, 138.0683 -33.18869, 138.06833 -33.18919, 138.06839 -33.18965, 138.06844 -33.18992, 138.06849 -33.19014, 138.06862 -33.190559, 138.06872 -33.19083, 138.06888 -33.19118, 138.06905 -33.191499, 138.06922 -33.19178, 138.06942 -33.19207, 138.06959 -33.1923, 138.06975 -33.19249, 138.06994 -33.19269, 138.07015 -33.192909, 138.07039 -33.193129, 138.0707 -33.19339, 138.07107 -33.19366, 138.07135 -33.19384, 138.07176 -33.19409, 138.07235 -33.194429, 138.07305 -33.194809, 138.07334 -33.194969, 138.07391 -33.195279, 138.07407 -33.19533, 138.07424 -33.19543, 138.07457 -33.19561, 138.07503 -33.19586, 138.07548 -33.196109, 138.07571 -33.19623, 138.07593 -33.19635, 138.07637 -33.19659, 138.07666 -33.196759, 138.07703 -33.19698, 138.07749 -33.19721, 138.07768 -33.1973, 138.07792 -33.1974, 138.07794 -33.197409, 138.07838 -33.19757, 138.07852 -33.19762, 138.07907 -33.197809, 138.07931 -33.19789, 138.07971 -33.19802, 138.07992 -33.19809, 138.08006 -33.19818, 138.08029 -33.19825, 138.08083 -33.19843, 138.08102 -33.19849, 138.08197 -33.19881, 138.08226 -33.19892, 138.08247 -33.198999, 138.08296 -33.199199, 138.08333 -33.19937, 138.08359 -33.1995, 138.08372 -33.19956, 138.08427 -33.199849, 138.08437 -33.1999, 138.08446 -33.19995, 138.08475 -33.20011, 138.08502 -33.20027, 138.0853 -33.20046, 138.08571 -33.20075, 138.08648 -33.20132, 138.08674 -33.20153, 138.08713 -33.201839, 138.08726 -33.201949, 138.08747 -33.202129, 138.08767 -33.202309, 138.08789 -33.202509, 138.08818 -33.20277, 138.08863 -33.203249, 138.08878 -33.2034, 138.08906 -33.203699, 138.0903 -33.20503, 138.09089 -33.205669, 138.09187 -33.206719, 138.09229 -33.20716, 138.09295 -33.20789, 138.09344 -33.20841, 138.09366 -33.20864, 138.09399 -33.20901, 138.09413 -33.20917, 138.09471 -33.2098, 138.09541 -33.210549, 138.09564 -33.21081, 138.09572 -33.21089, 138.09593 -33.21112, 138.09602 -33.21121, 138.09648 -33.211709, 138.09715 -33.21244, 138.09743 -33.212739, 138.09802 -33.213389, 138.0991 -33.21455, 138.10098 -33.21661, 138.10171 -33.217399, 138.10186 -33.21756, 138.10247 -33.21823, 138.10252 -33.21828, 138.10263 -33.2184, 138.10272 -33.2185, 138.10287 -33.218649, 138.10308 -33.21887, 138.10337 -33.21918, 138.10354 -33.219369, 138.10392 -33.219769, 138.10414 -33.22, 138.10423 -33.22011, 138.10432 -33.22021, 138.10464 -33.22055, 138.10493 -33.22086, 138.10521 -33.22117, 138.10531 -33.22128, 138.10549 -33.221469, 138.10561 -33.22159, 138.10597 -33.22197, 138.10616 -33.22218, 138.10648 -33.22253, 138.10694 -33.22303, 138.1071 -33.2232, 138.10788 -33.22404, 138.10834 -33.224539, 138.10846 -33.22467, 138.10949 -33.22579, 138.11019 -33.22656, 138.11088 -33.2273, 138.11206 -33.228569, 138.11294 -33.229529, 138.11353 -33.23017, 138.11435 -33.23106, 138.11559 -33.23241, 138.11588 -33.23272, 138.11635 -33.23321, 138.11694 -33.23384, 138.11713 -33.23404, 138.11749 -33.23442, 138.11791 -33.234859, 138.11815 -33.235129, 138.11839 -33.23539, 138.11867 -33.23569, 138.11894 -33.235999, 138.11908 -33.23616, 138.11929 -33.236379, 138.11961 -33.23666, 138.11976 -33.23678, 138.11983 -33.23684, 138.12005 -33.237, 138.12045 -33.23727, 138.12066 -33.2374, 138.12105 -33.23767, 138.12138 -33.23792, 138.12146 -33.238, 138.12149 -33.23803, 138.12162 -33.23816, 138.12179 -33.23834, 138.12186 -33.23841, 138.12192 -33.23848, 138.12208 -33.2387, 138.12223 -33.23892, 138.12236 -33.23912, 138.12292 -33.23999, 138.12349 -33.2409, 138.12355 -33.240989, 138.12414 -33.2419, 138.12452 -33.24254, 138.12479 -33.243029, 138.12526 -33.24391, 138.12546 -33.24427, 138.12574 -33.24481, 138.1259 -33.2451, 138.126 -33.24526, 138.12602 -33.2453, 138.12618 -33.24554, 138.12646 -33.2459, 138.1267 -33.24616, 138.12699 -33.24642, 138.12724 -33.24663, 138.12778 -33.24703, 138.12854 -33.24759, 138.13007 -33.24871, 138.13022 -33.24882, 138.13094 -33.24933, 138.13112 -33.24946, 138.1314 -33.24967, 138.1322 -33.25025, 138.13317 -33.25096, 138.13693 -33.25372, 138.13794 -33.254469, 138.13922 -33.2554, 138.13979 -33.25582, 138.14074 -33.25652, 138.14175 -33.25725, 138.14227 -33.25763, 138.14314 -33.25827, 138.14375 -33.25874, 138.14426 -33.25912, 138.1448 -33.25951, 138.14536 -33.25992, 138.14607 -33.26044, 138.1484 -33.26215, 138.14848 -33.26221, 138.14888 -33.26251, 138.14911 -33.26269, 138.1496 -33.26309, 138.15013 -33.26356, 138.1505 -33.26391, 138.15081 -33.2642, 138.1512 -33.264609, 138.1516 -33.26504, 138.15205 -33.26556, 138.1523 -33.26588, 138.1524 -33.26601, 138.15247 -33.2661, 138.15274 -33.266489, 138.15286 -33.26666, 138.15305 -33.26693, 138.15323 -33.26721, 138.15351 -33.26765, 138.15374 -33.26804, 138.15385 -33.26824, 138.15406 -33.268639, 138.15426 -33.26905, 138.1544 -33.26935, 138.15467 -33.26997, 138.15485 -33.27042, 138.15531 -33.2716, 138.15561 -33.272399, 138.15601 -33.273449, 138.15641 -33.274459, 138.15718 -33.27644, 138.15787 -33.27825, 138.15919 -33.28163, 138.16011 -33.28399, 138.16047 -33.28491, 138.16109 -33.286409, 138.16151 -33.28734, 138.16203 -33.288379, 138.16259 -33.28945, 138.16304 -33.290239, 138.16328 -33.29064, 138.16363 -33.29122, 138.16367 -33.29128, 138.16417 -33.29205, 138.16438 -33.29236, 138.16482 -33.293, 138.16516 -33.29347, 138.16552 -33.29395, 138.16597 -33.29455, 138.16622 -33.294849, 138.16665 -33.29537, 138.16721 -33.296039, 138.16783 -33.29675, 138.16824 -33.297199, 138.16889 -33.29789, 138.16952 -33.29852, 138.1699 -33.29889, 138.1703 -33.29927, 138.17102 -33.29997, 138.17129 -33.30024, 138.17135 -33.3003, 138.17199 -33.30089, 138.17288 -33.30175, 138.1732 -33.30207, 138.17372 -33.30257, 138.17434 -33.303199, 138.17513 -33.304049, 138.17568 -33.30467, 138.17659 -33.30576, 138.17695 -33.30621, 138.17735 -33.30673, 138.17789 -33.30745, 138.17833 -33.30807, 138.1786 -33.308459, 138.17882 -33.30877, 138.17933 -33.30948, 138.18007 -33.31055, 138.18036 -33.31098, 138.18083 -33.31165, 138.18154 -33.31264, 138.18204 -33.31337, 138.18275 -33.314369, 138.18327 -33.31508, 138.18342 -33.3153, 138.18348 -33.31539, 138.1838 -33.315869, 138.18394 -33.316119, 138.18398 -33.31618, 138.18425 -33.31667, 138.18451 -33.31721, 138.18472 -33.31768, 138.18483 -33.31799, 138.18501 -33.318489, 138.18516 -33.31899, 138.1853 -33.31958, 138.18535 -33.319809, 138.18543 -33.32036, 138.18547 -33.3209, 138.18549 -33.32141, 138.18548 -33.32182, 138.18544 -33.322229, 138.1854 -33.32257, 138.18532 -33.32303, 138.18526 -33.323349, 138.18513 -33.323839, 138.18497 -33.32432, 138.1848 -33.32477, 138.18467 -33.32512, 138.18435 -33.32584, 138.18418 -33.32622, 138.1839 -33.32683, 138.18372 -33.327289, 138.18346 -33.32795, 138.18323 -33.328539, 138.18284 -33.329479, 138.18245 -33.33045, 138.18222 -33.33102, 138.18205 -33.331429, 138.18203 -33.33149, 138.182 -33.33156, 138.18197 -33.33164, 138.18182 -33.332, 138.18127 -33.33334, 138.18097 -33.334069, 138.18024 -33.33587, 138.17987 -33.33681, 138.17969 -33.33733, 138.17951 -33.33784, 138.17943 -33.33809, 138.17928 -33.3386, 138.17915 -33.339109, 138.1791 -33.3393, 138.17904 -33.33952, 138.1789 -33.34017, 138.17872 -33.34103, 138.1786 -33.34182, 138.17853 -33.34238, 138.17851 -33.342619, 138.17846 -33.34308, 138.17843 -33.34348, 138.17835 -33.344389, 138.17831 -33.34487, 138.17823 -33.345709, 138.17819 -33.34626, 138.17803 -33.347929, 138.17793 -33.34896, 138.17789 -33.34942, 138.17788 -33.34958, 138.1778 -33.35042, 138.17772 -33.35128, 138.1777 -33.35157, 138.17766 -33.35203, 138.17762 -33.352359, 138.17758 -33.35271, 138.17756 -33.35291, 138.17751 -33.35344, 138.17746 -33.35383, 138.17741 -33.35434, 138.17738 -33.35463, 138.17734 -33.354979, 138.17726 -33.35578, 138.17719 -33.356699, 138.17709 -33.35761, 138.177 -33.35834, 138.17691 -33.35906, 138.17683 -33.35962, 138.1768 -33.35983, 138.17675 -33.36014, 138.17663 -33.360999, 138.1765 -33.36184, 138.17637 -33.36255, 138.17602 -33.36435, 138.17575 -33.365679, 138.17548 -33.36707, 138.17516 -33.36872, 138.1751 -33.369, 138.17491 -33.36999, 138.17486 -33.37022, 138.17467 -33.3712, 138.17442 -33.37248, 138.17435 -33.37287, 138.17426 -33.37326, 138.17404 -33.37442, 138.17382 -33.375529, 138.17356 -33.37686, 138.17348 -33.37729, 138.17331 -33.378169, 138.17327 -33.378369, 138.17305 -33.37941, 138.17266 -33.38123, 138.17228 -33.38297, 138.17205 -33.384, 138.17187 -33.38481, 138.17182 -33.384999, 138.17178 -33.38517, 138.17174 -33.38535, 138.17157 -33.386049, 138.17147 -33.38647, 138.17139 -33.38677, 138.17126 -33.38739, 138.17103 -33.3885, 138.17097 -33.38875, 138.17094 -33.38889, 138.17082 -33.38946, 138.17071 -33.38998, 138.17064 -33.39031, 138.17023 -33.39206, 138.1701 -33.39259, 138.17002 -33.392919, 138.16995 -33.3932, 138.16983 -33.39361, 138.16965 -33.39428, 138.16946 -33.39493, 138.16937 -33.395229, 138.16922 -33.39569, 138.16915 -33.39595, 138.16892 -33.396659, 138.16853 -33.397759, 138.16822 -33.398609, 138.16803 -33.39915, 138.16795 -33.399369, 138.16779 -33.39978, 138.16749 -33.40062, 138.16721 -33.40139, 138.16705 -33.40182, 138.16703 -33.40187, 138.16686 -33.40233, 138.16659 -33.40301, 138.16649 -33.40323, 138.16605 -33.40423, 138.16589 -33.40458, 138.16556 -33.40531, 138.16531 -33.40585, 138.16506 -33.40641, 138.165 -33.406529, 138.16463 -33.40735, 138.16443 -33.40779, 138.16434 -33.40798, 138.16362 -33.40956, 138.16353 -33.40976, 138.16311 -33.4107, 138.16282 -33.41131, 138.1623 -33.41246, 138.16187 -33.41341, 138.16181 -33.41355, 138.16176 -33.41366, 138.16167 -33.413849, 138.16148 -33.41426, 138.16139 -33.41447, 138.16099 -33.41534, 138.16079 -33.41576, 138.16066 -33.41606, 138.16059 -33.41621, 138.16036 -33.416719, 138.16033 -33.41678, 138.16019 -33.41708, 138.16007 -33.41734, 138.1596 -33.41836, 138.15948 -33.41863, 138.15934 -33.41893, 138.15832 -33.421169, 138.158 -33.42187, 138.15776 -33.4224, 138.15739 -33.42322, 138.15654 -33.425069, 138.15596 -33.42634, 138.15552 -33.42732, 138.15534 -33.427729, 138.15504 -33.42841, 138.1545 -33.42962, 138.15389 -33.43103, 138.15384 -33.43115, 138.15375 -33.43137, 138.15363 -33.43171, 138.15358 -33.43187, 138.15345 -33.432229, 138.15336 -33.43253, 138.15322 -33.43302, 138.15304 -33.43372, 138.15287 -33.434649, 138.15275 -33.4354, 138.1527 -33.43585, 138.15268 -33.43603, 138.15266 -33.4363, 138.15263 -33.43667, 138.15261 -33.43707, 138.15261 -33.43773, 138.15264 -33.43845, 138.1527 -33.43931, 138.15273 -33.43966, 138.15279 -33.44006, 138.15283 -33.44035, 138.15292 -33.44084, 138.153 -33.44126, 138.15307 -33.44154, 138.15328 -33.442349, 138.15337 -33.4427, 138.15347 -33.44298, 138.1538 -33.44391, 138.15405 -33.444519, 138.15435 -33.44525, 138.15513 -33.4471, 138.15519 -33.447249, 138.15544 -33.44786, 138.15547 -33.44792, 138.15563 -33.44831, 138.15608 -33.44937, 138.15623 -33.44974, 138.1567 -33.45085, 138.15804 -33.454079, 138.15837 -33.45485, 138.15894 -33.456229, 138.16021 -33.459249, 138.16068 -33.460389, 138.16112 -33.46144, 138.16134 -33.461959, 138.16155 -33.46248, 138.16233 -33.46436, 138.1633 -33.466679, 138.1639 -33.46812, 138.16435 -33.46914, 138.16457 -33.46963, 138.16501 -33.470529, 138.16566 -33.47169, 138.16617 -33.47255, 138.16649 -33.47308, 138.16722 -33.47419, 138.16836 -33.47591, 138.17001 -33.47837, 138.17097 -33.47983, 138.1716 -33.480739, 138.17209 -33.48138, 138.17331 -33.48283, 138.17427 -33.48397, 138.17523 -33.48512, 138.17601 -33.48606, 138.17785 -33.488259, 138.17853 -33.48912, 138.17871 -33.48935, 138.17904 -33.48981, 138.17928 -33.49019, 138.17959 -33.490679, 138.17995 -33.4913, 138.18019 -33.49176, 138.18035 -33.49208, 138.18066 -33.49279, 138.1807 -33.49288, 138.18088 -33.49331, 138.18101 -33.49363, 138.18127 -33.49432, 138.1815 -33.4949, 138.18189 -33.49593, 138.18201 -33.49624, 138.18316 -33.49927, 138.18379 -33.50092, 138.18416 -33.5019, 138.18423 -33.50209, 138.18428 -33.502209, 138.1847 -33.50333, 138.18503 -33.504179, 138.18512 -33.50442, 138.1854 -33.50517, 138.18569 -33.50595, 138.18617 -33.50723, 138.18621 -33.50734, 138.1874 -33.51045, 138.18793 -33.511809, 138.18828 -33.512639, 138.18854 -33.51317, 138.1889 -33.51383, 138.18911 -33.5142, 138.18943 -33.51471, 138.18994 -33.515459, 138.1903 -33.51596, 138.19092 -33.51671, 138.19164 -33.51751, 138.1924 -33.51824, 138.19309 -33.51885, 138.1939 -33.5195, 138.19508 -33.52047, 138.1963 -33.52145, 138.19724 -33.52221, 138.19799 -33.522799, 138.19811 -33.522889, 138.19827 -33.52302, 138.19878 -33.523449, 138.19926 -33.523829, 138.20055 -33.52487, 138.20067 -33.52497, 138.20089 -33.52514, 138.20169 -33.525779, 138.20341 -33.527189, 138.2062 -33.529449, 138.20781 -33.53076, 138.20807 -33.53097, 138.20821 -33.53108, 138.20872 -33.531489, 138.20901 -33.53172, 138.20925 -33.53191, 138.20954 -33.532159, 138.20973 -33.53231, 138.21032 -33.53278, 138.2118 -33.53399, 138.2122 -33.53434, 138.21244 -33.53455, 138.21301 -33.5351, 138.21335 -33.53544, 138.21358 -33.5357, 138.21378 -33.53593, 138.21415 -33.53638, 138.21431 -33.53658, 138.21439 -33.53669, 138.21458 -33.53694, 138.21466 -33.53705, 138.21478 -33.537219, 138.2149 -33.537399, 138.21505 -33.53763, 138.21519 -33.53785, 138.21533 -33.53808, 138.21547 -33.53832, 138.21572 -33.53878, 138.21588 -33.53908, 138.21601 -33.53935, 138.21629 -33.53996, 138.21654 -33.54052, 138.21669 -33.540889, 138.21728 -33.54227, 138.21746 -33.5427, 138.21828 -33.54469, 138.21854 -33.54534, 138.21948 -33.54778, 138.22003 -33.5493, 138.2201 -33.5495, 138.22018 -33.549709, 138.22063 -33.551009, 138.22086 -33.55167, 138.22091 -33.55181, 138.22108 -33.552329, 138.22128 -33.55284, 138.22131 -33.55293, 138.22142 -33.553269, 138.22163 -33.5539, 138.22241 -33.55618, 138.22354 -33.55951, 138.2241 -33.56117, 138.22414 -33.5613, 138.22434 -33.56193, 138.2245 -33.5626, 138.22463 -33.56341, 138.22467 -33.56382, 138.22469 -33.56431, 138.22469 -33.5653, 138.22469 -33.56555, 138.22469 -33.5661, 138.22469 -33.56722, 138.22469 -33.56751, 138.22467 -33.56867, 138.22467 -33.56991, 138.22467 -33.57001, 138.22466 -33.57232, 138.22467 -33.57287, 138.22466 -33.57438, 138.22466 -33.57598, 138.22466 -33.57918, 138.22465 -33.58039, 138.22465 -33.58337, 138.22465 -33.58762, 138.22465 -33.58926, 138.22464 -33.59516, 138.22464 -33.60164, 138.22464 -33.60221, 138.22464 -33.60321, 138.22463 -33.6044, 138.22463 -33.60742, 138.22467 -33.60905, 138.22473 -33.6102, 138.22484 -33.61146, 138.22488 -33.61191, 138.22499 -33.61283, 138.225 -33.61291, 138.22504 -33.61314, 138.2251 -33.61357, 138.22528 -33.61482, 138.22547 -33.61608, 138.22558 -33.61685, 138.22561 -33.61703, 138.22584 -33.61869, 138.22599 -33.61964, 138.22631 -33.62188, 138.22667 -33.62433, 138.22696 -33.62627, 138.22709 -33.62719, 138.22717 -33.62785, 138.22725 -33.6288, 138.22727 -33.62965, 138.22727 -33.63078, 138.22727 -33.63157, 138.22728 -33.63228, 138.22728 -33.63609, 138.22729 -33.63856, 138.22731 -33.6444, 138.22731 -33.64869, 138.22733 -33.65121, 138.22733 -33.65281, 138.2273 -33.65409, 138.22725 -33.6548, 138.22718 -33.65532, 138.22707 -33.65595, 138.2269 -33.65671, 138.22674 -33.65729, 138.22655 -33.65789, 138.22618 -33.65885, 138.22559 -33.6603, 138.22549 -33.66055, 138.22443 -33.66318, 138.22418 -33.6638, 138.22358 -33.66529, 138.22338 -33.66576, 138.22332 -33.6659, 138.22321 -33.66615, 138.22304 -33.66661, 138.22272 -33.6674, 138.22239 -33.66819, 138.22216 -33.66876, 138.22188 -33.66944, 138.22158 -33.67018, 138.22093 -33.67178, 138.22064 -33.67249, 138.21993 -33.67424, 138.21956 -33.67519, 138.21926 -33.67592, 138.21891 -33.67678, 138.2187 -33.6773, 138.21867 -33.67738, 138.21828 -33.67828, 138.21807 -33.67883, 138.21795 -33.67914, 138.21781 -33.67954, 138.21765 -33.67991, 138.21738 -33.68059, 138.21711 -33.68124, 138.21695 -33.68164, 138.21679 -33.68206, 138.21666 -33.68238, 138.2165 -33.6828, 138.21644 -33.68294, 138.21583 -33.68444, 138.21549 -33.6852, 138.21521 -33.6858, 138.21502 -33.68618, 138.2148 -33.6866, 138.21453 -33.68708, 138.21433 -33.68743, 138.21383 -33.68826, 138.21362 -33.68864, 138.21327 -33.68935, 138.21299 -33.69005, 138.21279 -33.69072, 138.21255 -33.69179, 138.21242 -33.6924, 138.21219 -33.69355, 138.21192 -33.69508, 138.21182 -33.69576, 138.21176 -33.69642, 138.21173 -33.69693, 138.21171 -33.69731, 138.21171 -33.69785, 138.2117 -33.69846, 138.21171 -33.69882, 138.21171 -33.69917, 138.21172 -33.69968, 138.21173 -33.70062, 138.21174 -33.70132, 138.21175 -33.70191, 138.21176 -33.70261, 138.21176 -33.7033, 138.21176 -33.70406, 138.21175 -33.70473, 138.21175 -33.70486, 138.21175 -33.70537, 138.21173 -33.70574, 138.21173 -33.70586, 138.21172 -33.70611, 138.21172 -33.70618, 138.2117 -33.70646, 138.21168 -33.70687, 138.21167 -33.70717, 138.21164 -33.70795, 138.21152 -33.71036, 138.21146 -33.71152, 138.21144 -33.71211, 138.21139 -33.7131, 138.21134 -33.71418, 138.2113 -33.71501, 138.21129 -33.71527, 138.21126 -33.71573, 138.21123 -33.71648, 138.21118 -33.71732, 138.21116 -33.71775, 138.21115 -33.71796, 138.21112 -33.71856, 138.21111 -33.71874, 138.21108 -33.71922, 138.21107 -33.71945, 138.21102 -33.72036, 138.21102 -33.7204, 138.21093 -33.72226, 138.21078 -33.72528, 138.2107 -33.72713, 138.21052 -33.7307, 138.21044 -33.73236, 138.2104 -33.73344, 138.21027 -33.73593, 138.21021 -33.73714, 138.21018 -33.73758, 138.21015 -33.73843, 138.21011 -33.73939, 138.21007 -33.74033, 138.21004 -33.74104, 138.20997 -33.74245, 138.20991 -33.74348, 138.20981 -33.74472, 138.2098 -33.74491, 138.20977 -33.74523, 138.20976 -33.74541, 138.20973 -33.74581, 138.2097 -33.74627, 138.20963 -33.74759, 138.20961 -33.74831, 138.20961 -33.74883, 138.20961 -33.74908, 138.20963 -33.74959, 138.20965 -33.75023, 138.20972 -33.75122, 138.20981 -33.75198, 138.20993 -33.75286, 138.21008 -33.75369, 138.21036 -33.75507, 138.21061 -33.75625, 138.21077 -33.75698, 138.21092 -33.75764, 138.21109 -33.75843, 138.21113 -33.7587, 138.21118 -33.75895, 138.21122 -33.75915, 138.21134 -33.75972, 138.21153 -33.76063, 138.21174 -33.76162, 138.21176 -33.76172, 138.21193 -33.76247, 138.21206 -33.76323, 138.21212 -33.7636, 138.21217 -33.76406, 138.21222 -33.76457, 138.21225 -33.76517, 138.21226 -33.76582, 138.21226 -33.76609, 138.21227 -33.76684, 138.21228 -33.76807, 138.21228 -33.76895, 138.21229 -33.76992, 138.2123 -33.77129, 138.2123 -33.77155, 138.2123 -33.77173, 138.2123 -33.77204, 138.21231 -33.77228, 138.21232 -33.77262, 138.21232 -33.77269, 138.21231 -33.77285, 138.21231 -33.77304, 138.2123 -33.77327, 138.21228 -33.77358, 138.21228 -33.7736, 138.21226 -33.77381, 138.21225 -33.77387, 138.21221 -33.77413, 138.21219 -33.77425, 138.21215 -33.77444, 138.21207 -33.77472, 138.21194 -33.77509, 138.2119 -33.77522, 138.21179 -33.77548, 138.2115 -33.77606, 138.21133 -33.77636, 138.21127 -33.77645, 138.211 -33.77688, 138.21086 -33.7771, 138.2107 -33.77733, 138.21037 -33.77781, 138.21023 -33.77802, 138.20995 -33.77843, 138.20987 -33.77855, 138.20923 -33.77949, 138.20903 -33.77978, 138.20872 -33.7802, 138.2086 -33.78039, 138.20844 -33.78061, 138.20814 -33.7811, 138.20785 -33.78161, 138.2076 -33.7821, 138.20739 -33.78259, 138.2072 -33.78311, 138.20711 -33.78344, 138.20705 -33.78368, 138.20692 -33.78424, 138.20681 -33.78501, 138.20675 -33.78551, 138.20673 -33.78587, 138.20673 -33.78609, 138.20677 -33.78666, 138.20679 -33.78689, 138.2068 -33.78697, 138.20681 -33.78711, 138.20685 -33.78738, 138.20693 -33.78775, 138.20696 -33.78791, 138.207 -33.78805, 138.20712 -33.78854, 138.20725 -33.78893, 138.20736 -33.78922, 138.20751 -33.78959, 138.20757 -33.78972, 138.20765 -33.78989, 138.20775 -33.7901, 138.20782 -33.79025, 138.20803 -33.79068, 138.20826 -33.79113, 138.20878 -33.79222, 138.20894 -33.79255, 138.20911 -33.79289, 138.20947 -33.79362, 138.20953 -33.79373, 138.20982 -33.79431, 138.21003 -33.79475, 138.21022 -33.79516, 138.21039 -33.7955, 138.21053 -33.79584, 138.21075 -33.79646, 138.21088 -33.79692, 138.21094 -33.79716, 138.211 -33.79752, 138.21104 -33.79788, 138.21107 -33.79817, 138.21107 -33.79871, 138.21105 -33.79938, 138.21102 -33.79984, 138.21101 -33.80015, 138.21098 -33.80067, 138.21095 -33.80125, 138.2109 -33.80227, 138.21086 -33.80277, 138.21084 -33.80312, 138.21077 -33.80376, 138.21071 -33.80417, 138.21067 -33.80436, 138.2106 -33.80472, 138.21051 -33.8051, 138.21047 -33.80526, 138.21034 -33.80569, 138.21015 -33.80625, 138.21006 -33.80648, 138.21001 -33.80661, 138.20992 -33.80686, 138.20968 -33.80747, 138.20962 -33.80763, 138.20945 -33.80806, 138.20931 -33.8084, 138.20928 -33.80847, 138.20922 -33.80863, 138.20911 -33.80889, 138.20899 -33.80918, 138.20895 -33.80928, 138.20879 -33.80966, 138.20858 -33.81018, 138.20842 -33.81056, 138.20829 -33.81089, 138.20792 -33.81175, 138.20775 -33.81213, 138.20759 -33.81252, 138.20726 -33.81336, 138.20688 -33.8143, 138.20671 -33.81469, 138.2065 -33.81523, 138.20636 -33.81557, 138.20607 -33.8162, 138.20584 -33.81662, 138.20563 -33.817, 138.20545 -33.81727, 138.2052 -33.81763, 138.20492 -33.81798, 138.20393 -33.81915, 138.20347 -33.81966, 138.2031 -33.82009, 138.2028 -33.82045, 138.20257 -33.82072, 138.20231 -33.82107, 138.20205 -33.82144, 138.20178 -33.82187, 138.20161 -33.82215, 138.2015 -33.82237, 138.20139 -33.82258, 138.20116 -33.8231, 138.20093 -33.82363, 138.20084 -33.82385, 138.20082 -33.8239, 138.20052 -33.82467, 138.20036 -33.82509, 138.20007 -33.82584, 138.2 -33.82601, 138.19962 -33.82695, 138.19907 -33.8283, 138.19845 -33.82982, 138.19811 -33.83063, 138.19777 -33.83148, 138.19725 -33.83276, 138.19716 -33.833, 138.19677 -33.83395, 138.1962 -33.83536, 138.19588 -33.83612, 138.19579 -33.83635, 138.19569 -33.83659, 138.19557 -33.83689, 138.19508 -33.83804, 138.19488 -33.83854, 138.19458 -33.83926, 138.19454 -33.83937, 138.19431 -33.83993, 138.19415 -33.84035, 138.19389 -33.84098, 138.19359 -33.84171, 138.19332 -33.84237, 138.19322 -33.84263, 138.19301 -33.84315, 138.1928 -33.84368, 138.19276 -33.84377, 138.19225 -33.84501, 138.19205 -33.84553, 138.19169 -33.8464, 138.19111 -33.84781, 138.19106 -33.84793, 138.19057 -33.84917, 138.19022 -33.85002, 138.18992 -33.85073, 138.18967 -33.85124, 138.18948 -33.85159, 138.18912 -33.85216, 138.18893 -33.85244, 138.18865 -33.85281, 138.18829 -33.85325, 138.18739 -33.85434, 138.18647 -33.85543, 138.18613 -33.85584, 138.1856 -33.8565, 138.1852 -33.85702, 138.18469 -33.85773, 138.1839 -33.85891, 138.18362 -33.85937, 138.1832 -33.86007, 138.18259 -33.86117, 138.18237 -33.86159, 138.18208 -33.86222, 138.18178 -33.86287, 138.18137 -33.86386, 138.18117 -33.86438, 138.18091 -33.8651, 138.18056 -33.86617, 138.1802 -33.86726, 138.17987 -33.86824, 138.17965 -33.8689, 138.17933 -33.86978, 138.17905 -33.87053, 138.17893 -33.87083, 138.17876 -33.87125, 138.17869 -33.87143, 138.1781 -33.87284, 138.17783 -33.87347, 138.17749 -33.87426, 138.17736 -33.87456, 138.17694 -33.8757, 138.17671 -33.87633, 138.17657 -33.87673, 138.17646 -33.87705, 138.17629 -33.87754, 138.17613 -33.87805, 138.1759 -33.87877, 138.17563 -33.87957, 138.17542 -33.88024, 138.17512 -33.8812, 138.17465 -33.88261, 138.17436 -33.88345, 138.17424 -33.88378, 138.17405 -33.88429, 138.1739 -33.88467, 138.17369 -33.8852, 138.17353 -33.88558, 138.17351 -33.88564, 138.17344 -33.88581, 138.17324 -33.88629, 138.17297 -33.88695, 138.1728 -33.88734, 138.17258 -33.88781, 138.17252 -33.88795, 138.1722 -33.88869, 138.17182 -33.88956, 138.17149 -33.89033, 138.17142 -33.89048, 138.17113 -33.89114, 138.17076 -33.89197, 138.17041 -33.89278, 138.17017 -33.89335, 138.1701 -33.89353, 138.1698 -33.89442, 138.16959 -33.89509, 138.16943 -33.89575, 138.16922 -33.89659, 138.16906 -33.89713, 138.16901 -33.89727, 138.16883 -33.89775, 138.16848 -33.89849, 138.16834 -33.89877, 138.16817 -33.89906, 138.1678 -33.89969, 138.16726 -33.90057, 138.16638 -33.90202, 138.16592 -33.90275, 138.16546 -33.90349, 138.16502 -33.90421, 138.16486 -33.90447, 138.16438 -33.90524, 138.16399 -33.90591, 138.16371 -33.9064, 138.16355 -33.90673, 138.16333 -33.90723, 138.16316 -33.90767, 138.16304 -33.90807, 138.16299 -33.90825, 138.16291 -33.90855, 138.16285 -33.90886, 138.16277 -33.9093, 138.16272 -33.90958, 138.1627 -33.90985, 138.16267 -33.91049, 138.16267 -33.91075, 138.16272 -33.9114, 138.16275 -33.91189, 138.16282 -33.91265, 138.16286 -33.91325, 138.16289 -33.91397, 138.16288 -33.91428, 138.16287 -33.91496, 138.16286 -33.9154, 138.16282 -33.91591, 138.16278 -33.91647, 138.16274 -33.91703, 138.16269 -33.91774, 138.16266 -33.91826, 138.16263 -33.91859, 138.16259 -33.91919, 138.16253 -33.92003, 138.16249 -33.92041, 138.16244 -33.92097, 138.1624 -33.92151, 138.16237 -33.9219, 138.1623 -33.92232, 138.16219 -33.92297, 138.16215 -33.92317, 138.16208 -33.92355, 138.16203 -33.92381, 138.1619 -33.92446, 138.16181 -33.92491, 138.16169 -33.92554, 138.16161 -33.9262, 138.1616 -33.9269, 138.16161 -33.92755, 138.16161 -33.92824, 138.16161 -33.92842, 138.16162 -33.92949, 138.16162 -33.93011, 138.16162 -33.93024, 138.16162 -33.9305, 138.16165 -33.93148, 138.16216 -33.93188, 138.16315 -33.9327, 138.16341 -33.93294, 138.16362 -33.93317, 138.16399 -33.9337, 138.16427 -33.93455, 138.16429 -33.9347, 138.16426 -33.93479, 138.16421 -33.93486, 138.16415 -33.93493, 138.16381 -33.9351, 138.16396 -33.9353, 138.16406 -33.93545, 138.16413 -33.93557, 138.16417 -33.93564, 138.1643 -33.93586, 138.16443 -33.93614, 138.16447 -33.93623, 138.16459 -33.93654, 138.16478 -33.93712, 138.16489 -33.93758, 138.16507 -33.93844, 138.16517 -33.93894, 138.16533 -33.93977, 138.16538 -33.94012, 138.16542 -33.94061, 138.16544 -33.94097, 138.16545 -33.94121, 138.16544 -33.94176, 138.16541 -33.94227, 138.16538 -33.94311, 138.16531 -33.94468, 138.16531 -33.94522, 138.16532 -33.94549, 138.16534 -33.94577, 138.16537 -33.94606, 138.16547 -33.94651, 138.16557 -33.94686, 138.1657 -33.94727, 138.16585 -33.9476, 138.16599 -33.94788, 138.16628 -33.94838, 138.16669 -33.94892, 138.1668 -33.94905, 138.16749 -33.94978, 138.16831 -33.95061, 138.16876 -33.95105, 138.16939 -33.95168, 138.16975 -33.95203, 138.16997 -33.95225, 138.17024 -33.95251, 138.17079 -33.95306, 138.17125 -33.95352, 138.17267 -33.9549, 138.17309 -33.95531, 138.17384 -33.95604, 138.17397 -33.95617, 138.17409 -33.95629, 138.17507 -33.95726, 138.17531 -33.9575, 138.17554 -33.95773, 138.17565 -33.95784, 138.17584 -33.95803, 138.17631 -33.9585, 138.17685 -33.95904, 138.17733 -33.95951, 138.1775 -33.95967, 138.17791 -33.96007, 138.17811 -33.96027, 138.17851 -33.96066, 138.17911 -33.96126, 138.1793 -33.96145, 138.17946 -33.9616, 138.17977 -33.96192, 138.18013 -33.96227, 138.18026 -33.96239, 138.18047 -33.96261, 138.18103 -33.96315, 138.18156 -33.96367, 138.1817 -33.96382, 138.18238 -33.96447, 138.18259 -33.96467, 138.18308 -33.96515, 138.18334 -33.96541, 138.18351 -33.96558, 138.18415 -33.96621, 138.18467 -33.9667, 138.18494 -33.96695, 138.18528 -33.96724, 138.18563 -33.96754, 138.18594 -33.96778, 138.18631 -33.96805, 138.18684 -33.96841, 138.18722 -33.96867, 138.18758 -33.96889, 138.188 -33.96916, 138.18834 -33.96934, 138.18882 -33.96961, 138.1893 -33.96985, 138.19025 -33.97029, 138.19074 -33.9705, 138.1911 -33.97065, 138.19154 -33.97082, 138.19156 -33.97083, 138.19182 -33.97094, 138.1919 -33.97097, 138.19254 -33.97124, 138.19305 -33.97147, 138.19325 -33.97157, 138.19367 -33.97179, 138.19405 -33.972, 138.19408 -33.97202, 138.19459 -33.97235, 138.19511 -33.9727, 138.19524 -33.9728, 138.1958 -33.97322, 138.19715 -33.97428, 138.19764 -33.97466, 138.19773 -33.97473, 138.19812 -33.97504, 138.1991 -33.97582, 138.20018 -33.97666, 138.20059 -33.97697, 138.20088 -33.97718, 138.20136 -33.97751, 138.20219 -33.978, 138.20325 -33.97857, 138.20391 -33.97893, 138.20448 -33.9793, 138.20499 -33.97968, 138.20539 -33.98004, 138.20554 -33.98019, 138.20575 -33.98041, 138.20594 -33.98063, 138.20629 -33.9811, 138.20656 -33.98151, 138.20683 -33.98194, 138.20743 -33.98289, 138.20842 -33.98448, 138.20881 -33.98509, 138.20894 -33.98529, 138.20904 -33.98545, 138.20927 -33.9858, 138.20956 -33.98623, 138.21007 -33.98699, 138.21084 -33.9882, 138.21085 -33.98822, 138.21125 -33.9889, 138.21168 -33.98963, 138.2124 -33.99085, 138.21356 -33.99283, 138.21434 -33.99418, 138.21471 -33.9949, 138.21496 -33.9955, 138.21508 -33.99588, 138.21518 -33.99619, 138.21524 -33.99646, 138.21533 -33.99688, 138.21536 -33.99707, 138.21541 -33.99741, 138.21546 -33.99791, 138.21546 -33.99805, 138.21547 -33.99837, 138.21545 -33.99883, 138.21537 -33.99955, 138.21532 -33.99982, 138.21513 -34.00094, 138.21493 -34.00217, 138.21475 -34.00356, 138.21441 -34.00627, 138.21432 -34.00702, 138.21425 -34.00766, 138.21423 -34.00838, 138.21425 -34.00989, 138.21427 -34.01069, 138.21433 -34.01151, 138.21443 -34.01306, 138.21452 -34.01443, 138.21459 -34.01539, 138.21463 -34.01601, 138.21463 -34.01609, 138.21469 -34.01677, 138.21476 -34.01774, 138.21478 -34.01848, 138.21475 -34.01901, 138.21468 -34.01945, 138.21459 -34.01988, 138.21452 -34.02016, 138.21443 -34.0205, 138.21413 -34.02161, 138.21405 -34.02192, 138.2139 -34.0225, 138.21375 -34.02302, 138.21352 -34.02367, 138.21312 -34.02462, 138.21285 -34.02526, 138.21258 -34.02578, 138.21228 -34.02628, 138.21147 -34.02751, 138.21115 -34.02801, 138.21085 -34.02858, 138.21064 -34.02906, 138.21041 -34.02975, 138.21017 -34.03067, 138.21016 -34.03071, 138.21009 -34.03102, 138.20999 -34.03149, 138.20987 -34.03198, 138.20963 -34.03294, 138.20924 -34.03458, 138.20919 -34.0348, 138.20906 -34.03541, 138.209 -34.03579, 138.20896 -34.03647, 138.20895 -34.03705, 138.20897 -34.03778, 138.20897 -34.03814, 138.20899 -34.03894, 138.20913 -34.04476, 138.2092 -34.048, 138.20933 -34.05327, 138.20934 -34.05416, 138.20931 -34.05492, 138.20923 -34.0556, 138.20891 -34.05744, 138.20849 -34.05989, 138.20833 -34.06082, 138.20815 -34.06168, 138.20789 -34.06251, 138.20744 -34.06381, 138.20698 -34.06512, 138.20643 -34.06674, 138.20627 -34.06724, 138.20615 -34.06764, 138.20582 -34.06893, 138.20489 -34.07289, 138.20474 -34.07356, 138.2047 -34.07375, 138.20446 -34.07475, 138.20438 -34.07507, 138.20434 -34.07522, 138.20421 -34.07568, 138.20404 -34.07612, 138.20377 -34.07669, 138.2027 -34.07881, 138.20264 -34.07894, 138.2019 -34.0804, 138.20167 -34.08085, 138.20166 -34.08087, 138.20118 -34.08181, 138.20088 -34.08242, 138.19983 -34.08448, 138.19969 -34.08475, 138.19945 -34.08521, 138.19927 -34.08556, 138.19911 -34.08588, 138.19863 -34.08681, 138.19834 -34.08738, 138.19753 -34.08898, 138.19705 -34.08994, 138.19634 -34.09113, 138.1962 -34.09133, 138.19592 -34.09178, 138.19566 -34.0922, 138.19514 -34.09301, 138.19479 -34.09356, 138.19448 -34.09405, 138.19429 -34.09436, 138.19369 -34.09542, 138.19321 -34.0963, 138.19299 -34.09675, 138.19262 -34.09747, 138.19231 -34.09809, 138.19204 -34.0986, 138.19174 -34.09921, 138.19154 -34.09961, 138.19109 -34.10049, 138.19077 -34.10114, 138.19016 -34.10236, 138.18954 -34.10383, 138.18938 -34.10421, 138.18901 -34.10507, 138.18891 -34.1053, 138.1888 -34.10556, 138.1887 -34.1058, 138.18858 -34.1061, 138.18849 -34.10631, 138.18833 -34.10666, 138.18818 -34.10701, 138.18797 -34.10751, 138.18764 -34.10831, 138.18732 -34.10903, 138.18716 -34.10943, 138.18702 -34.10974, 138.18668 -34.11054, 138.18648 -34.11103, 138.18634 -34.11135, 138.18613 -34.11186, 138.18576 -34.11272, 138.1856 -34.11311, 138.18543 -34.11351, 138.18514 -34.11417, 138.18493 -34.11466, 138.18476 -34.11506, 138.1844 -34.11589, 138.1841 -34.11662, 138.18391 -34.11708, 138.18373 -34.11752, 138.18346 -34.11813, 138.18327 -34.11858, 138.18298 -34.11925, 138.18259 -34.12019, 138.18235 -34.12075, 138.18202 -34.12153, 138.18171 -34.12224, 138.18132 -34.12316, 138.18119 -34.12346, 138.1811 -34.12367, 138.18093 -34.12408, 138.18072 -34.12459, 138.18051 -34.12509, 138.18033 -34.1255, 138.1799 -34.12649, 138.17968 -34.12702, 138.17947 -34.12752, 138.1793 -34.12794, 138.17912 -34.12834, 138.17891 -34.12883, 138.17879 -34.12913, 138.17858 -34.12961, 138.17826 -34.13036, 138.17805 -34.13087, 138.17792 -34.13119, 138.17775 -34.13157, 138.17766 -34.13178, 138.17738 -34.13247, 138.17712 -34.13305, 138.17698 -34.13339, 138.17684 -34.13371, 138.17668 -34.1341, 138.17651 -34.1345, 138.1763 -34.13501, 138.17612 -34.13542, 138.17599 -34.13572, 138.17587 -34.136, 138.17561 -34.13662, 138.17552 -34.13682, 138.17543 -34.13704, 138.17534 -34.13724, 138.17522 -34.13751, 138.17509 -34.13783, 138.17496 -34.13814, 138.17487 -34.13835, 138.17479 -34.13855, 138.17469 -34.13879, 138.17458 -34.13904, 138.17448 -34.13927, 138.17439 -34.13948, 138.17422 -34.13988, 138.17406 -34.14025, 138.17395 -34.14052, 138.17384 -34.14077, 138.17367 -34.14117, 138.1735 -34.14156, 138.17331 -34.14199, 138.17314 -34.1424, 138.17297 -34.1428, 138.17284 -34.14311, 138.17262 -34.14364, 138.17244 -34.14404, 138.17188 -34.1454, 138.17163 -34.14597, 138.17149 -34.14633, 138.17133 -34.14669, 138.17109 -34.14723, 138.17093 -34.14761, 138.17072 -34.14809, 138.17036 -34.14893, 138.1702 -34.14933, 138.17007 -34.14964, 138.16998 -34.14984, 138.16985 -34.15015, 138.16977 -34.15034, 138.16964 -34.15066, 138.16947 -34.15105, 138.16934 -34.15136, 138.16922 -34.15164, 138.16907 -34.15197, 138.1689 -34.15229, 138.16876 -34.15253, 138.16865 -34.15272, 138.16847 -34.15299, 138.16825 -34.15329, 138.16811 -34.15348, 138.16788 -34.15374, 138.16764 -34.15402, 138.16743 -34.15423, 138.16715 -34.15448, 138.16668 -34.15488, 138.16631 -34.15516, 138.16578 -34.15552, 138.16478 -34.15619, 138.16414 -34.15663, 138.16349 -34.15709, 138.16288 -34.15752, 138.16242 -34.15792, 138.16206 -34.15818, 138.16197 -34.1583, 138.1616 -34.15856, 138.16128 -34.1588, 138.16009 -34.15964, 138.15902 -34.16036, 138.15825 -34.16088, 138.158 -34.16106, 138.15778 -34.16124, 138.15752 -34.16147, 138.15728 -34.16168, 138.15719 -34.16177, 138.15716 -34.16184, 138.15705 -34.16201, 138.15699 -34.16212, 138.15693 -34.16228, 138.15688 -34.16241, 138.15682 -34.16255, 138.15679 -34.16263, 138.15668 -34.16277, 138.15655 -34.16295, 138.1564 -34.16318, 138.15634 -34.16329, 138.1563 -34.16336, 138.15625 -34.16345, 138.15619 -34.16356, 138.15605 -34.16381, 138.1559 -34.16414, 138.15572 -34.16466, 138.15562 -34.16513, 138.15556 -34.16547, 138.15553 -34.16568, 138.1555 -34.16593, 138.15547 -34.16621, 138.15545 -34.16645, 138.1554 -34.16697, 138.15536 -34.16739, 138.15522 -34.16896, 138.15517 -34.16951, 138.15515 -34.16972, 138.15513 -34.16997, 138.15507 -34.17061, 138.15506 -34.17074, 138.15504 -34.17092, 138.15502 -34.17131, 138.15499 -34.17163, 138.15494 -34.17211, 138.15491 -34.1725, 138.15481 -34.17359, 138.15464 -34.17541, 138.15455 -34.1763, 138.15452 -34.17669, 138.15453 -34.17679, 138.15452 -34.17688, 138.15451 -34.17696, 138.15449 -34.17705, 138.15448 -34.17712, 138.15447 -34.17723, 138.15446 -34.17733, 138.15446 -34.1774, 138.15446 -34.17747, 138.15447 -34.17757, 138.15448 -34.17768, 138.1545 -34.1778, 138.15452 -34.17791, 138.15456 -34.17808, 138.15461 -34.17823, 138.15467 -34.1784, 138.15479 -34.1787, 138.15492 -34.17901, 138.15501 -34.17923, 138.15508 -34.17942, 138.15513 -34.17962, 138.15517 -34.17982, 138.15519 -34.18004, 138.1552 -34.18023, 138.1552 -34.18046, 138.1552 -34.18079, 138.15523 -34.18162, 138.15524 -34.18198, 138.15524 -34.18207, 138.15524 -34.18215, 138.15523 -34.18223, 138.15522 -34.1823, 138.1552 -34.18238, 138.15517 -34.18249, 138.15513 -34.18259, 138.15508 -34.18268, 138.15502 -34.18279, 138.15497 -34.18286, 138.1549 -34.18295, 138.15484 -34.18301, 138.15476 -34.18308, 138.15469 -34.18314, 138.1546 -34.18321, 138.15447 -34.18331, 138.15437 -34.18339, 138.15427 -34.18348, 138.15419 -34.18355, 138.15411 -34.18363, 138.15403 -34.18371, 138.15395 -34.18381, 138.15388 -34.1839, 138.15382 -34.18398, 138.15375 -34.18411, 138.1537 -34.18421, 138.15365 -34.18432, 138.15361 -34.18443, 138.15358 -34.18453, 138.15355 -34.18464, 138.15353 -34.18473, 138.15352 -34.18481, 138.15351 -34.18491, 138.15351 -34.18501, 138.15351 -34.18511, 138.15351 -34.18519, 138.15351 -34.18526, 138.15352 -34.18535, 138.15354 -34.18545, 138.15356 -34.18553, 138.1536 -34.18564, 138.15364 -34.18574, 138.15368 -34.18583, 138.15374 -34.18595, 138.15381 -34.18609, 138.15388 -34.18619, 138.15399 -34.18633, 138.15412 -34.18646, 138.15422 -34.18656, 138.15437 -34.18669, 138.15461 -34.18686, 138.15498 -34.18709, 138.15519 -34.18722, 138.15542 -34.1874, 138.15565 -34.18759, 138.15582 -34.18776, 138.15598 -34.18792, 138.15616 -34.18815, 138.15633 -34.18838, 138.15651 -34.1887, 138.15668 -34.18902, 138.15725 -34.19009, 138.15741 -34.19034, 138.15758 -34.19057, 138.15772 -34.19074, 138.15792 -34.19094, 138.15811 -34.19111, 138.15836 -34.1913, 138.15868 -34.19151, 138.1591 -34.19173, 138.15969 -34.19203, 138.16024 -34.19232, 138.16073 -34.19258, 138.16116 -34.19281, 138.16162 -34.19305, 138.16223 -34.19337, 138.16266 -34.19359, 138.16305 -34.19379, 138.1634 -34.19397, 138.16377 -34.19416, 138.16406 -34.19432, 138.16437 -34.19449, 138.16465 -34.19466, 138.16496 -34.19486, 138.16535 -34.19514, 138.16563 -34.19537, 138.16593 -34.19563, 138.16632 -34.19602, 138.16652 -34.19622, 138.16679 -34.19651, 138.16721 -34.19694, 138.16762 -34.19739, 138.16785 -34.19765, 138.16817 -34.19802, 138.16845 -34.19835, 138.16872 -34.19867, 138.16889 -34.19888, 138.16925 -34.19931, 138.16955 -34.19967, 138.16997 -34.20016, 138.17023 -34.20045, 138.17052 -34.20078, 138.17082 -34.2011, 138.17121 -34.20148, 138.17195 -34.20218, 138.17219 -34.20243, 138.17296 -34.20324, 138.17327 -34.20355, 138.1737 -34.20399, 138.17377 -34.20406, 138.1748 -34.20511, 138.17498 -34.20529, 138.17555 -34.20583, 138.17565 -34.20593, 138.17593 -34.20621, 138.17627 -34.20652, 138.17651 -34.20674, 138.1766 -34.20682, 138.17712 -34.20724, 138.17779 -34.20772, 138.17862 -34.20828, 138.17953 -34.2089, 138.18112 -34.20998, 138.18335 -34.21151, 138.18556 -34.21302, 138.18732 -34.21423, 138.18884 -34.21526, 138.19046 -34.21637, 138.19151 -34.21709, 138.19218 -34.21752, 138.19291 -34.21795, 138.19372 -34.21839, 138.19436 -34.21871, 138.19514 -34.21909, 138.19627 -34.21965, 138.19724 -34.22013, 138.19801 -34.22052, 138.19854 -34.22081, 138.19884 -34.221, 138.19908 -34.22115, 138.19948 -34.22145, 138.1999 -34.22178, 138.20042 -34.22226, 138.20062 -34.22245, 138.2009 -34.22275, 138.20105 -34.22292, 138.20117 -34.22306, 138.20147 -34.22345, 138.20187 -34.22401, 138.2025 -34.22495, 138.20313 -34.22591, 138.20394 -34.2271, 138.20523 -34.22902, 138.20677 -34.23131, 138.20764 -34.23261, 138.20858 -34.23401, 138.20952 -34.23541, 138.20999 -34.2361, 138.21064 -34.23706, 138.21184 -34.23885, 138.21262 -34.24, 138.21309 -34.2407, 138.21368 -34.24157, 138.21466 -34.24303, 138.21574 -34.24464, 138.21639 -34.2456, 138.21722 -34.24685, 138.21777 -34.24769, 138.21922 -34.24981, 138.2196 -34.25039, 138.2204 -34.25157, 138.22107 -34.25257, 138.22149 -34.25319, 138.22174 -34.2536, 138.22202 -34.25409, 138.22218 -34.25442, 138.22229 -34.25468, 138.22236 -34.25483, 138.22249 -34.25521, 138.22261 -34.25557, 138.22274 -34.256, 138.22316 -34.25735, 138.22327 -34.25772, 138.22372 -34.25924, 138.22379 -34.25948, 138.22403 -34.26027, 138.22411 -34.26052, 138.22418 -34.26075, 138.22434 -34.26122, 138.22449 -34.26165, 138.22465 -34.26201, 138.22481 -34.26233, 138.22498 -34.26264, 138.22515 -34.26293, 138.22538 -34.26326, 138.22559 -34.26355, 138.22588 -34.26391, 138.22619 -34.26425, 138.2266 -34.26466, 138.22699 -34.26502, 138.22737 -34.26534, 138.22771 -34.26558, 138.2283 -34.26597, 138.22885 -34.26632, 138.2293 -34.26661, 138.22981 -34.26696, 138.23022 -34.26729, 138.23057 -34.26759, 138.23088 -34.2679, 138.2312 -34.26824, 138.23147 -34.26857, 138.23183 -34.26906, 138.23218 -34.26958, 138.23268 -34.27033, 138.23321 -34.27111, 138.23417 -34.27253, 138.23572 -34.27482, 138.23605 -34.27531, 138.23631 -34.27569, 138.23684 -34.27648, 138.2369 -34.27657, 138.23697 -34.27668, 138.2371 -34.27687, 138.23733 -34.27721, 138.23798 -34.27817, 138.23872 -34.27927, 138.23927 -34.28009, 138.2394 -34.28028, 138.23983 -34.28091, 138.2404 -34.28177, 138.24078 -34.28232, 138.24101 -34.28267, 138.24123 -34.28303, 138.24138 -34.28332, 138.24158 -34.28375, 138.24172 -34.28409, 138.24183 -34.28442, 138.24193 -34.28473, 138.24205 -34.28517, 138.24211 -34.28546, 138.24216 -34.28573, 138.24219 -34.28599, 138.24221 -34.28619, 138.24223 -34.28652, 138.24223 -34.2872, 138.24223 -34.28751, 138.24224 -34.28805, 138.24224 -34.28856, 138.24226 -34.28894, 138.24229 -34.28936, 138.24235 -34.28978, 138.24241 -34.29007, 138.24247 -34.29032, 138.24262 -34.2908, 138.24274 -34.29116, 138.24289 -34.29156, 138.24311 -34.29203, 138.24339 -34.29253, 138.24372 -34.29303, 138.24432 -34.29391, 138.24502 -34.29493, 138.24579 -34.29608, 138.24694 -34.29776, 138.24798 -34.29931, 138.24923 -34.30115, 138.25004 -34.30233, 138.25045 -34.30294, 138.25233 -34.30572, 138.25373 -34.30779, 138.25458 -34.30904, 138.25469 -34.3092, 138.25543 -34.3103, 138.25546 -34.31034, 138.25577 -34.31078, 138.25604 -34.31118, 138.25632 -34.31159, 138.25678 -34.31227, 138.25694 -34.31251, 138.25754 -34.31338, 138.2576 -34.31347, 138.25865 -34.31502, 138.26057 -34.31784, 138.26133 -34.31897, 138.26224 -34.32029, 138.2627 -34.32099, 138.26345 -34.3221, 138.26472 -34.32397, 138.2653 -34.32482, 138.26552 -34.32514, 138.26594 -34.32571, 138.26627 -34.32609, 138.26634 -34.32618, 138.26655 -34.32639, 138.2667 -34.32654, 138.26679 -34.32663, 138.26703 -34.32686, 138.26724 -34.32705, 138.26741 -34.32719, 138.26795 -34.3276, 138.26843 -34.32792, 138.26902 -34.32827, 138.26963 -34.32858, 138.27061 -34.32901, 138.27198 -34.32961, 138.27329 -34.33017, 138.27413 -34.33053, 138.27481 -34.33083, 138.27531 -34.33107, 138.2757 -34.33129, 138.27608 -34.33151, 138.27652 -34.3318, 138.277 -34.33215, 138.27748 -34.33255, 138.27792 -34.33296, 138.27843 -34.33351, 138.27872 -34.33387, 138.27899 -34.33425, 138.27921 -34.33457, 138.27948 -34.33503, 138.27969 -34.33544, 138.2799 -34.33595, 138.28004 -34.33634, 138.28016 -34.33667, 138.2804 -34.33726, 138.28061 -34.33775, 138.28077 -34.33812, 138.28087 -34.33833, 138.28101 -34.33863, 138.28142 -34.33945, 138.28176 -34.34007, 138.28222 -34.34085, 138.2825 -34.34129, 138.28294 -34.34194, 138.28466 -34.34449, 138.28526 -34.34539, 138.28574 -34.34609, 138.28621 -34.34679, 138.28677 -34.34763, 138.28751 -34.34872, 138.28781 -34.3492, 138.28799 -34.3495, 138.28827 -34.35002, 138.28845 -34.35039, 138.28861 -34.35075, 138.28876 -34.35111, 138.28896 -34.35163, 138.28913 -34.35219, 138.28942 -34.35323, 138.28951 -34.35358, 138.28996 -34.35518, 138.29012 -34.35575, 138.29046 -34.35698, 138.29054 -34.35728, 138.29079 -34.35817, 138.29085 -34.35837, 138.2909 -34.35856, 138.29097 -34.3588, 138.29115 -34.35937, 138.29128 -34.35971, 138.29136 -34.35991, 138.29163 -34.36049, 138.29181 -34.36082, 138.29204 -34.36123, 138.29238 -34.36177, 138.29259 -34.36208, 138.29274 -34.3623, 138.29293 -34.36258, 138.29343 -34.36333, 138.29394 -34.36416, 138.29429 -34.36478, 138.29455 -34.36531, 138.29477 -34.36577, 138.29506 -34.36646, 138.29531 -34.36714, 138.29567 -34.3681, 138.29613 -34.36931, 138.29638 -34.37, 138.29662 -34.37063, 138.29688 -34.37125, 138.29714 -34.37182, 138.29745 -34.37243, 138.29779 -34.37302, 138.29814 -34.3736, 138.2985 -34.37414, 138.29916 -34.37511, 138.29987 -34.37613, 138.30054 -34.37713, 138.30098 -34.37777, 138.3011 -34.37795, 138.30159 -34.37867, 138.30207 -34.37938, 138.3022 -34.37957, 138.30249 -34.37999, 138.30266 -34.38023, 138.3032 -34.38102, 138.3039 -34.38206, 138.30506 -34.38376, 138.30604 -34.3852, 138.30695 -34.38654, 138.30766 -34.38758, 138.30831 -34.38854, 138.3088 -34.38923, 138.30915 -34.38971, 138.30949 -34.39013, 138.30985 -34.39055, 138.31026 -34.391, 138.31088 -34.39163, 138.31099 -34.39173, 138.3117 -34.3924, 138.31265 -34.3933, 138.31282 -34.39345, 138.31333 -34.39392, 138.31407 -34.39461, 138.31439 -34.39491, 138.315 -34.39548, 138.31598 -34.3964, 138.31651 -34.39689, 138.31714 -34.39751, 138.31791 -34.39828, 138.31855 -34.39896, 138.31917 -34.39963, 138.31997 -34.40052, 138.321 -34.4017, 138.32159 -34.40237, 138.32224 -34.40312, 138.32329 -34.40431, 138.32377 -34.40485, 138.32396 -34.40507, 138.32457 -34.40578, 138.32477 -34.40601, 138.32575 -34.40713, 138.32658 -34.40808, 138.32714 -34.40872, 138.3277 -34.40936, 138.32772 -34.40938, 138.32816 -34.40988, 138.32899 -34.41082, 138.3295 -34.41141, 138.33004 -34.41203, 138.33057 -34.41266, 138.33104 -34.41329, 138.33116 -34.41346, 138.3314 -34.41379, 138.33174 -34.41432, 138.33202 -34.41478, 138.33205 -34.41483, 138.33225 -34.41518, 138.33247 -34.41557, 138.33251 -34.41565, 138.33265 -34.41591, 138.33283 -34.41632, 138.33284 -34.41634, 138.33302 -34.41679, 138.33328 -34.41747, 138.33349 -34.41809, 138.3337 -34.41881, 138.33385 -34.41945, 138.33394 -34.41988, 138.33397 -34.42005, 138.33399 -34.4202, 138.33405 -34.42061, 138.33412 -34.4213, 138.33416 -34.42169, 138.33418 -34.42188, 138.33427 -34.42276, 138.33437 -34.42366, 138.33451 -34.42448, 138.33463 -34.42506, 138.33478 -34.42563, 138.33493 -34.42614, 138.33511 -34.42668, 138.33518 -34.42687, 138.33535 -34.42732, 138.33551 -34.4277, 138.33564 -34.42799, 138.33585 -34.42841, 138.33601 -34.42874, 138.33645 -34.42955, 138.33715 -34.43074, 138.33746 -34.43129, 138.33765 -34.43161, 138.33795 -34.43212, 138.33801 -34.43222, 138.33862 -34.43325, 138.33946 -34.43471, 138.34008 -34.43577, 138.34082 -34.43697, 138.34096 -34.43719, 138.34144 -34.43794, 138.34207 -34.43886, 138.34264 -34.43968, 138.3434 -34.44077, 138.34432 -34.44206, 138.34484 -34.44279, 138.34502 -34.44305, 138.34571 -34.44403, 138.34624 -34.44477, 138.34636 -34.44494, 138.34649 -34.44513, 138.34662 -34.44532, 138.34721 -34.44616, 138.34783 -34.44703, 138.34825 -34.44759, 138.34869 -34.44811, 138.34915 -34.4486, 138.3493 -34.44874, 138.34959 -34.44901, 138.35025 -34.44955, 138.35063 -34.44984, 138.35071 -34.4499, 138.35124 -34.45026, 138.35174 -34.45057, 138.35249 -34.45099, 138.35377 -34.45173, 138.35428 -34.45202, 138.35495 -34.4524, 138.35585 -34.45292, 138.35611 -34.45307, 138.3566 -34.45335, 138.35696 -34.45355, 138.35727 -34.45372, 138.35761 -34.45391, 138.35811 -34.45421, 138.35873 -34.4546, 138.3591 -34.45485, 138.35949 -34.45513, 138.36013 -34.45564, 138.36071 -34.45615, 138.36105 -34.45648, 138.36155 -34.45699, 138.36161 -34.45705, 138.36246 -34.45794, 138.36272 -34.45822, 138.36292 -34.45843, 138.36327 -34.4588, 138.36421 -34.45978, 138.36604 -34.46167, 138.36753 -34.46324, 138.36897 -34.46476, 138.36998 -34.46582, 138.37149 -34.46741, 138.37325 -34.46929, 138.37383 -34.4699, 138.37427 -34.47037, 138.37492 -34.47106, 138.37519 -34.47135, 138.37554 -34.47172, 138.37626 -34.47246, 138.37664 -34.47287, 138.37724 -34.47351, 138.37784 -34.47414, 138.37808 -34.4744, 138.37865 -34.47499, 138.37921 -34.47558, 138.38 -34.47641, 138.3802 -34.47662, 138.38038 -34.47681, 138.38055 -34.47699, 138.38249 -34.47904, 138.38601 -34.48276, 138.38716 -34.48398, 138.38919 -34.48612, 138.38995 -34.48691, 138.39035 -34.48734, 138.39043 -34.48742, 138.39053 -34.48754, 138.39204 -34.48913, 138.39344 -34.49062, 138.39451 -34.49175, 138.39482 -34.49208, 138.39504 -34.49231, 138.39609 -34.49344, 138.3963 -34.49366, 138.3965 -34.49387, 138.39737 -34.49479, 138.39773 -34.49518, 138.39883 -34.49635, 138.39939 -34.49694, 138.40095 -34.49859, 138.40148 -34.49916, 138.40168 -34.49937, 138.4024 -34.50011, 138.40309 -34.50083, 138.40385 -34.50165, 138.40444 -34.50227, 138.40621 -34.50412, 138.40864 -34.5067, 138.41 -34.50813, 138.41078 -34.50895, 138.41193 -34.51017, 138.41239 -34.51066, 138.4126 -34.51088, 138.41343 -34.51176, 138.41379 -34.51211, 138.41404 -34.51237, 138.41441 -34.51272, 138.41468 -34.51297, 138.41523 -34.51345, 138.41555 -34.51373, 138.41581 -34.51395, 138.41663 -34.51462, 138.41934 -34.51684, 138.42067 -34.51791, 138.42222 -34.51917, 138.42273 -34.51958, 138.42431 -34.52086, 138.42451 -34.52102, 138.4248 -34.52126, 138.42602 -34.52225, 138.4266 -34.52272, 138.42842 -34.52419, 138.42915 -34.52478, 138.42931 -34.52491, 138.42965 -34.52518, 138.4306 -34.52596, 138.43168 -34.52683, 138.43222 -34.52726, 138.43247 -34.52746, 138.43266 -34.52762, 138.43312 -34.52799, 138.43389 -34.52863, 138.43477 -34.52936, 138.43495 -34.52951, 138.43511 -34.52964, 138.43533 -34.52984, 138.4354 -34.5299, 138.43621 -34.53063, 138.43698 -34.53136, 138.43715 -34.53152, 138.43752 -34.53189, 138.43795 -34.53232, 138.43829 -34.53267, 138.43858 -34.53297, 138.43885 -34.53326, 138.43915 -34.53357, 138.43938 -34.53382, 138.43944 -34.53389, 138.43952 -34.53398, 138.43975 -34.5342, 138.4399 -34.53435, 138.44037 -34.5348, 138.44145 -34.53577, 138.44224 -34.53645, 138.44239 -34.53658, 138.44267 -34.53682, 138.44347 -34.53753, 138.44354 -34.53759, 138.44359 -34.53763, 138.44376 -34.53778, 138.44401 -34.538, 138.44467 -34.53853, 138.44564 -34.53938, 138.44697 -34.54052, 138.44862 -34.54193, 138.44992 -34.54305, 138.4518 -34.54467, 138.45323 -34.5459, 138.45501 -34.54743, 138.45551 -34.54786, 138.45702 -34.54917, 138.45813 -34.55014, 138.45876 -34.55068, 138.45942 -34.55124, 138.45996 -34.5517, 138.46018 -34.55189, 138.46062 -34.55227, 138.46273 -34.55409, 138.46343 -34.5547, 138.46359 -34.55484, 138.46443 -34.55557, 138.46475 -34.55584, 138.46571 -34.55668, 138.46594 -34.55688, 138.46638 -34.55725, 138.46664 -34.55747, 138.46726 -34.55801, 138.46751 -34.55822, 138.46855 -34.55912, 138.46892 -34.55944, 138.46899 -34.5595, 138.4701 -34.56045, 138.47023 -34.56056, 138.47144 -34.5616, 138.47187 -34.56198, 138.47218 -34.56224, 138.47291 -34.56288, 138.47409 -34.5639, 138.47535 -34.56498, 138.47668 -34.56612, 138.47804 -34.5673, 138.47812 -34.56737, 138.47932 -34.56841, 138.47964 -34.56868, 138.48059 -34.56951, 138.4807 -34.56961, 138.48224 -34.57093, 138.48255 -34.5712, 138.48343 -34.57196, 138.48387 -34.57234, 138.48397 -34.57243, 138.48418 -34.57261, 138.48481 -34.57315, 138.48637 -34.5745, 138.48731 -34.57531, 138.48926 -34.57699, 138.48982 -34.57748, 138.49099 -34.57849, 138.49231 -34.57963, 138.49291 -34.58014, 138.4939 -34.58099, 138.49413 -34.58119, 138.49452 -34.58153, 138.49537 -34.58226, 138.49598 -34.5828, 138.49622 -34.58301, 138.49646 -34.58322, 138.49678 -34.58351, 138.49701 -34.58371, 138.49773 -34.58431, 138.49859 -34.58509, 138.4998 -34.58617, 138.50047 -34.58675, 138.50071 -34.58696, 138.50142 -34.58757, 138.50168 -34.58779, 138.50191 -34.58798, 138.50242 -34.58842, 138.50503 -34.59067, 138.50575 -34.59129, 138.50705 -34.59241, 138.50744 -34.59274, 138.50841 -34.59358, 138.50859 -34.59373, 138.50862 -34.59375, 138.5087 -34.59382, 138.50878 -34.59389, 138.50904 -34.59413, 138.50934 -34.59438, 138.50948 -34.59451, 138.5097 -34.5947, 138.51044 -34.59534, 138.51123 -34.59604, 138.51171 -34.59651, 138.51236 -34.59717, 138.5129 -34.59779, 138.5131 -34.59805, 138.51339 -34.59842, 138.51366 -34.59879, 138.51411 -34.59947, 138.51443 -34.60001, 138.5149 -34.6009, 138.51521 -34.60159, 138.51536 -34.60194, 138.51559 -34.60258, 138.51564 -34.60272, 138.51571 -34.60292, 138.51579 -34.60317, 138.51591 -34.60352, 138.51598 -34.60384, 138.51606 -34.60423, 138.51615 -34.60467, 138.51621 -34.60504, 138.51625 -34.60533, 138.5163 -34.60572, 138.51635 -34.60628, 138.5164 -34.60702, 138.51641 -34.60716, 138.51643 -34.60735, 138.51648 -34.60781, 138.51654 -34.60824, 138.51661 -34.6087, 138.51662 -34.60879, 138.51665 -34.60895, 138.5167 -34.60927, 138.51675 -34.60954, 138.5168 -34.60979, 138.51688 -34.61015, 138.51691 -34.61027, 138.51708 -34.61095, 138.5172 -34.6114, 138.51737 -34.61194, 138.51758 -34.61258, 138.51765 -34.61278, 138.51778 -34.61315, 138.51798 -34.61367, 138.51821 -34.61424, 138.51824 -34.61432, 138.51838 -34.61463, 138.5185 -34.6149, 138.51853 -34.61496, 138.51873 -34.6154, 138.51888 -34.61568, 138.51915 -34.61621, 138.51996 -34.61772, 138.52042 -34.6186, 138.52097 -34.61962, 138.5214 -34.62042, 138.52144 -34.6205, 138.52184 -34.62126, 138.52216 -34.62186, 138.52306 -34.62354, 138.52333 -34.62405, 138.52347 -34.62432, 138.52372 -34.62478, 138.52387 -34.62506, 138.52392 -34.62516, 138.52436 -34.62599, 138.52464 -34.62651, 138.52482 -34.62685, 138.52495 -34.62709, 138.5251 -34.62737, 138.5255 -34.62813, 138.52698 -34.63093, 138.52825 -34.63332, 138.52874 -34.63424, 138.53 -34.6366, 138.53085 -34.6382, 138.53144 -34.6393, 138.53151 -34.63944, 138.53157 -34.63956, 138.53215 -34.64066, 138.53258 -34.64146, 138.53288 -34.64201, 138.53333 -34.64275, 138.53371 -34.64333, 138.53401 -34.64376, 138.53428 -34.64413, 138.53458 -34.64452, 138.53488 -34.64489, 138.53516 -34.64523, 138.53557 -34.64569, 138.53567 -34.6458, 138.53586 -34.646, 138.53593 -34.64607, 138.53623 -34.64638, 138.53657 -34.64673, 138.53668 -34.64683, 138.53695 -34.64708, 138.5373 -34.64741, 138.53769 -34.64776, 138.53815 -34.64819, 138.5385 -34.64852, 138.53882 -34.64884, 138.53914 -34.64916, 138.5393 -34.64932, 138.53963 -34.64969, 138.53994 -34.65004, 138.54018 -34.65034, 138.5403 -34.65049, 138.54049 -34.65072, 138.54072 -34.65101, 138.54087 -34.65121, 138.54115 -34.6516, 138.5413 -34.65181, 138.54144 -34.65201, 138.54158 -34.65222, 138.54176 -34.65249, 138.54184 -34.65261, 138.5421 -34.65304, 138.54237 -34.65351, 138.5427 -34.65413, 138.54281 -34.65433, 138.54294 -34.6546, 138.54305 -34.65481, 138.54308 -34.65488, 138.54328 -34.65532, 138.54356 -34.656, 138.54376 -34.65655, 138.54395 -34.6571, 138.54433 -34.65832, 138.54475 -34.65972, 138.54501 -34.66056, 138.54544 -34.66197, 138.54554 -34.6623, 138.54566 -34.66268, 138.54589 -34.66348, 138.54645 -34.66534, 138.54694 -34.66697, 138.54729 -34.66807, 138.54739 -34.66835, 138.54754 -34.66881, 138.54764 -34.66911, 138.54784 -34.66973, 138.54831 -34.6711, 138.54935 -34.67411, 138.55032 -34.67704, 138.55053 -34.67766, 138.55074 -34.67818, 138.55096 -34.67866, 138.55116 -34.67907, 138.55141 -34.67955, 138.55174 -34.6801, 138.55206 -34.68059, 138.55236 -34.68103, 138.55273 -34.68151, 138.55305 -34.68191, 138.55335 -34.68225, 138.55339 -34.68229, 138.5537 -34.68263, 138.5541 -34.68303, 138.55428 -34.68321, 138.55445 -34.68337, 138.55448 -34.6834, 138.55488 -34.68375, 138.55526 -34.68407, 138.5556 -34.68434, 138.55597 -34.68462, 138.55614 -34.68474, 138.55632 -34.68487, 138.55686 -34.68523, 138.55737 -34.68556, 138.55788 -34.68586, 138.55844 -34.6862, 138.55954 -34.68684, 138.56024 -34.68726, 138.56082 -34.68759, 138.56166 -34.6881, 138.5623 -34.68848, 138.56316 -34.68899, 138.56367 -34.6893, 138.56399 -34.68949, 138.56433 -34.68972, 138.56484 -34.69007, 138.56536 -34.69045, 138.56576 -34.69076, 138.56622 -34.69113, 138.56631 -34.69121, 138.5665 -34.69137, 138.56677 -34.69161, 138.56703 -34.69186, 138.5672 -34.69203, 138.56739 -34.69222, 138.56759 -34.69244, 138.5679 -34.69278, 138.56805 -34.69296, 138.5687 -34.6938, 138.56891 -34.69408, 138.56916 -34.69444, 138.56944 -34.69488, 138.56969 -34.69528, 138.56986 -34.69557, 138.56994 -34.6957, 138.57017 -34.69613, 138.57034 -34.69649, 138.57046 -34.69673, 138.57056 -34.69694, 138.57066 -34.69716, 138.57078 -34.69748, 138.57085 -34.69766, 138.57091 -34.69783, 138.571 -34.69812, 138.57112 -34.6985, 138.57121 -34.69878, 138.57135 -34.69927, 138.57148 -34.69975, 138.57156 -34.70004, 138.57165 -34.70036, 138.57174 -34.7007, 138.57187 -34.70128, 138.57204 -34.70207, 138.57213 -34.70254, 138.57237 -34.70354, 138.5724 -34.70365, 138.57273 -34.70484, 138.5728 -34.70506, 138.57284 -34.70518, 138.57287 -34.70527, 138.5729 -34.7054, 138.573 -34.70574, 138.57319 -34.70638, 138.57321 -34.70645, 138.57325 -34.70656, 138.57331 -34.7067, 138.57341 -34.70692, 138.57356 -34.70722, 138.57363 -34.70726, 138.57367 -34.70732, 138.57373 -34.70741, 138.57392 -34.70772, 138.57393 -34.70774, 138.57403 -34.7079, 138.57413 -34.70808, 138.57432 -34.70841, 138.57445 -34.70863, 138.57461 -34.70893, 138.57474 -34.70922, 138.57479 -34.70935, 138.57482 -34.70943, 138.57487 -34.70949, 138.57495 -34.70973, 138.57508 -34.71016, 138.57519 -34.71051, 138.57531 -34.71089, 138.57539 -34.71112, 138.57545 -34.71128, 138.57559 -34.7117, 138.57596 -34.7128, 138.57607 -34.71312, 138.57629 -34.71379, 138.57644 -34.71423, 138.57651 -34.71443, 138.57666 -34.71485, 138.57728 -34.71668, 138.57779 -34.7182, 138.57805 -34.71895, 138.57824 -34.71952, 138.57836 -34.71988, 138.57939 -34.72289, 138.57952 -34.72328, 138.57987 -34.72429, 138.57994 -34.72449, 138.58013 -34.72504, 138.58042 -34.72584, 138.5808 -34.7269, 138.58091 -34.72719, 138.58104 -34.72756, 138.58112 -34.72777, 138.58134 -34.72836, 138.58167 -34.72926, 138.58207 -34.73033, 138.5821367334 -34.7305213023)" +-30.9701625,135.7504826,-32.492181,137.772173,9,Glendambo,"LINESTRING (135.7503863057 -30.9702233174, 135.75058 -30.97053, 135.75077 -30.97092, 135.75094 -30.97129, 135.75101 -30.97143, 135.75103 -30.97156, 135.75104 -30.97168, 135.75102 -30.97179, 135.75099 -30.97187, 135.75094 -30.97195, 135.75031 -30.97271, 135.75056 -30.97322, 135.75108 -30.97433, 135.7518 -30.97589, 135.75257 -30.97762, 135.75306 -30.97873, 135.75366 -30.98017, 135.75429 -30.98169, 135.75469 -30.98267, 135.75591 -30.9858, 135.756 -30.98602, 135.75619 -30.9865, 135.7564 -30.98698, 135.75707 -30.98841, 135.75743 -30.98913, 135.75821 -30.99056, 135.75877 -30.99152, 135.7592 -30.99219, 135.75962 -30.99284, 135.76009 -30.99352, 135.7608 -30.99452, 135.76123 -30.99509, 135.76183 -30.99584, 135.76267 -30.99685, 135.7636 -30.99788, 135.76437 -30.99869, 135.76528 -30.9996, 135.76587 -31.00017, 135.76647 -31.00074, 135.76691 -31.00114, 135.76774 -31.00188, 135.76882 -31.0028, 135.76983 -31.00362, 135.77102 -31.00454, 135.77171 -31.00505, 135.7729 -31.00591, 135.77413 -31.00674, 135.7747 -31.00712, 135.77584 -31.00785, 135.77705 -31.00857, 135.77889 -31.00962, 135.77997 -31.01026, 135.78137 -31.01113, 135.78241 -31.01178, 135.78432 -31.01304, 135.78548 -31.01384, 135.78644 -31.01452, 135.78744 -31.01524, 135.78904 -31.01645, 135.78992 -31.01714, 135.79141 -31.01835, 135.79251 -31.01927, 135.79386 -31.02045, 135.79502 -31.0215, 135.79573 -31.02216, 135.79782 -31.02419, 135.79861 -31.02494, 135.8005 -31.02666, 135.80149 -31.02753, 135.80259 -31.02846, 135.80393 -31.02956, 135.80578 -31.03102, 135.80689 -31.03186, 135.80813 -31.03278, 135.81002 -31.03413, 135.81086 -31.03477, 135.81157 -31.03534, 135.81219 -31.03584, 135.81268 -31.03627, 135.81311 -31.03664, 135.81357 -31.03707, 135.81417 -31.03763, 135.8149 -31.03836, 135.81549 -31.03898, 135.81624 -31.03981, 135.81701 -31.04071, 135.8174 -31.04119, 135.818 -31.04197, 135.81883 -31.04312, 135.81942 -31.044, 135.82 -31.04493, 135.82042 -31.04563, 135.82094 -31.04659, 135.8212 -31.04709, 135.82155 -31.04779, 135.82178 -31.04828, 135.82211 -31.04902, 135.82242 -31.04977, 135.82271 -31.05052, 135.82301 -31.05135, 135.82322 -31.05196, 135.82345 -31.05274, 135.82375 -31.05382, 135.82378 -31.05395, 135.82392 -31.05451, 135.82404 -31.05507, 135.82415 -31.05557, 135.82431 -31.05639, 135.82448 -31.05709, 135.82456 -31.05739, 135.82466 -31.05773, 135.82475 -31.058, 135.82478 -31.05809, 135.82492 -31.05849, 135.82503 -31.05877, 135.82519 -31.05916, 135.82544 -31.05972, 135.8256 -31.06005, 135.82584 -31.06053, 135.82618 -31.06114, 135.82645 -31.06158, 135.82671 -31.06198, 135.82697 -31.06237, 135.82727 -31.06277, 135.82756 -31.06316, 135.82791 -31.06358, 135.82829 -31.06403, 135.82876 -31.06454, 135.82928 -31.06506, 135.82958 -31.06534, 135.83 -31.06572, 135.83036 -31.06603, 135.83081 -31.06639, 135.83126 -31.06673, 135.83167 -31.06703, 135.83211 -31.06732, 135.83253 -31.06759, 135.83323 -31.06801, 135.83365 -31.06825, 135.83422 -31.06856, 135.83489 -31.06888, 135.83543 -31.06913, 135.83699 -31.06983, 135.83866 -31.07059, 135.83999 -31.07119, 135.84224 -31.07221, 135.84362 -31.07284, 135.84545 -31.07366, 135.84629 -31.07404, 135.84817 -31.07489, 135.85009 -31.07576, 135.85074 -31.07605, 135.85157 -31.07644, 135.85247 -31.07688, 135.85313 -31.07721, 135.85373 -31.07752, 135.85424 -31.0778, 135.85489 -31.07816, 135.85597 -31.07877, 135.85707 -31.07943, 135.85814 -31.08011, 135.85867 -31.08045, 135.85915 -31.08077, 135.85988 -31.08127, 135.8607 -31.08186, 135.8616 -31.08253, 135.86203 -31.08285, 135.8627 -31.08337, 135.86354 -31.08405, 135.86423 -31.08464, 135.86483 -31.08516, 135.86539 -31.08566, 135.86632 -31.08652, 135.86682 -31.087, 135.86729 -31.08746, 135.86774 -31.08793, 135.8683 -31.0885, 135.8689 -31.08915, 135.86974 -31.0901, 135.87003 -31.09043, 135.87037 -31.09082, 135.87071 -31.09124, 135.87107 -31.09169, 135.87148 -31.09221, 135.87192 -31.09278, 135.87228 -31.09326, 135.87281 -31.09401, 135.87316 -31.0945, 135.87353 -31.09502, 135.87381 -31.0954, 135.87403 -31.09569, 135.87434 -31.09606, 135.87491 -31.09672, 135.87528 -31.09714, 135.87568 -31.09755, 135.87636 -31.09822, 135.87682 -31.09864, 135.87729 -31.09906, 135.87772 -31.09941, 135.87813 -31.09974, 135.87862 -31.10011, 135.87926 -31.10057, 135.87993 -31.10101, 135.8806 -31.10144, 135.88114 -31.10176, 135.88167 -31.10206, 135.88225 -31.10236, 135.88276 -31.10262, 135.88327 -31.10286, 135.88381 -31.1031, 135.88452 -31.1034, 135.88514 -31.10365, 135.8858 -31.10389, 135.88666 -31.10418, 135.88753 -31.10444, 135.88898 -31.10484, 135.89047 -31.10527, 135.89175 -31.10567, 135.893 -31.10606, 135.89383 -31.10634, 135.89474 -31.10665, 135.89593 -31.10707, 135.89753 -31.10766, 135.89893 -31.10821, 135.89976 -31.10854, 135.90064 -31.1089, 135.90119 -31.10913, 135.90229 -31.10961, 135.9034 -31.1101, 135.9054 -31.11098, 135.90702 -31.11168, 135.90833 -31.11223, 135.90994 -31.1129, 135.91162 -31.11358, 135.91309 -31.11416, 135.914 -31.11452, 135.91495 -31.11488, 135.91631 -31.11539, 135.91766 -31.11589, 135.91883 -31.11631, 135.92011 -31.11677, 135.92207 -31.11746, 135.92375 -31.11803, 135.9257 -31.11867, 135.92617 -31.11882, 135.92633 -31.11887, 135.92712 -31.11913, 135.92822 -31.11948, 135.92964 -31.11992, 135.93058 -31.1202, 135.93126 -31.1204, 135.93178 -31.12054, 135.93228 -31.12067, 135.93315 -31.12089, 135.93443 -31.12119, 135.93546 -31.12141, 135.93647 -31.12161, 135.93754 -31.1218, 135.9383 -31.12193, 135.93908 -31.12205, 135.94008 -31.12218, 135.94106 -31.1223, 135.94186 -31.12238, 135.94271 -31.12246, 135.9435 -31.12252, 135.944 -31.12256, 135.94443 -31.1226, 135.94523 -31.12268, 135.94644 -31.12282, 135.94729 -31.12292, 135.94811 -31.12303, 135.94887 -31.12314, 135.94954 -31.12324, 135.95045 -31.12339, 135.9513 -31.12353, 135.9521 -31.12368, 135.95344 -31.12395, 135.95432 -31.12413, 135.95513 -31.12431, 135.95594 -31.12449, 135.95701 -31.12476, 135.95815 -31.12505, 135.9605 -31.12566, 135.96325 -31.12637, 135.96901 -31.12785, 135.9717 -31.12855, 135.97771 -31.1301, 135.98059 -31.13085, 135.98356 -31.13161, 135.98544 -31.1321, 135.98762 -31.13266, 135.98897 -31.13301, 135.99047 -31.13339, 135.9922 -31.13384, 135.99366 -31.13422, 135.99738 -31.13518, 135.99896 -31.13559, 136.00278 -31.13657, 136.0048 -31.13709, 136.00645 -31.13751, 136.00768 -31.13785, 136.00865 -31.13814, 136.00936 -31.13836, 136.01006 -31.13858, 136.01091 -31.13887, 136.01188 -31.13921, 136.01255 -31.13945, 136.01299 -31.13962, 136.01369 -31.1399, 136.01496 -31.14042, 136.0158 -31.14078, 136.01638 -31.14104, 136.01721 -31.14142, 136.01808 -31.14184, 136.01919 -31.1424, 136.0202 -31.14293, 136.021 -31.14337, 136.02193 -31.14388, 136.02313 -31.14453, 136.0258 -31.14598, 136.02727 -31.14678, 136.02903 -31.14775, 136.03035 -31.14846, 136.03085 -31.14873, 136.03112 -31.14888, 136.0314 -31.14903, 136.03187 -31.14928, 136.03266 -31.14972, 136.03462 -31.15078, 136.0358 -31.15143, 136.03883 -31.15308, 136.04017 -31.1538, 136.04116 -31.15432, 136.04227 -31.15488, 136.04349 -31.15547, 136.04494 -31.15614, 136.04612 -31.15666, 136.04776 -31.15735, 136.04884 -31.15778, 136.04985 -31.15817, 136.05047 -31.1584, 136.05157 -31.15879, 136.05248 -31.15911, 136.05395 -31.1596, 136.0553 -31.16002, 136.05696 -31.1605, 136.05835 -31.16088, 136.05908 -31.16107, 136.06001 -31.1613, 136.06149 -31.16165, 136.06227 -31.16182, 136.06292 -31.16196, 136.06407 -31.16219, 136.06467 -31.16231, 136.06591 -31.16253, 136.0673 -31.16275, 136.06914 -31.16302, 136.07094 -31.16325, 136.07254 -31.16342, 136.07379 -31.16353, 136.07482 -31.16361, 136.07634 -31.16371, 136.07729 -31.16376, 136.07817 -31.1638, 136.07878 -31.16382, 136.07987 -31.16384, 136.08058 -31.16385, 136.0838 -31.16385, 136.08763 -31.16387, 136.08907 -31.16387, 136.08989 -31.16388, 136.09048 -31.16389, 136.09111 -31.16391, 136.09211 -31.16396, 136.0932 -31.16402, 136.09398 -31.16408, 136.09481 -31.16415, 136.09592 -31.16427, 136.09727 -31.16443, 136.09825 -31.16456, 136.09923 -31.16471, 136.10037 -31.1649, 136.10107 -31.16504, 136.10186 -31.16519, 136.10263 -31.16535, 136.10267 -31.16536, 136.10339 -31.16552, 136.10386 -31.16563, 136.10607 -31.16614, 136.11055 -31.16717, 136.11462 -31.16811, 136.1164 -31.16852, 136.11708 -31.16867, 136.11801 -31.16886, 136.11912 -31.16909, 136.12038 -31.16933, 136.12147 -31.16953, 136.12297 -31.16978, 136.12418 -31.16998, 136.12513 -31.17011, 136.12671 -31.17033, 136.12817 -31.17054, 136.12931 -31.17072, 136.13083 -31.17098, 136.13148 -31.17109, 136.13233 -31.17125, 136.13338 -31.17145, 136.13496 -31.17177, 136.13597 -31.17199, 136.13607 -31.17201, 136.13731 -31.17229, 136.14023 -31.17293, 136.14254 -31.17345, 136.14712 -31.17447, 136.1483 -31.17474, 136.1498 -31.17507, 136.15105 -31.17535, 136.15711 -31.1767, 136.1685 -31.17923, 136.17515 -31.18071, 136.17674 -31.18106, 136.1787 -31.1815, 136.18476 -31.18284, 136.18968 -31.18394, 136.19076 -31.18418, 136.19221 -31.18449, 136.19355 -31.18475, 136.19491 -31.18497, 136.19598 -31.18513, 136.19687 -31.18525, 136.19831 -31.18541, 136.19911 -31.18548, 136.20072 -31.18561, 136.2018 -31.18567, 136.20239 -31.18569, 136.20372 -31.18572, 136.20484 -31.18573, 136.20567 -31.18572, 136.20653 -31.1857, 136.20795 -31.18564, 136.20816 -31.18563, 136.20925 -31.18556, 136.20982 -31.18552, 136.21015 -31.18549, 136.21178 -31.18533, 136.21286 -31.1852, 136.21392 -31.18505, 136.21453 -31.18496, 136.21531 -31.18483, 136.21579 -31.18475, 136.21674 -31.18457, 136.21771 -31.18438, 136.21897 -31.18416, 136.21971 -31.18404, 136.22038 -31.18394, 136.22184 -31.18376, 136.22375 -31.18356, 136.22506 -31.18346, 136.22644 -31.18338, 136.22743 -31.18334, 136.22842 -31.18331, 136.22977 -31.1833, 136.23085 -31.18331, 136.23199 -31.18335, 136.23301 -31.18339, 136.23407 -31.18345, 136.23536 -31.18356, 136.23684 -31.1837, 136.23784 -31.18382, 136.23808 -31.18385, 136.23863 -31.18393, 136.23951 -31.18406, 136.24008 -31.18414, 136.24122 -31.18434, 136.24239 -31.18456, 136.24317 -31.18472, 136.24399 -31.1849, 136.24491 -31.18511, 136.24566 -31.1853, 136.2462 -31.18544, 136.24729 -31.18574, 136.24925 -31.18632, 136.25532 -31.18816, 136.26414 -31.19082, 136.26815 -31.19203, 136.27131 -31.19299, 136.27153 -31.19306, 136.27452 -31.19395, 136.27965 -31.19551, 136.28189 -31.19618, 136.28437 -31.19694, 136.28626 -31.19754, 136.2878 -31.19804, 136.28979 -31.1987, 136.29215 -31.1995, 136.29444 -31.2003, 136.29772 -31.20148, 136.29932 -31.20207, 136.30177 -31.203, 136.30462 -31.20411, 136.30714 -31.20513, 136.31063 -31.20658, 136.31246 -31.20738, 136.31399 -31.20808, 136.31506 -31.2086, 136.3163 -31.2092, 136.3179 -31.21002, 136.3193 -31.21076, 136.32094 -31.21166, 136.32207 -31.21232, 136.32343 -31.21312, 136.32449 -31.21377, 136.32595 -31.21468, 136.32772 -31.21577, 136.32988 -31.21711, 136.3315 -31.2181, 136.33246 -31.21867, 136.3333 -31.21916, 136.33473 -31.21995, 136.33604 -31.22067, 136.33768 -31.22151, 136.33906 -31.2222, 136.34106 -31.22314, 136.34285 -31.22394, 136.34425 -31.22453, 136.34541 -31.225, 136.347 -31.22564, 136.34819 -31.22609, 136.34984 -31.22672, 136.35458 -31.22851, 136.35891 -31.23015, 136.36216 -31.23138, 136.36507 -31.23248, 136.36667 -31.23308, 136.3678 -31.23345, 136.36889 -31.23376, 136.36941 -31.23389, 136.37007 -31.23405, 136.37098 -31.23423, 136.37187 -31.23438, 136.37271 -31.23451, 136.37361 -31.23461, 136.37438 -31.23468, 136.3753 -31.23474, 136.37634 -31.23476, 136.37772 -31.23474, 136.37946 -31.23469, 136.38083 -31.23469, 136.38204 -31.23472, 136.38297 -31.23475, 136.38367 -31.23479, 136.38512 -31.23489, 136.38622 -31.23499, 136.3875 -31.23513, 136.38855 -31.23527, 136.38987 -31.23547, 136.39068 -31.23561, 136.39161 -31.23578, 136.39311 -31.23609, 136.39377 -31.23622, 136.39441 -31.23632, 136.39503 -31.23639, 136.39538 -31.23642, 136.39569 -31.23645, 136.39634 -31.23648, 136.39688 -31.23649, 136.39747 -31.23649, 136.39813 -31.23646, 136.39909 -31.23637, 136.39965 -31.23629, 136.40034 -31.23617, 136.40134 -31.23595, 136.40167 -31.23586, 136.40216 -31.23573, 136.40275 -31.23554, 136.40416 -31.23503, 136.405 -31.23475, 136.40602 -31.23441, 136.4069 -31.23413, 136.40754 -31.23393, 136.40855 -31.23367, 136.40966 -31.23338, 136.41086 -31.23309, 136.41182 -31.23288, 136.41247 -31.23274, 136.41341 -31.23256, 136.41416 -31.23242, 136.41486 -31.2323, 136.41565 -31.23217, 136.41648 -31.23205, 136.41745 -31.23192, 136.41838 -31.23181, 136.41909 -31.23173, 136.41993 -31.23165, 136.42066 -31.23159, 136.4216 -31.23152, 136.42257 -31.23147, 136.42322 -31.23144, 136.42423 -31.23141, 136.42588 -31.23139, 136.42737 -31.2314, 136.43014 -31.23148, 136.43156 -31.23151, 136.43256 -31.23152, 136.43432 -31.23153, 136.43618 -31.23154, 136.43805 -31.23151, 136.44051 -31.23147, 136.44214 -31.23143, 136.44346 -31.23139, 136.44476 -31.23133, 136.44694 -31.23123, 136.44895 -31.23112, 136.45011 -31.23105, 136.45228 -31.23089, 136.45372 -31.23078, 136.45481 -31.2307, 136.45619 -31.23063, 136.45756 -31.23057, 136.45832 -31.23055, 136.45906 -31.23054, 136.46084 -31.23055, 136.46246 -31.23058, 136.46407 -31.23065, 136.46507 -31.23071, 136.46588 -31.23077, 136.46682 -31.23087, 136.46745 -31.23095, 136.46815 -31.23105, 136.46877 -31.23115, 136.46938 -31.23126, 136.47025 -31.23144, 136.47095 -31.2316, 136.47144 -31.23173, 136.47211 -31.23191, 136.47291 -31.23215, 136.47359 -31.23236, 136.47396 -31.23249, 136.4744 -31.23265, 136.47539 -31.23302, 136.47617 -31.23335, 136.47626 -31.23339, 136.47684 -31.23366, 136.47749 -31.23396, 136.47803 -31.23424, 136.47863 -31.23455, 136.47928 -31.23492, 136.47995 -31.2353, 136.48047 -31.23563, 136.48096 -31.23595, 136.48158 -31.23638, 136.48219 -31.23682, 136.48288 -31.23736, 136.48299 -31.23745, 136.48541 -31.23946, 136.4867 -31.24054, 136.48803 -31.24164, 136.48893 -31.2424, 136.49011 -31.24339, 136.49082 -31.24394, 136.4913 -31.2443, 136.49176 -31.24463, 136.49254 -31.24516, 136.49313 -31.24553, 136.49382 -31.24596, 136.4946 -31.2464, 136.49546 -31.24686, 136.49647 -31.24736, 136.49738 -31.24777, 136.49837 -31.24819, 136.49875 -31.24834, 136.49936 -31.24857, 136.50053 -31.24897, 136.50172 -31.24933, 136.50289 -31.24964, 136.50394 -31.24988, 136.50411 -31.24992, 136.50482 -31.25006, 136.50539 -31.25017, 136.50633 -31.25032, 136.50787 -31.25053, 136.50934 -31.25072, 136.51165 -31.25097, 136.51343 -31.25114, 136.51481 -31.25125, 136.517 -31.2514, 136.51813 -31.25147, 136.51958 -31.25154, 136.52121 -31.25159, 136.52296 -31.25164, 136.52445 -31.25165, 136.52609 -31.25165, 136.52762 -31.25162, 136.52903 -31.25159, 136.53059 -31.25153, 136.53203 -31.25147, 136.5331 -31.25141, 136.53424 -31.25134, 136.53655 -31.25116, 136.53772 -31.25105, 136.53898 -31.2509, 136.53992 -31.25078, 136.54153 -31.25052, 136.54331 -31.25018, 136.5442 -31.24999, 136.54557 -31.24965, 136.5475 -31.24913, 136.54902 -31.24872, 136.55051 -31.2483, 136.55087 -31.2482, 136.55177 -31.24796, 136.55281 -31.24768, 136.55327 -31.24755, 136.55401 -31.24737, 136.55447 -31.24726, 136.55537 -31.24708, 136.55618 -31.24696, 136.55688 -31.24687, 136.55763 -31.2468, 136.55844 -31.24675, 136.5593 -31.24673, 136.5601 -31.24673, 136.56107 -31.24677, 136.56187 -31.24684, 136.5623 -31.24688, 136.56266 -31.24692, 136.56322 -31.247, 136.56389 -31.24711, 136.56479 -31.2473, 136.56568 -31.24751, 136.56661 -31.24777, 136.56742 -31.24803, 136.56803 -31.24826, 136.56866 -31.2485, 136.5693 -31.24879, 136.57007 -31.24915, 136.57058 -31.24941, 136.57112 -31.24971, 136.57187 -31.25015, 136.5724 -31.25049, 136.57314 -31.251, 136.5738 -31.25151, 136.57522 -31.25265, 136.57661 -31.2537, 136.57756 -31.25438, 136.57816 -31.2548, 136.57906 -31.2554, 136.57985 -31.2559, 136.58088 -31.25654, 136.58168 -31.25701, 136.5827 -31.25759, 136.58347 -31.25802, 136.58431 -31.25846, 136.5852 -31.25891, 136.58589 -31.25924, 136.58657 -31.25957, 136.58748 -31.25998, 136.58846 -31.26041, 136.58953 -31.26085, 136.59046 -31.26122, 136.59122 -31.2615, 136.59195 -31.26177, 136.59315 -31.26218, 136.59398 -31.26245, 136.59517 -31.26281, 136.5958 -31.263, 136.59723 -31.26339, 136.59822 -31.26364, 136.59891 -31.2638, 136.59999 -31.26404, 136.60123 -31.2643, 136.60247 -31.26453, 136.60401 -31.26478, 136.60557 -31.265, 136.60743 -31.26524, 136.61015 -31.26558, 136.61326 -31.26598, 136.61649 -31.26639, 136.61868 -31.26667, 136.62024 -31.26688, 136.62157 -31.26704, 136.62358 -31.26731, 136.62556 -31.26756, 136.62719 -31.26777, 136.62969 -31.26809, 136.63117 -31.26827, 136.63242 -31.26844, 136.63368 -31.26859, 136.63439 -31.26867, 136.63586 -31.26881, 136.63677 -31.26888, 136.6374 -31.26892, 136.63854 -31.26898, 136.63949 -31.26902, 136.6408 -31.26905, 136.64168 -31.26907, 136.64256 -31.26906, 136.64338 -31.26905, 136.64433 -31.26902, 136.64532 -31.26899, 136.64646 -31.26892, 136.64753 -31.26885, 136.6485 -31.26877, 136.64944 -31.26868, 136.65023 -31.26859, 136.65139 -31.26845, 136.65234 -31.26832, 136.65333 -31.26817, 136.65414 -31.26804, 136.65512 -31.26787, 136.65662 -31.26758, 136.65759 -31.26737, 136.65876 -31.2671, 136.66033 -31.26671, 136.66137 -31.26643, 136.66209 -31.26623, 136.66425 -31.26561, 136.66778 -31.26459, 136.67052 -31.2638, 136.6765 -31.26209, 136.68067 -31.26089, 136.68553 -31.2595, 136.69064 -31.25803, 136.69334 -31.25725, 136.69514 -31.25674, 136.69664 -31.25631, 136.69869 -31.25572, 136.70349 -31.25434, 136.70618 -31.25358, 136.7082 -31.25299, 136.71013 -31.25243, 136.71307 -31.25158, 136.71543 -31.25091, 136.71789 -31.2502, 136.71905 -31.24989, 136.71954 -31.24977, 136.72003 -31.24964, 136.72091 -31.24943, 136.72157 -31.24929, 136.7218 -31.24924, 136.7226 -31.24909, 136.72422 -31.24883, 136.72576 -31.24862, 136.72656 -31.24854, 136.72742 -31.24846, 136.72844 -31.2484, 136.72935 -31.24834, 136.73007 -31.24832, 136.73072 -31.24831, 136.7318 -31.24831, 136.73255 -31.24832, 136.73374 -31.24836, 136.73498 -31.24844, 136.73783 -31.24869, 136.73894 -31.24876, 136.74006 -31.24883, 136.74132 -31.24887, 136.74253 -31.24891, 136.74365 -31.24892, 136.74455 -31.24892, 136.74581 -31.24889, 136.74715 -31.24885, 136.74877 -31.24877, 136.75116 -31.24865, 136.75502 -31.24847, 136.75913 -31.24827, 136.76063 -31.2482, 136.76313 -31.24808, 136.76478 -31.24804, 136.76652 -31.24804, 136.76789 -31.24806, 136.7691 -31.2481, 136.77033 -31.24817, 136.77155 -31.24825, 136.77238 -31.24832, 136.77314 -31.24839, 136.77438 -31.24853, 136.77594 -31.24873, 136.77713 -31.24891, 136.77842 -31.24912, 136.78007 -31.24943, 136.78114 -31.24965, 136.78232 -31.24992, 136.78328 -31.25015, 136.78445 -31.25045, 136.78572 -31.2508, 136.78657 -31.25105, 136.78749 -31.25134, 136.78823 -31.25158, 136.78941 -31.25198, 136.79003 -31.2522, 136.79119 -31.25262, 136.79305 -31.25337, 136.79412 -31.25381, 136.79482 -31.25411, 136.79577 -31.25456, 136.79705 -31.25517, 136.79788 -31.25557, 136.79861 -31.25593, 136.79899 -31.25612, 136.79947 -31.25638, 136.79987 -31.2566, 136.80185 -31.25775, 136.80261 -31.2582, 136.80352 -31.25876, 136.80403 -31.25908, 136.80444 -31.25933, 136.80454 -31.25942, 136.80468 -31.25951, 136.80481 -31.2596, 136.80495 -31.25969, 136.80516 -31.25985, 136.80538 -31.26002, 136.80566 -31.26022, 136.80588 -31.26038, 136.80618 -31.26059, 136.80639 -31.26074, 136.8069 -31.26111, 136.80761 -31.26164, 136.80818 -31.26208, 136.80886 -31.26262, 136.80918 -31.26288, 136.80975 -31.26335, 136.81037 -31.26387, 136.81116 -31.26457, 136.81185 -31.26518, 136.81222 -31.26552, 136.81305 -31.26631, 136.81356 -31.26681, 136.81384 -31.26708, 136.81418 -31.26743, 136.81478 -31.26804, 136.81581 -31.26911, 136.81674 -31.27006, 136.81779 -31.27114, 136.82178 -31.27526, 136.82254 -31.27605, 136.82337 -31.27696, 136.82411 -31.2778, 136.82459 -31.27835, 136.82519 -31.27907, 136.82568 -31.27967, 136.82641 -31.28058, 136.82678 -31.28106, 136.82757 -31.28213, 136.82794 -31.28264, 136.82832 -31.28318, 136.82891 -31.28405, 136.82937 -31.28473, 136.83021 -31.286, 136.83095 -31.28711, 136.83225 -31.28908, 136.8326 -31.28961, 136.83308 -31.29033, 136.8336 -31.29111, 136.83433 -31.29219, 136.83472 -31.29274, 136.83533 -31.2936, 136.83573 -31.29413, 136.8365 -31.29514, 136.83713 -31.29593, 136.83759 -31.2965, 136.83834 -31.29741, 136.83865 -31.2978, 136.83918 -31.29844, 136.83962 -31.29898, 136.84121 -31.30093, 136.84191 -31.30179, 136.84354 -31.30379, 136.84443 -31.30489, 136.84498 -31.30555, 136.84555 -31.30626, 136.84623 -31.3071, 136.84739 -31.30852, 136.84817 -31.30947, 136.84851 -31.30989, 136.8492 -31.31074, 136.85051 -31.31235, 136.85294 -31.31532, 136.85388 -31.31648, 136.85435 -31.31706, 136.85531 -31.31823, 136.85762 -31.32106, 136.85978 -31.3237, 136.86014 -31.32415, 136.86113 -31.32536, 136.86207 -31.32651, 136.86241 -31.32693, 136.86302 -31.32769, 136.86392 -31.32879, 136.86485 -31.32993, 136.86598 -31.33131, 136.86785 -31.33361, 136.86834 -31.33421, 136.86873 -31.3347, 136.86947 -31.33559, 136.87042 -31.33676, 136.87121 -31.33773, 136.8728 -31.33967, 136.87316 -31.34011, 136.87373 -31.34082, 136.87476 -31.34208, 136.87614 -31.34376, 136.87698 -31.34478, 136.8782 -31.34629, 136.87891 -31.34715, 136.88014 -31.34866, 136.88051 -31.34912, 136.88115 -31.3499, 136.8817 -31.35057, 136.88369 -31.35301, 136.88447 -31.35396, 136.88479 -31.35436, 136.88569 -31.35546, 136.8859 -31.35571, 136.88639 -31.35632, 136.8876 -31.3578, 136.88871 -31.35915, 136.88907 -31.3596, 136.88976 -31.36044, 136.89013 -31.36087, 136.89071 -31.36149, 136.89115 -31.36194, 136.89155 -31.36235, 136.892 -31.36277, 136.8927 -31.3634, 136.89334 -31.36394, 136.8941 -31.36454, 136.89453 -31.36487, 136.89498 -31.3652, 136.8954 -31.3655, 136.89624 -31.36606, 136.89688 -31.36647, 136.89744 -31.3668, 136.89823 -31.36725, 136.89908 -31.3677, 136.8995 -31.36791, 136.90025 -31.36826, 136.90096 -31.36858, 136.90171 -31.36893, 136.90327 -31.36964, 136.90393 -31.36995, 136.90442 -31.37017, 136.908 -31.37181, 136.91001 -31.37272, 136.91096 -31.37317, 136.91159 -31.37346, 136.91287 -31.37404, 136.91353 -31.37435, 136.9146 -31.37483, 136.91539 -31.3752, 136.91604 -31.37549, 136.91701 -31.37594, 136.91803 -31.37641, 136.91903 -31.37686, 136.92039 -31.37747, 136.92074 -31.37764, 136.92125 -31.37788, 136.92248 -31.37844, 136.92259 -31.37849, 136.92344 -31.37888, 136.92466 -31.37944, 136.9267 -31.38038, 136.92932 -31.38158, 136.9301 -31.38193, 136.93166 -31.38265, 136.932 -31.38281, 136.93231 -31.38295, 136.93293 -31.38324, 136.93303 -31.38328, 136.93337 -31.38343, 136.93386 -31.38365, 136.93398 -31.38371, 136.93449 -31.38395, 136.93573 -31.38451, 136.93659 -31.38491, 136.93768 -31.38539, 136.93798 -31.38552, 136.94083 -31.38673, 136.94186 -31.38716, 136.94394 -31.38805, 136.94644 -31.38911, 136.94865 -31.39004, 136.95074 -31.39093, 136.95495 -31.39272, 136.95639 -31.39332, 136.95766 -31.39386, 136.95907 -31.39446, 136.95968 -31.39472, 136.95995 -31.39483, 136.96044 -31.39504, 136.96102 -31.3953, 136.96153 -31.39552, 136.96239 -31.39588, 136.9625 -31.39593, 136.96369 -31.39645, 136.96471 -31.3969, 136.96486 -31.39697, 136.96575 -31.39736, 136.96736 -31.39808, 136.96848 -31.3986, 136.9695 -31.39905, 136.97108 -31.39979, 136.9715 -31.39999, 136.97183 -31.40014, 136.97265 -31.40053, 136.9729 -31.40065, 136.97351 -31.40094, 136.9739 -31.40112, 136.97399 -31.40116, 136.97413 -31.40123, 136.97485 -31.40157, 136.97555 -31.40191, 136.97674 -31.4025, 136.97691 -31.40258, 136.97835 -31.40327, 136.97903 -31.40361, 136.97971 -31.40396, 136.98067 -31.40443, 136.98236 -31.40528, 136.98246 -31.40533, 136.98306 -31.40564, 136.98344 -31.40584, 136.98425 -31.40627, 136.98505 -31.40674, 136.9855 -31.40703, 136.98586 -31.40727, 136.98609 -31.40743, 136.9866 -31.4078, 136.98693 -31.40806, 136.98732 -31.40837, 136.9878 -31.40879, 136.98824 -31.40918, 136.98875 -31.40969, 136.98908 -31.41002, 136.98944 -31.41041, 136.98983 -31.41087, 136.99002 -31.4111, 136.99056 -31.4118, 136.99093 -31.41232, 136.99115 -31.41267, 136.99139 -31.41305, 136.99163 -31.41348, 136.99195 -31.41406, 136.99221 -31.41457, 136.99233 -31.41483, 136.99249 -31.41522, 136.99267 -31.41565, 136.99287 -31.4162, 136.99303 -31.41667, 136.99318 -31.41718, 136.99332 -31.41772, 136.99345 -31.41831, 136.99355 -31.41887, 136.99362 -31.41934, 136.99401 -31.4218, 136.99427 -31.42344, 136.99446 -31.4247, 136.99453 -31.42514, 136.99475 -31.42654, 136.99486 -31.42722, 136.99495 -31.42782, 136.99507 -31.42858, 136.99537 -31.43053, 136.99542 -31.43081, 136.99555 -31.43136, 136.99579 -31.43217, 136.99609 -31.43297, 136.99633 -31.43351, 136.99658 -31.43403, 136.99699 -31.43477, 136.99732 -31.43528, 136.99755 -31.43561, 136.99784 -31.43601, 136.99819 -31.43644, 136.99858 -31.43688, 136.9988 -31.43711, 136.99901 -31.43733, 136.99935 -31.43766, 136.99969 -31.43797, 137.00002 -31.43826, 137.00026 -31.43846, 137.00088 -31.43892, 137.00128 -31.43921, 137.00187 -31.4396, 137.00245 -31.43993, 137.00298 -31.44021, 137.00501 -31.44125, 137.00624 -31.44187, 137.00702 -31.44226, 137.00858 -31.44305, 137.01091 -31.44424, 137.01134 -31.44446, 137.01179 -31.44467, 137.01222 -31.44487, 137.01251 -31.445, 137.01317 -31.44527, 137.0135 -31.44539, 137.01435 -31.44567, 137.01683 -31.44641, 137.01855 -31.44694, 137.01902 -31.44708, 137.02362 -31.44847, 137.02468 -31.4488, 137.02516 -31.44895, 137.02575 -31.44915, 137.02633 -31.44938, 137.02696 -31.44966, 137.02772 -31.45002, 137.02836 -31.45037, 137.02858 -31.45051, 137.02887 -31.45068, 137.02939 -31.45102, 137.02986 -31.45136, 137.03011 -31.45154, 137.03033 -31.45171, 137.03087 -31.45216, 137.03112 -31.4524, 137.0317 -31.45294, 137.0329 -31.4541, 137.03549 -31.45659, 137.03674 -31.4578, 137.03807 -31.45906, 137.03893 -31.4599, 137.03988 -31.46081, 137.04003 -31.46095, 137.0401 -31.46101, 137.04057 -31.46147, 137.04143 -31.4623, 137.04201 -31.46286, 137.04347 -31.46426, 137.04428 -31.46504, 137.04523 -31.46594, 137.04575 -31.4664, 137.04597 -31.46658, 137.04631 -31.46684, 137.0466 -31.46706, 137.04717 -31.46744, 137.04765 -31.46775, 137.04843 -31.4682, 137.04907 -31.46852, 137.04968 -31.4688, 137.05008 -31.46897, 137.05164 -31.46958, 137.05303 -31.47013, 137.05444 -31.47069, 137.05585 -31.47124, 137.05644 -31.47148, 137.05884 -31.47242, 137.06061 -31.47311, 137.06419 -31.47453, 137.06567 -31.4751, 137.06665 -31.47549, 137.0701 -31.47685, 137.07242 -31.47777, 137.07498 -31.47877, 137.07686 -31.47951, 137.0793 -31.48045, 137.07994 -31.48071, 137.08047 -31.48095, 137.08073 -31.48108, 137.08103 -31.48124, 137.08148 -31.48152, 137.08183 -31.48175, 137.08222 -31.48204, 137.08265 -31.48239, 137.08298 -31.4827, 137.08325 -31.48298, 137.08358 -31.48335, 137.0843 -31.48422, 137.08514 -31.48522, 137.08626 -31.48658, 137.08741 -31.48795, 137.08832 -31.48905, 137.08872 -31.48953, 137.08941 -31.49036, 137.09102 -31.4923, 137.09196 -31.49342, 137.09361 -31.4954, 137.0944 -31.49636, 137.09539 -31.49754, 137.098 -31.50068, 137.09833 -31.50107, 137.09872 -31.50154, 137.09894 -31.5018, 137.09961 -31.50261, 137.10046 -31.50362, 137.10185 -31.50529, 137.10237 -31.50593, 137.10316 -31.50688, 137.10369 -31.50751, 137.10412 -31.50803, 137.10448 -31.50846, 137.10523 -31.50937, 137.10616 -31.51048, 137.10668 -31.5111, 137.10807 -31.51278, 137.10857 -31.51337, 137.10942 -31.5144, 137.11055 -31.51575, 137.11127 -31.51663, 137.11167 -31.5171, 137.11206 -31.51751, 137.11241 -31.51784, 137.11278 -31.51816, 137.11313 -31.51843, 137.1135 -31.51869, 137.11403 -31.51904, 137.11456 -31.51937, 137.11506 -31.5197, 137.11647 -31.52059, 137.11713 -31.521, 137.11746 -31.52122, 137.11789 -31.52153, 137.11798 -31.5216, 137.11812 -31.52171, 137.1184 -31.52195, 137.11851 -31.52205, 137.11865 -31.52217, 137.11892 -31.52244, 137.11922 -31.52276, 137.11961 -31.52323, 137.11978 -31.52347, 137.11992 -31.52368, 137.12022 -31.52418, 137.1206 -31.52486, 137.12093 -31.52545, 137.12142 -31.52633, 137.12197 -31.52731, 137.12207 -31.52748, 137.12217 -31.52766, 137.12227 -31.52783, 137.1226 -31.5284, 137.12392 -31.53074, 137.1241 -31.53105, 137.12422 -31.53127, 137.12434 -31.53147, 137.12493 -31.53252, 137.12547 -31.53349, 137.12579 -31.53407, 137.12638 -31.53509, 137.1268 -31.53585, 137.127 -31.53626, 137.12718 -31.53666, 137.12729 -31.53694, 137.12737 -31.53721, 137.1275 -31.53769, 137.12755 -31.53792, 137.12761 -31.53824, 137.12765 -31.53853, 137.12767 -31.5388, 137.12769 -31.53927, 137.12769 -31.53964, 137.12767 -31.54052, 137.12766 -31.54188, 137.12764 -31.54278, 137.12763 -31.54355, 137.12762 -31.54382, 137.12758 -31.54439, 137.12754 -31.54466, 137.12749 -31.54494, 137.12735 -31.54549, 137.12718 -31.54603, 137.12708 -31.54629, 137.12691 -31.54667, 137.12671 -31.54707, 137.12648 -31.54745, 137.12557 -31.54877, 137.12527 -31.54927, 137.12502 -31.54978, 137.1249 -31.55006, 137.1247 -31.5506, 137.12454 -31.55114, 137.12448 -31.55141, 137.1244 -31.55197, 137.12436 -31.55239, 137.12434 -31.55281, 137.12437 -31.55337, 137.12443 -31.55392, 137.12454 -31.55448, 137.12461 -31.55475, 137.12474 -31.55517, 137.12489 -31.55558, 137.12508 -31.55599, 137.12525 -31.55635, 137.12567 -31.5571, 137.12591 -31.55757, 137.12611 -31.55794, 137.12662 -31.55891, 137.1269 -31.55943, 137.12811 -31.56171, 137.12892 -31.56324, 137.12988 -31.56506, 137.13053 -31.56629, 137.13089 -31.56695, 137.13244 -31.56987, 137.13313 -31.57118, 137.13353 -31.57192, 137.13433 -31.57342, 137.13487 -31.57444, 137.13527 -31.57519, 137.13564 -31.57588, 137.13636 -31.57725, 137.13752 -31.57945, 137.13836 -31.58106, 137.1386 -31.58151, 137.13879 -31.58187, 137.13887 -31.58205, 137.13901 -31.58236, 137.13932 -31.58311, 137.13955 -31.58373, 137.13979 -31.58448, 137.14002 -31.58531, 137.14015 -31.5859, 137.14026 -31.58641, 137.14035 -31.58696, 137.14082 -31.59008, 137.1411 -31.59189, 137.14132 -31.59336, 137.14148 -31.59438, 137.14182 -31.59669, 137.14198 -31.59766, 137.14217 -31.59891, 137.14255 -31.60143, 137.14286 -31.60349, 137.14305 -31.60474, 137.14334 -31.60669, 137.14352 -31.6078, 137.14374 -31.6093, 137.14415 -31.61202, 137.14431 -31.61313, 137.14432 -31.61317, 137.14438 -31.61357, 137.14449 -31.61426, 137.1446 -31.61494, 137.14477 -31.61614, 137.14497 -31.61742, 137.14554 -31.62114, 137.14571 -31.62229, 137.14596 -31.62392, 137.14627 -31.62599, 137.14658 -31.628, 137.14668 -31.62864, 137.14692 -31.6303, 137.14703 -31.63097, 137.14716 -31.63169, 137.14734 -31.63252, 137.14754 -31.63334, 137.14777 -31.63416, 137.14821 -31.63551, 137.14944 -31.63903, 137.1499 -31.64034, 137.15064 -31.64249, 137.15078 -31.64289, 137.1514 -31.64463, 137.15154 -31.64504, 137.15324 -31.64991, 137.15438 -31.65319, 137.15505 -31.6551, 137.15535 -31.65591, 137.1558 -31.65697, 137.15617 -31.65774, 137.15646 -31.65827, 137.15672 -31.65875, 137.15718 -31.65951, 137.15802 -31.66079, 137.15886 -31.66207, 137.15974 -31.6634, 137.16054 -31.66463, 137.16089 -31.66514, 137.16134 -31.66585, 137.16156 -31.66617, 137.16199 -31.66683, 137.16319 -31.66866, 137.1642 -31.6702, 137.16466 -31.67088, 137.16593 -31.67282, 137.16713 -31.67463, 137.16762 -31.67539, 137.16813 -31.67612, 137.16849 -31.67659, 137.16888 -31.67706, 137.1695 -31.67773, 137.17017 -31.67837, 137.17083 -31.67895, 137.1713 -31.67932, 137.17179 -31.67969, 137.17254 -31.6802, 137.17307 -31.68053, 137.17384 -31.68097, 137.17446 -31.68129, 137.17502 -31.68155, 137.1759 -31.68193, 137.17656 -31.68217, 137.17717 -31.68238, 137.17799 -31.68262, 137.17866 -31.68278, 137.17929 -31.68292, 137.17993 -31.68304, 137.18162 -31.6833, 137.18404 -31.68366, 137.186 -31.68395, 137.18799 -31.68425, 137.18869 -31.68437, 137.18933 -31.68449, 137.19025 -31.68469, 137.19083 -31.68484, 137.19153 -31.68502, 137.19218 -31.68521, 137.19337 -31.6856, 137.19398 -31.68582, 137.19454 -31.68603, 137.19486 -31.68616, 137.19522 -31.68632, 137.19601 -31.68666, 137.19659 -31.68694, 137.19742 -31.68736, 137.19806 -31.68771, 137.19865 -31.68806, 137.19913 -31.68834, 137.19969 -31.6887, 137.20038 -31.68917, 137.20098 -31.6896, 137.20159 -31.69008, 137.20183 -31.69027, 137.20223 -31.69058, 137.20277 -31.69106, 137.20337 -31.69162, 137.2037 -31.69193, 137.20427 -31.69251, 137.20529 -31.69362, 137.20637 -31.69482, 137.20679 -31.69528, 137.20732 -31.69585, 137.20777 -31.6963, 137.20842 -31.6969, 137.20907 -31.69745, 137.20933 -31.69765, 137.21002 -31.69817, 137.21037 -31.69841, 137.21083 -31.69872, 137.21113 -31.6989, 137.21163 -31.6992, 137.21225 -31.69955, 137.21263 -31.69975, 137.21333 -31.70009, 137.21404 -31.70041, 137.21461 -31.70065, 137.21553 -31.70099, 137.21633 -31.70126, 137.2164 -31.70128, 137.2174 -31.70157, 137.21888 -31.70201, 137.21998 -31.70234, 137.22054 -31.70253, 137.22089 -31.70266, 137.22133 -31.70286, 137.22151 -31.70294, 137.2221 -31.70323, 137.22228 -31.70332, 137.22279 -31.70361, 137.22323 -31.70388, 137.22356 -31.7041, 137.22402 -31.70445, 137.2245 -31.70483, 137.22498 -31.70526, 137.22518 -31.70545, 137.2255 -31.7058, 137.22572 -31.70604, 137.22602 -31.70641, 137.22614 -31.70658, 137.22634 -31.70684, 137.22662 -31.70725, 137.22684 -31.7076, 137.22698 -31.70784, 137.22729 -31.70845, 137.22751 -31.70895, 137.22766 -31.70936, 137.22785 -31.70997, 137.22799 -31.71049, 137.22807 -31.71091, 137.22813 -31.71128, 137.22816 -31.71156, 137.22823 -31.71235, 137.22834 -31.71318, 137.22844 -31.71372, 137.22864 -31.71453, 137.22889 -31.71533, 137.22909 -31.71585, 137.22928 -31.71628, 137.22944 -31.71662, 137.22957 -31.71687, 137.22984 -31.71735, 137.23008 -31.71773, 137.23044 -31.7183, 137.23062 -31.71855, 137.23066 -31.7186, 137.23097 -31.71901, 137.23156 -31.71971, 137.2321 -31.72035, 137.23313 -31.72156, 137.23419 -31.72281, 137.23493 -31.72368, 137.23566 -31.72454, 137.23607 -31.72502, 137.23645 -31.72547, 137.2369 -31.726, 137.23755 -31.72678, 137.23887 -31.72832, 137.23962 -31.72922, 137.24018 -31.72987, 137.2408 -31.7306, 137.24149 -31.73141, 137.24205 -31.73209, 137.2428 -31.73296, 137.24332 -31.73357, 137.2437 -31.73401, 137.24435 -31.73473, 137.24487 -31.73529, 137.24533 -31.73578, 137.24628 -31.73673, 137.24713 -31.73756, 137.24767 -31.73807, 137.24888 -31.73915, 137.25105 -31.74103, 137.25207 -31.74191, 137.25318 -31.74286, 137.25358 -31.74321, 137.25442 -31.74394, 137.25572 -31.74506, 137.25838 -31.74736, 137.26095 -31.74957, 137.2622 -31.75065, 137.26351 -31.75179, 137.26463 -31.75275, 137.2655 -31.75351, 137.26633 -31.75422, 137.26844 -31.75605, 137.2718 -31.75894, 137.27291 -31.75991, 137.27376 -31.76064, 137.27439 -31.76118, 137.27517 -31.76185, 137.27613 -31.76268, 137.27722 -31.76362, 137.27786 -31.76417, 137.27834 -31.76458, 137.27947 -31.76556, 137.28088 -31.76678, 137.28312 -31.76871, 137.28366 -31.76917, 137.28433 -31.76976, 137.28576 -31.77098, 137.28751 -31.7725, 137.28791 -31.77284, 137.28866 -31.77349, 137.28877 -31.77358, 137.28882 -31.77362, 137.28931 -31.77405, 137.29007 -31.7747, 137.29053 -31.7751, 137.29123 -31.77571, 137.29158 -31.77603, 137.29193 -31.77636, 137.29219 -31.77663, 137.29271 -31.7772, 137.2931 -31.77765, 137.29336 -31.77798, 137.2937 -31.77843, 137.29387 -31.77867, 137.29403 -31.7789, 137.29437 -31.77943, 137.29466 -31.77991, 137.29533 -31.7811, 137.29611 -31.78249, 137.29755 -31.78506, 137.29888 -31.7874, 137.30148 -31.79203, 137.30252 -31.79385, 137.3041 -31.79668, 137.30571 -31.79952, 137.30732 -31.80239, 137.30773 -31.80313, 137.30844 -31.80436, 137.30962 -31.80647, 137.31021 -31.8075, 137.31122 -31.80931, 137.31248 -31.81154, 137.3134 -31.81317, 137.314 -31.81424, 137.31464 -31.81536, 137.31567 -31.8172, 137.31665 -31.81892, 137.31882 -31.82278, 137.31986 -31.82462, 137.3203 -31.82541, 137.32079 -31.82627, 137.32125 -31.82709, 137.32177 -31.82801, 137.32309 -31.83034, 137.32437 -31.83262, 137.32627 -31.836, 137.32702 -31.83733, 137.32862 -31.84015, 137.33162 -31.84546, 137.33255 -31.84711, 137.3327 -31.84738, 137.33302 -31.84795, 137.33484 -31.85118, 137.33812 -31.857, 137.33978 -31.85993, 137.34372 -31.8669, 137.34698 -31.87268, 137.34806 -31.87461, 137.34867 -31.87567, 137.34872 -31.87575, 137.35252 -31.88248, 137.3553 -31.88741, 137.35757 -31.89142, 137.35776 -31.89176, 137.35931 -31.8945, 137.3608 -31.89715, 137.36158 -31.89852, 137.36227 -31.89974, 137.36373 -31.90232, 137.36515 -31.90483, 137.36663 -31.90745, 137.36689 -31.90792, 137.3681 -31.91005, 137.36852 -31.9108, 137.36883 -31.91135, 137.36945 -31.91245, 137.36983 -31.91312, 137.37025 -31.91387, 137.37081 -31.91483, 137.3712 -31.91554, 137.3716 -31.91625, 137.37235 -31.91757, 137.37276 -31.91829, 137.37361 -31.9198, 137.37397 -31.92048, 137.37432 -31.92121, 137.3746 -31.92186, 137.37473 -31.9222, 137.37483 -31.92247, 137.37493 -31.92275, 137.37506 -31.92311, 137.37522 -31.92364, 137.37536 -31.92418, 137.37548 -31.92472, 137.37569 -31.92579, 137.37597 -31.92715, 137.37607 -31.92755, 137.37618 -31.92796, 137.37623 -31.92811, 137.37626 -31.92822, 137.37635 -31.92849, 137.37654 -31.92901, 137.37675 -31.92953, 137.37687 -31.92981, 137.37711 -31.93032, 137.37714 -31.93038, 137.37732 -31.93072, 137.37736 -31.9308, 137.37751 -31.93107, 137.37768 -31.93134, 137.37796 -31.93179, 137.37844 -31.93251, 137.37856 -31.93269, 137.37927 -31.93376, 137.37947 -31.93405, 137.38065 -31.93583, 137.38265 -31.93885, 137.38418 -31.94115, 137.38632 -31.94437, 137.38903 -31.94846, 137.39599 -31.95894, 137.39945 -31.96414, 137.40335 -31.97, 137.40634 -31.97451, 137.40801 -31.97703, 137.40946 -31.97925, 137.41013 -31.98028, 137.41295 -31.98462, 137.41607 -31.9894, 137.41698 -31.9908, 137.42061 -31.99638, 137.42086 -31.99677, 137.42495 -32.00304, 137.43127 -32.012749, 137.43469 -32.017989, 137.43763 -32.022509, 137.43919 -32.02491, 137.44333 -32.03126, 137.4439 -32.03213, 137.44468 -32.03333, 137.44472 -32.033389, 137.44497 -32.033769, 137.44551 -32.03461, 137.4458 -32.035069, 137.44599 -32.03539, 137.44619 -32.03575, 137.44636 -32.036099, 137.44656 -32.03655, 137.44676 -32.03707, 137.44691 -32.03756, 137.44705 -32.0381, 137.44714 -32.03858, 137.44721 -32.03911, 137.44723 -32.03931, 137.44725 -32.03961, 137.44726 -32.04008, 137.44724 -32.04058, 137.4472 -32.04112, 137.44714 -32.041719, 137.44706 -32.04262, 137.44686 -32.04482, 137.44675 -32.04608, 137.44671 -32.0465, 137.44622 -32.051859, 137.44585 -32.05586, 137.44559 -32.058729, 137.44557 -32.05898, 137.44549 -32.05988, 137.44548 -32.05998, 137.44547 -32.060139, 137.44545 -32.06031, 137.44543 -32.06054, 137.44511 -32.064, 137.44447 -32.07099, 137.44375 -32.078899, 137.44271 -32.0902, 137.4427 -32.09031, 137.44251 -32.09239, 137.44159 -32.10244, 137.44101 -32.10879, 137.44072 -32.111939, 137.44052 -32.114069, 137.44038 -32.11554, 137.44018 -32.1177, 137.44008 -32.118789, 137.44006 -32.11902, 137.43994 -32.12025, 137.43989 -32.120759, 137.43984 -32.12144, 137.43981 -32.12202, 137.4398 -32.12281, 137.4398 -32.123399, 137.43983 -32.12401, 137.4399 -32.12487, 137.43996 -32.12543, 137.44003 -32.12599, 137.44024 -32.127119, 137.44045 -32.12803, 137.44054 -32.128369, 137.44082 -32.12933, 137.44099 -32.12984, 137.44127 -32.1306, 137.44133 -32.13074, 137.44154 -32.131259, 137.44188 -32.13201, 137.44221 -32.13268, 137.44245 -32.133139, 137.44275 -32.13368, 137.44313 -32.13433, 137.44357 -32.13501, 137.44413 -32.13582, 137.44457 -32.136409, 137.44466 -32.13653, 137.44512 -32.137099, 137.44563 -32.13769, 137.44636 -32.138489, 137.44724 -32.1394, 137.44953 -32.14179, 137.45187 -32.14423, 137.4551 -32.14759, 137.45773 -32.150329, 137.46004 -32.15273, 137.46157 -32.15433, 137.46345 -32.15629, 137.46503 -32.15793, 137.47137 -32.16454, 137.47785 -32.17128, 137.4792 -32.17269, 137.48028 -32.17381, 137.48068 -32.17423, 137.48296 -32.1766, 137.48616 -32.17993, 137.48997 -32.183889, 137.49113 -32.18509, 137.49187 -32.18587, 137.49225 -32.186259, 137.49331 -32.18737, 137.49438 -32.18848, 137.4972 -32.19145, 137.50239 -32.1969, 137.50507 -32.19971, 137.50832 -32.20313, 137.51043 -32.20536, 137.51236 -32.2074, 137.51512 -32.21031, 137.51896 -32.21437, 137.51967 -32.21512, 137.52068 -32.21618, 137.52127 -32.21681, 137.52329 -32.21894, 137.52359 -32.21927, 137.52373 -32.21941, 137.52505 -32.220799, 137.52578 -32.221559, 137.52803 -32.22385, 137.53062 -32.2265, 137.5331 -32.22903, 137.5347 -32.23067, 137.53759 -32.23361, 137.54052 -32.2366, 137.54128 -32.237389, 137.54373 -32.23991, 137.54527 -32.24149, 137.54534 -32.24156, 137.54592 -32.24215, 137.54597 -32.24221, 137.54617 -32.24242, 137.54714 -32.243409, 137.54825 -32.244549, 137.54943 -32.2458, 137.55021 -32.24667, 137.55116 -32.24778, 137.55171 -32.24846, 137.55224 -32.24913, 137.55268 -32.24969, 137.55311 -32.250279, 137.55355 -32.25088, 137.55396 -32.25145, 137.55461 -32.2524, 137.55525 -32.25338, 137.55586 -32.25436, 137.55671 -32.25582, 137.5571 -32.25652, 137.55792 -32.258, 137.5588 -32.25956, 137.56 -32.26171, 137.56208 -32.26543, 137.56497 -32.2706, 137.56635 -32.27308, 137.56732 -32.27481, 137.56836 -32.27668, 137.56898 -32.27778, 137.56947 -32.27866, 137.57056 -32.28062, 137.57273 -32.284489, 137.57454 -32.28773, 137.57848 -32.29478, 137.58009 -32.297649, 137.58098 -32.29925, 137.58145 -32.3001, 137.58191 -32.30098, 137.58215 -32.30147, 137.58238 -32.30193, 137.58264 -32.30247, 137.58283 -32.30287, 137.58305 -32.30337, 137.58326 -32.30384, 137.58349 -32.304389, 137.58373 -32.304969, 137.58449 -32.30677, 137.58535 -32.30883, 137.58586 -32.31006, 137.58712 -32.31307, 137.58842 -32.31616, 137.59004 -32.32004, 137.59126 -32.32295, 137.59247 -32.32583, 137.59269 -32.32636, 137.59295 -32.32697, 137.594 -32.329479, 137.59553 -32.333129, 137.59595 -32.334139, 137.59631 -32.335, 137.59666 -32.33581, 137.59698 -32.336599, 137.59731 -32.33739, 137.59792 -32.33883, 137.59875 -32.34082, 137.60015 -32.34416, 137.60116 -32.34657, 137.60191 -32.34835, 137.60273 -32.35031, 137.603 -32.35096, 137.60325 -32.351529, 137.60346 -32.351999, 137.60367 -32.35244, 137.60393 -32.35295, 137.60422 -32.353479, 137.60455 -32.35403, 137.60478 -32.3544, 137.60495 -32.35467, 137.60524 -32.3551, 137.60557 -32.355559, 137.60568 -32.35571, 137.60595 -32.35606, 137.60637 -32.356569, 137.60667 -32.35693, 137.60712 -32.357439, 137.60742 -32.35777, 137.60809 -32.35844, 137.60856 -32.35888, 137.60918 -32.35943, 137.61026 -32.36038, 137.61247 -32.36231, 137.61487 -32.36441, 137.61587 -32.36529, 137.61736 -32.36659, 137.61922 -32.36822, 137.62038 -32.369239, 137.6221 -32.370739, 137.62463 -32.37295, 137.6271 -32.37511, 137.62939 -32.377119, 137.6313 -32.37879, 137.63238 -32.37973, 137.63327 -32.38055, 137.6339 -32.38116, 137.63445 -32.38169, 137.63537 -32.382579, 137.63713 -32.38429, 137.64008 -32.38716, 137.64158 -32.38862, 137.64268 -32.389699, 137.64485 -32.3918, 137.64592 -32.39284, 137.6476 -32.39448, 137.64882 -32.39566, 137.65177 -32.398519, 137.65242 -32.39916, 137.65362 -32.40032, 137.65435 -32.40103, 137.65504 -32.4017, 137.6559 -32.40254, 137.65675 -32.40336, 137.65753 -32.40413, 137.65823 -32.404809, 137.65883 -32.40538, 137.65984 -32.40637, 137.66216 -32.40862, 137.66424 -32.41064, 137.66533 -32.4117, 137.66833 -32.41461, 137.67062 -32.41684, 137.67135 -32.41754, 137.6718 -32.41796, 137.6723 -32.4184, 137.67284 -32.41885, 137.67358 -32.41944, 137.67411 -32.41984, 137.67418 -32.4199, 137.67453 -32.42016, 137.67493 -32.42044, 137.67534 -32.42072, 137.67593 -32.4211, 137.67708 -32.42181, 137.67905 -32.423, 137.68043 -32.42384, 137.68174 -32.42463, 137.68297 -32.42537, 137.68452 -32.42631, 137.68589 -32.42714, 137.68699 -32.42781, 137.68806 -32.428449, 137.68905 -32.429049, 137.68967 -32.42943, 137.69003 -32.42967, 137.6903 -32.429859, 137.69039 -32.42992, 137.69047 -32.42998, 137.69101 -32.43039, 137.69144 -32.43074, 137.69178 -32.43105, 137.69213 -32.43137, 137.69248 -32.43173, 137.69278 -32.432049, 137.69303 -32.43233, 137.69325 -32.4326, 137.69344 -32.43284, 137.69351 -32.43293, 137.69369 -32.433169, 137.69392 -32.43349, 137.69413 -32.43381, 137.69454 -32.434469, 137.69543 -32.43593, 137.69596 -32.436819, 137.69659 -32.43783, 137.697 -32.43846, 137.69729 -32.43887, 137.69752 -32.439169, 137.69772 -32.43942, 137.69782 -32.43954, 137.69802 -32.43978, 137.6984 -32.440199, 137.69875 -32.44055, 137.69893 -32.44072, 137.69907 -32.44086, 137.69957 -32.4413, 137.70002 -32.44167, 137.70043 -32.44198, 137.70088 -32.4423, 137.7014 -32.442639, 137.70212 -32.44308, 137.70318 -32.44373, 137.70442 -32.44449, 137.70729 -32.44625, 137.70881 -32.44718, 137.70979 -32.44778, 137.71058 -32.44825, 137.71145 -32.44874, 137.71224 -32.44917, 137.71274 -32.44943, 137.7134 -32.449759, 137.71421 -32.45015, 137.71501 -32.450519, 137.71588 -32.450899, 137.71718 -32.451459, 137.72008 -32.45271, 137.72032 -32.45281, 137.7206 -32.45293, 137.72088 -32.453049, 137.72301 -32.45396, 137.72401 -32.454389, 137.72587 -32.45518, 137.72728 -32.45579, 137.72787 -32.45606, 137.72819 -32.45621, 137.72857 -32.45641, 137.72909 -32.45669, 137.72969 -32.45704, 137.73023 -32.45738, 137.73069 -32.4577, 137.73127 -32.458129, 137.7317 -32.45848, 137.73217 -32.45888, 137.73249 -32.45917, 137.73287 -32.45953, 137.73321 -32.45986, 137.73347 -32.46013, 137.73455 -32.46126, 137.73585 -32.462609, 137.73631 -32.463099, 137.73687 -32.463679, 137.73713 -32.46396, 137.73801 -32.46488, 137.73839 -32.46528, 137.73851 -32.46541, 137.73865 -32.46555, 137.73896 -32.46588, 137.73911 -32.46603, 137.7395 -32.46643, 137.7397 -32.46664, 137.74014 -32.46711, 137.74114 -32.46815, 137.74253 -32.4696, 137.7426 -32.46967, 137.74302 -32.47011, 137.74331 -32.470419, 137.74345 -32.47057, 137.74349 -32.47061, 137.7441 -32.47124, 137.74483 -32.472009, 137.74537 -32.472569, 137.74571 -32.47291, 137.74582 -32.47302, 137.74593 -32.47312, 137.74633 -32.473509, 137.7465 -32.47368, 137.74708 -32.47424, 137.7477 -32.47484, 137.74813 -32.47527, 137.74823 -32.47535, 137.74855 -32.47565, 137.7488 -32.475879, 137.74924 -32.47627, 137.74952 -32.47652, 137.74967 -32.47666, 137.75009 -32.47704, 137.75062 -32.47753, 137.75092 -32.477809, 137.75115 -32.478029, 137.75148 -32.47834, 137.75166 -32.47851, 137.75191 -32.478749, 137.75214 -32.47898, 137.75229 -32.479149, 137.75241 -32.4793, 137.75252 -32.47946, 137.75259 -32.47957, 137.75271 -32.479799, 137.75279 -32.47996, 137.75299 -32.480069, 137.75311 -32.48014, 137.75322 -32.48019, 137.75343 -32.480269, 137.75365 -32.4803, 137.75388 -32.48035, 137.75407 -32.4804, 137.75431 -32.48048, 137.75446 -32.480539, 137.75461 -32.48061, 137.7548 -32.48071, 137.755 -32.480829, 137.75528 -32.481009, 137.75536 -32.48107, 137.75559 -32.48122, 137.75574 -32.481319, 137.75591 -32.48144, 137.75612 -32.48158, 137.75634 -32.48169, 137.75657 -32.48178, 137.75709 -32.48196, 137.75738 -32.48207, 137.75764 -32.48219, 137.75771 -32.48223, 137.75781 -32.48229, 137.75789 -32.48234, 137.75795 -32.48238, 137.758 -32.482419, 137.75806 -32.48247, 137.75812 -32.48252, 137.75815 -32.48255, 137.7582 -32.482599, 137.75831 -32.48272, 137.75842 -32.48285, 137.75854 -32.482999, 137.75864 -32.48312, 137.75891 -32.48344, 137.75911 -32.483669, 137.75928 -32.48387, 137.75949 -32.48408, 137.75962 -32.4842, 137.76005 -32.48458, 137.76019 -32.48471, 137.76033 -32.48481, 137.76057 -32.48496, 137.76082 -32.4851, 137.76103 -32.48521, 137.76171 -32.48555, 137.76271 -32.48604, 137.76374 -32.486539, 137.76411 -32.486739, 137.76435 -32.48687, 137.76455 -32.48699, 137.76475 -32.487119, 137.76505 -32.48735, 137.76533 -32.487589, 137.76562 -32.487859, 137.76574 -32.48799, 137.76587 -32.48814, 137.76596 -32.48825, 137.7662 -32.4886, 137.7663 -32.48875, 137.76638 -32.48888, 137.76651 -32.48908, 137.76664 -32.48926, 137.76678 -32.48943, 137.76685 -32.48953, 137.76693 -32.48963, 137.76721 -32.48998, 137.76764 -32.49053, 137.76778 -32.49073, 137.76795 -32.490969, 137.76813 -32.49104, 137.76836 -32.4911, 137.76846 -32.49104, 137.76952 -32.490409, 137.77115 -32.48949, 137.77171 -32.49022, 137.77223 -32.490879, 137.7725 -32.49122, 137.77201 -32.491509, 137.772 -32.491639, 137.772 -32.491729, 137.7719303203 -32.4917797666)" +-29.0178793,134.7558755,-30.9701625,135.7504826,8,Coober Pedy,"LINESTRING (134.7561961168 -29.0177540591, 134.7563 -29.01802, 134.75644 -29.0184, 134.75656 -29.0188, 134.75671 -29.0195, 134.75678 -29.01992, 134.75683 -29.02067, 134.75683 -29.02132, 134.75682 -29.02152, 134.75668 -29.02261, 134.75662 -29.02302, 134.75659 -29.02325, 134.75646 -29.02399, 134.75687 -29.02403, 134.75734 -29.02407, 134.75801 -29.02413, 134.75878 -29.02418, 134.75925 -29.0242, 134.76052 -29.02427, 134.76116 -29.0243, 134.7626 -29.02433, 134.76468 -29.02437, 134.76618 -29.02441, 134.76669 -29.02444, 134.767 -29.02446, 134.76762 -29.0245, 134.76822 -29.02456, 134.76873 -29.02462, 134.76939 -29.02471, 134.76996 -29.0248, 134.77076 -29.02495, 134.77159 -29.02513, 134.77226 -29.0253, 134.77294 -29.02548, 134.77373 -29.02571, 134.77437 -29.02592, 134.77479 -29.02607, 134.77509 -29.02618, 134.77581 -29.02646, 134.77672 -29.02684, 134.77735 -29.02713, 134.77826 -29.02759, 134.77906 -29.02803, 134.77964 -29.02837, 134.78022 -29.02872, 134.78095 -29.02922, 134.78155 -29.02964, 134.78196 -29.02995, 134.78235 -29.03025, 134.7827 -29.03054, 134.78336 -29.0311, 134.78342 -29.03115, 134.78465 -29.03223, 134.78531 -29.03282, 134.78655 -29.03391, 134.78876 -29.03584, 134.79036 -29.03725, 134.79126 -29.03804, 134.79182 -29.03855, 134.79266 -29.03928, 134.79366 -29.04015, 134.79431 -29.04072, 134.79475 -29.04111, 134.79536 -29.04163, 134.79629 -29.04245, 134.79713 -29.04319, 134.79818 -29.04411, 134.79942 -29.0452, 134.80056 -29.0462, 134.80137 -29.0469, 134.803 -29.04834, 134.80585 -29.05084, 134.80679 -29.05167, 134.80707 -29.05191, 134.80797 -29.05271, 134.80961 -29.05414, 134.81115 -29.0555, 134.81197 -29.05619, 134.81295 -29.05701, 134.81381 -29.05769, 134.81453 -29.05826, 134.81573 -29.05917, 134.81683 -29.05997, 134.81791 -29.06072, 134.8188 -29.06133, 134.82017 -29.06224, 134.82119 -29.06289, 134.82222 -29.06352, 134.82318 -29.06409, 134.82418 -29.06467, 134.82534 -29.06531, 134.82659 -29.06599, 134.82678 -29.06609, 134.82767 -29.06654, 134.82889 -29.06714, 134.82994 -29.06766, 134.831 -29.06814, 134.83216 -29.06866, 134.83351 -29.06924, 134.83422 -29.06953, 134.83504 -29.06986, 134.83642 -29.07039, 134.83785 -29.07092, 134.83959 -29.07152, 134.8408 -29.07191, 134.84156 -29.07215, 134.84373 -29.07281, 134.84544 -29.07333, 134.84613 -29.07354, 134.8469 -29.0738, 134.84773 -29.07409, 134.84886 -29.0745, 134.8496 -29.07479, 134.8507 -29.07524, 134.85128 -29.07549, 134.85189 -29.07576, 134.85269 -29.07614, 134.85321 -29.07639, 134.85391 -29.07674, 134.8546 -29.07708, 134.85531 -29.07747, 134.85625 -29.07799, 134.85721 -29.07854, 134.85831 -29.07922, 134.86103 -29.08094, 134.86336 -29.08241, 134.86495 -29.08338, 134.86625 -29.08415, 134.86712 -29.08465, 134.8688 -29.0856, 134.87019 -29.08638, 134.87118 -29.08693, 134.87242 -29.08759, 134.87426 -29.08855, 134.87717 -29.09006, 134.88089 -29.09199, 134.88443 -29.09383, 134.88624 -29.09477, 134.88712 -29.09523, 134.88825 -29.09582, 134.88891 -29.09619, 134.88962 -29.09662, 134.89015 -29.09697, 134.89064 -29.09732, 134.89116 -29.09771, 134.89162 -29.09808, 134.89201 -29.09841, 134.89255 -29.0989, 134.893 -29.09934, 134.89347 -29.09983, 134.89391 -29.10032, 134.89436 -29.10086, 134.89481 -29.10146, 134.89516 -29.10195, 134.89548 -29.10244, 134.89593 -29.10319, 134.89627 -29.10381, 134.89658 -29.10446, 134.89688 -29.1051, 134.89754 -29.10651, 134.89956 -29.11084, 134.90036 -29.11254, 134.90074 -29.11332, 134.90112 -29.11406, 134.90194 -29.11559, 134.9025 -29.11657, 134.90302 -29.11743, 134.90373 -29.11859, 134.90473 -29.12014, 134.90536 -29.12114, 134.90597 -29.12218, 134.90654 -29.12315, 134.9071 -29.12417, 134.90764 -29.1252, 134.90827 -29.12644, 134.90888 -29.12774, 134.91002 -29.13028, 134.91198 -29.13471, 134.91298 -29.13697, 134.91357 -29.13825, 134.91394 -29.13901, 134.91448 -29.14002, 134.9149 -29.14077, 134.91523 -29.14131, 134.91569 -29.14203, 134.91611 -29.14267, 134.91645 -29.14317, 134.91698 -29.1439, 134.91748 -29.14456, 134.91815 -29.1454, 134.91893 -29.14632, 134.91953 -29.14698, 134.92015 -29.14763, 134.92102 -29.1485, 134.92209 -29.14953, 134.92346 -29.15085, 134.92602 -29.1533, 134.92742 -29.15466, 134.92834 -29.15561, 134.929 -29.15634, 134.92957 -29.157, 134.93011 -29.15767, 134.93053 -29.1582, 134.93112 -29.159, 134.93165 -29.15973, 134.93193 -29.16015, 134.93228 -29.16068, 134.93286 -29.16161, 134.93329 -29.16234, 134.93371 -29.1631, 134.93409 -29.16385, 134.93446 -29.1646, 134.93494 -29.16566, 134.93527 -29.16645, 134.9355 -29.16705, 134.93576 -29.16777, 134.93603 -29.16857, 134.93631 -29.16947, 134.93657 -29.17044, 134.93674 -29.17113, 134.93695 -29.17206, 134.9372 -29.1733, 134.93739 -29.17404, 134.93758 -29.17474, 134.93779 -29.17542, 134.93793 -29.17582, 134.93811 -29.17632, 134.9385 -29.17727, 134.93869 -29.17775, 134.93898 -29.17841, 134.93923 -29.17892, 134.9397 -29.1798, 134.94003 -29.18036, 134.94056 -29.18127, 134.94108 -29.18203, 134.94157 -29.18273, 134.94201 -29.18331, 134.94247 -29.18387, 134.94301 -29.1845, 134.94342 -29.18496, 134.94402 -29.18559, 134.94465 -29.18621, 134.9451 -29.18664, 134.94574 -29.18722, 134.9462 -29.18761, 134.94692 -29.18818, 134.94762 -29.18876, 134.94808 -29.18915, 134.94874 -29.18976, 134.94958 -29.19058, 134.95018 -29.19122, 134.95077 -29.19188, 134.95134 -29.19255, 134.95179 -29.19314, 134.95235 -29.1939, 134.95286 -29.19463, 134.95333 -29.19538, 134.95364 -29.19589, 134.95406 -29.19664, 134.95465 -29.19781, 134.95493 -29.19839, 134.95526 -29.19919, 134.95556 -29.19997, 134.95583 -29.20075, 134.95615 -29.20181, 134.95643 -29.2029, 134.95658 -29.20359, 134.9567 -29.20428, 134.95683 -29.20516, 134.95692 -29.20596, 134.957 -29.20706, 134.95708 -29.20873, 134.95715 -29.21021, 134.95729 -29.21302, 134.95759 -29.21924, 134.95783 -29.22426, 134.95796 -29.22704, 134.95809 -29.22952, 134.95817 -29.23116, 134.9583 -29.23283, 134.9584 -29.23398, 134.95852 -29.23509, 134.95873 -29.23675, 134.95906 -29.23896, 134.9593 -29.24033, 134.95954 -29.24154, 134.95985 -29.24307, 134.96022 -29.2447, 134.96051 -29.24606, 134.96122 -29.24933, 134.96193 -29.25261, 134.96313 -29.25806, 134.96345 -29.25951, 134.96374 -29.26086, 134.964 -29.26201, 134.96433 -29.26352, 134.96464 -29.26496, 134.96498 -29.26653, 134.96516 -29.26735, 134.96539 -29.26839, 134.96565 -29.26956, 134.96626 -29.27237, 134.96658 -29.27381, 134.96663 -29.27406, 134.96685 -29.27502, 134.967 -29.27574, 134.96783 -29.27953, 134.96862 -29.28317, 134.9694 -29.28672, 134.97078 -29.29298, 134.97168 -29.29708, 134.97294 -29.30288, 134.97301 -29.30319, 134.97304 -29.30334, 134.97324 -29.30423, 134.97371 -29.30635, 134.97378 -29.30667, 134.97465 -29.3107, 134.97519 -29.31314, 134.97573 -29.31565, 134.97609 -29.31725, 134.97663 -29.31958, 134.977 -29.32105, 134.97753 -29.32293, 134.97811 -29.32483, 134.97865 -29.32644, 134.97929 -29.32823, 134.97979 -29.32956, 134.98021 -29.33062, 134.98066 -29.33171, 134.98105 -29.33261, 134.98154 -29.33377, 134.98198 -29.33485, 134.98247 -29.33614, 134.98285 -29.33718, 134.98316 -29.33807, 134.98359 -29.33936, 134.98417 -29.3412, 134.98464 -29.34284, 134.98505 -29.34439, 134.98545 -29.34608, 134.9858 -29.34765, 134.98605 -29.34895, 134.98618 -29.34967, 134.98634 -29.3506, 134.98649 -29.35153, 134.98662 -29.35241, 134.98684 -29.35401, 134.98697 -29.35522, 134.98712 -29.35679, 134.98721 -29.3579, 134.98726 -29.35874, 134.98732 -29.36013, 134.98735 -29.36124, 134.98738 -29.36294, 134.98739 -29.36378, 134.98742 -29.36436, 134.98748 -29.36522, 134.98755 -29.36595, 134.98764 -29.36678, 134.9878 -29.36788, 134.98795 -29.3687, 134.98806 -29.36923, 134.98824 -29.37005, 134.98845 -29.37086, 134.98867 -29.37166, 134.98894 -29.37252, 134.98918 -29.37325, 134.98939 -29.37382, 134.98968 -29.37458, 134.99013 -29.37565, 134.9905 -29.37646, 134.99088 -29.37723, 134.99127 -29.37799, 134.99155 -29.37849, 134.99197 -29.37924, 134.99223 -29.37966, 134.99258 -29.38023, 134.99289 -29.38071, 134.99332 -29.38136, 134.99426 -29.38276, 134.99472 -29.38346, 134.99526 -29.3843, 134.99591 -29.38536, 134.99696 -29.3871, 134.9977 -29.38839, 134.99843 -29.38968, 134.99897 -29.39069, 134.99968 -29.39203, 135.00014 -29.39294, 135.00075 -29.39417, 135.00142 -29.39558, 135.00207 -29.39699, 135.00265 -29.3983, 135.00325 -29.39974, 135.00374 -29.40094, 135.00428 -29.40231, 135.00466 -29.40334, 135.0063 -29.40785, 135.00703 -29.40989, 135.00767 -29.41167, 135.00805 -29.41268, 135.00845 -29.41378, 135.00894 -29.41515, 135.00943 -29.41651, 135.01089 -29.42052, 135.01146 -29.42207, 135.01199 -29.42355, 135.0133 -29.42716, 135.01367 -29.42823, 135.01406 -29.42943, 135.0144 -29.43055, 135.01448 -29.43081, 135.01475 -29.43176, 135.01524 -29.43368, 135.01544 -29.4345, 135.01552 -29.43487, 135.01562 -29.43533, 135.01586 -29.43647, 135.016 -29.43723, 135.01615 -29.4381, 135.01637 -29.43944, 135.01648 -29.44031, 135.01663 -29.44144, 135.01675 -29.44256, 135.01686 -29.4439, 135.01694 -29.44508, 135.01698 -29.44592, 135.01702 -29.44703, 135.01703 -29.44832, 135.01702 -29.45012, 135.017 -29.4508, 135.01694 -29.45208, 135.01688 -29.45315, 135.01675 -29.45462, 135.01662 -29.45591, 135.01654 -29.45656, 135.0164 -29.45762, 135.01626 -29.45853, 135.01598 -29.4602, 135.01586 -29.46103, 135.01576 -29.46187, 135.01568 -29.46285, 135.01562 -29.46383, 135.0156 -29.46438, 135.01559 -29.46503, 135.01561 -29.46608, 135.01564 -29.46691, 135.01572 -29.46793, 135.01585 -29.46916, 135.01601 -29.47027, 135.01621 -29.47137, 135.01639 -29.4722, 135.01666 -29.47329, 135.01681 -29.47384, 135.01706 -29.47466, 135.01735 -29.47554, 135.01761 -29.47629, 135.01792 -29.47709, 135.01826 -29.47791, 135.01859 -29.47864, 135.01886 -29.47921, 135.01928 -29.48005, 135.01965 -29.48075, 135.02062 -29.48246, 135.02176 -29.48449, 135.02408 -29.48855, 135.02554 -29.49114, 135.02667 -29.49313, 135.02749 -29.49459, 135.02791 -29.49532, 135.0298 -29.49866, 135.03091 -29.50061, 135.03334 -29.50491, 135.03462 -29.50715, 135.03561 -29.50891, 135.03617 -29.50987, 135.03634 -29.51017, 135.03696 -29.51119, 135.03773 -29.5124, 135.03849 -29.51356, 135.03898 -29.51427, 135.03938 -29.51483, 135.03999 -29.51569, 135.04047 -29.51634, 135.04114 -29.51722, 135.04178 -29.51805, 135.04261 -29.51907, 135.04353 -29.52017, 135.04435 -29.52112, 135.04508 -29.52193, 135.04588 -29.52279, 135.04675 -29.52369, 135.04792 -29.52486, 135.04874 -29.52565, 135.04947 -29.52634, 135.05068 -29.52744, 135.05167 -29.52831, 135.05242 -29.52894, 135.05385 -29.53011, 135.05515 -29.53113, 135.05647 -29.53213, 135.05721 -29.53269, 135.05791 -29.53327, 135.05875 -29.53401, 135.05925 -29.53447, 135.05982 -29.53504, 135.06033 -29.53556, 135.06079 -29.53607, 135.0612 -29.53654, 135.0617 -29.53716, 135.06222 -29.53782, 135.0628 -29.53861, 135.06321 -29.53922, 135.06366 -29.53993, 135.06382 -29.54019, 135.06396 -29.54043, 135.0643 -29.54102, 135.06433 -29.54107, 135.06459 -29.54158, 135.0648 -29.542, 135.06514 -29.5427, 135.06551 -29.54355, 135.06577 -29.54423, 135.06611 -29.54518, 135.06634 -29.54589, 135.06651 -29.54651, 135.0667 -29.54723, 135.06685 -29.54793, 135.06696 -29.54848, 135.06707 -29.54915, 135.06716 -29.5499, 135.06727 -29.55088, 135.06736 -29.55191, 135.06753 -29.55385, 135.06762 -29.55476, 135.06772 -29.55568, 135.06777 -29.55652, 135.06788 -29.55783, 135.06804 -29.55934, 135.06826 -29.56093, 135.06843 -29.56202, 135.06856 -29.56271, 135.06873 -29.56357, 135.06902 -29.56487, 135.06937 -29.56624, 135.06963 -29.56718, 135.06998 -29.56831, 135.07043 -29.56967, 135.07097 -29.57116, 135.07142 -29.5723, 135.072 -29.57363, 135.07256 -29.57483, 135.0731 -29.57591, 135.07347 -29.57663, 135.07387 -29.57736, 135.07443 -29.57836, 135.07496 -29.57926, 135.07559 -29.58026, 135.07632 -29.58136, 135.07709 -29.58248, 135.07785 -29.5835, 135.07857 -29.58445, 135.07926 -29.58531, 135.08002 -29.58622, 135.08049 -29.58676, 135.08064 -29.58693, 135.0813 -29.58767, 135.08205 -29.58847, 135.08282 -29.58926, 135.08295 -29.58939, 135.08396 -29.59039, 135.08471 -29.59109, 135.08579 -29.59206, 135.08644 -29.59263, 135.08716 -29.59322, 135.08861 -29.59438, 135.08964 -29.59516, 135.09036 -29.59569, 135.09117 -29.59625, 135.09205 -29.59686, 135.09325 -29.59764, 135.09491 -29.59874, 135.09629 -29.59965, 135.09887 -29.60135, 135.10018 -29.60222, 135.10545 -29.60569, 135.11107 -29.6094, 135.11343 -29.61096, 135.11711 -29.61338, 135.12012 -29.61537, 135.12173 -29.61643, 135.12385 -29.61782, 135.12464 -29.61836, 135.12523 -29.61877, 135.12577 -29.61917, 135.12638 -29.61966, 135.12708 -29.62026, 135.12773 -29.62085, 135.12834 -29.62146, 135.12883 -29.62199, 135.12929 -29.62252, 135.12978 -29.62312, 135.13029 -29.62378, 135.13067 -29.62433, 135.13105 -29.62491, 135.13147 -29.6256, 135.13176 -29.62612, 135.132 -29.62657, 135.13236 -29.6273, 135.1326 -29.62785, 135.13282 -29.62838, 135.13311 -29.62916, 135.13339 -29.63005, 135.13349 -29.63039, 135.13356 -29.63064, 135.13369 -29.63119, 135.13378 -29.63157, 135.1339 -29.63223, 135.13402 -29.63307, 135.13408 -29.63363, 135.13414 -29.63447, 135.13417 -29.63519, 135.13416 -29.63579, 135.13414 -29.63653, 135.1341 -29.63707, 135.134 -29.63791, 135.13393 -29.63841, 135.13382 -29.63903, 135.13359 -29.64015, 135.13344 -29.64099, 135.13331 -29.64184, 135.13318 -29.64297, 135.13312 -29.64363, 135.13307 -29.64443, 135.13303 -29.64558, 135.13302 -29.64637, 135.13304 -29.64722, 135.1331 -29.6482, 135.13316 -29.64905, 135.13322 -29.64967, 135.13334 -29.65063, 135.13348 -29.65146, 135.13363 -29.65231, 135.1338 -29.6531, 135.13398 -29.65398, 135.13416 -29.65499, 135.13433 -29.65595, 135.13443 -29.65662, 135.13454 -29.65735, 135.13471 -29.6587, 135.13483 -29.65985, 135.13494 -29.66102, 135.13504 -29.66245, 135.13508 -29.6633, 135.13512 -29.66472, 135.13513 -29.6659, 135.13513 -29.66683, 135.13511 -29.66789, 135.13505 -29.66927, 135.13498 -29.67045, 135.13486 -29.67184, 135.13474 -29.67317, 135.13455 -29.67534, 135.13435 -29.67755, 135.13424 -29.67884, 135.13412 -29.68023, 135.13404 -29.68112, 135.13399 -29.68183, 135.13389 -29.68277, 135.13384 -29.68332, 135.13372 -29.68447, 135.13364 -29.68562, 135.13356 -29.68651, 135.13344 -29.68784, 135.1333 -29.68943, 135.13326 -29.68997, 135.13316 -29.69105, 135.13314 -29.69129, 135.13302 -29.69251, 135.1329 -29.69348, 135.13275 -29.69456, 135.13267 -29.6951, 135.13246 -29.69643, 135.13225 -29.69754, 135.13204 -29.6986, 135.13181 -29.69962, 135.13164 -29.70038, 135.13142 -29.70127, 135.13124 -29.70192, 135.13093 -29.70304, 135.1306 -29.7042, 135.12998 -29.70641, 135.12979 -29.70709, 135.12909 -29.70952, 135.12851 -29.71158, 135.12841 -29.71195, 135.12839 -29.71201, 135.12822 -29.7126, 135.128 -29.71337, 135.1271 -29.71652, 135.12645 -29.7188, 135.12599 -29.72038, 135.12561 -29.72164, 135.12499 -29.72361, 135.12437 -29.72549, 135.12381 -29.72711, 135.12326 -29.72868, 135.12268 -29.73028, 135.12168 -29.73292, 135.12123 -29.73417, 135.12091 -29.73513, 135.12068 -29.73586, 135.12051 -29.7364, 135.12038 -29.7369, 135.12015 -29.73775, 135.11988 -29.73884, 135.11964 -29.73993, 135.1194 -29.74109, 135.11917 -29.74242, 135.11898 -29.74379, 135.1188 -29.74547, 135.11873 -29.74629, 135.11868 -29.74713, 135.11864 -29.74832, 135.11861 -29.74956, 135.11861 -29.75085, 135.11861 -29.75171, 135.11862 -29.75244, 135.11862 -29.753, 135.11862 -29.75347, 135.11862 -29.75375, 135.11862 -29.75398, 135.11864 -29.75491, 135.11865 -29.75598, 135.11866 -29.75683, 135.11871 -29.759, 135.11884 -29.76294, 135.11889 -29.76429, 135.11896 -29.76572, 135.11904 -29.76739, 135.1192 -29.7702, 135.11939 -29.77319, 135.11953 -29.77516, 135.11973 -29.77756, 135.11998 -29.78024, 135.12017 -29.78225, 135.1204 -29.78435, 135.1205 -29.78538, 135.12065 -29.78667, 135.12086 -29.78848, 135.121 -29.78967, 135.1211 -29.79067, 135.12124 -29.79205, 135.12134 -29.79326, 135.12151 -29.79566, 135.12157 -29.79677, 135.12161 -29.79777, 135.12165 -29.79871, 135.1217 -29.80032, 135.12172 -29.80199, 135.12171 -29.80336, 135.12169 -29.80509, 135.12164 -29.8068, 135.12161 -29.80769, 135.12153 -29.80927, 135.12144 -29.81068, 135.12131 -29.81234, 135.12114 -29.81424, 135.1209 -29.81649, 135.12074 -29.81811, 135.12067 -29.81926, 135.12065 -29.82012, 135.12066 -29.82127, 135.12072 -29.82256, 135.12081 -29.82358, 135.12096 -29.82479, 135.12109 -29.82567, 135.12122 -29.82639, 135.1214 -29.82726, 135.1216 -29.82811, 135.1218 -29.82889, 135.12202 -29.82964, 135.12221 -29.83025, 135.12247 -29.83101, 135.12266 -29.83155, 135.12297 -29.83235, 135.12336 -29.8333, 135.12369 -29.83411, 135.12393 -29.83469, 135.12412 -29.83518, 135.12434 -29.83573, 135.12451 -29.83622, 135.1247 -29.8368, 135.12483 -29.83727, 135.12497 -29.83777, 135.12505 -29.83816, 135.12515 -29.8387, 135.12524 -29.83934, 135.12532 -29.84006, 135.12537 -29.84089, 135.12537 -29.84153, 135.12536 -29.84203, 135.12533 -29.84263, 135.12527 -29.84318, 135.1252 -29.84367, 135.12511 -29.84428, 135.12493 -29.84509, 135.12475 -29.84577, 135.12446 -29.84668, 135.12415 -29.8477, 135.12387 -29.84879, 135.12368 -29.84959, 135.12357 -29.85012, 135.12343 -29.8509, 135.12331 -29.85162, 135.12321 -29.85238, 135.12313 -29.85302, 135.12307 -29.85369, 135.12299 -29.85496, 135.12297 -29.85551, 135.12297 -29.8565, 135.12297 -29.85689, 135.12297 -29.85705, 135.12299 -29.85766, 135.12301 -29.858, 135.12302 -29.85827, 135.12306 -29.8588, 135.1231 -29.8593, 135.1232 -29.86019, 135.12323 -29.86043, 135.12334 -29.86116, 135.12345 -29.8618, 135.12362 -29.86272, 135.1238 -29.86353, 135.12395 -29.86412, 135.12417 -29.86496, 135.12439 -29.86569, 135.12465 -29.8665, 135.12486 -29.86709, 135.12511 -29.86778, 135.12547 -29.86868, 135.12576 -29.86934, 135.12617 -29.87023, 135.1266 -29.87109, 135.12704 -29.87192, 135.12748 -29.87269, 135.1279 -29.8734, 135.12867 -29.8746, 135.13031 -29.87706, 135.13223 -29.87996, 135.13401 -29.88266, 135.13489 -29.88398, 135.13515 -29.88438, 135.13573 -29.88527, 135.13639 -29.88626, 135.13706 -29.88728, 135.13767 -29.88818, 135.13886 -29.89, 135.13938 -29.89077, 135.14015 -29.89193, 135.14139 -29.89381, 135.14205 -29.89482, 135.1427 -29.89578, 135.1433 -29.89672, 135.14398 -29.89776, 135.14457 -29.8987, 135.14518 -29.89965, 135.14571 -29.90053, 135.14638 -29.90161, 135.14701 -29.90266, 135.14786 -29.90409, 135.14867 -29.90549, 135.14949 -29.90694, 135.15013 -29.90809, 135.15067 -29.90907, 135.1514 -29.91044, 135.15191 -29.91139, 135.15242 -29.91236, 135.15285 -29.91317, 135.15321 -29.91388, 135.15357 -29.91461, 135.15384 -29.91514, 135.15399 -29.91545, 135.15423 -29.91592, 135.15449 -29.91646, 135.15478 -29.91706, 135.15485 -29.9172, 135.15517 -29.91786, 135.15524 -29.918, 135.15555 -29.91865, 135.15592 -29.91949, 135.15628 -29.92029, 135.15683 -29.9216, 135.15747 -29.92317, 135.15779 -29.92404, 135.15817 -29.92504, 135.15841 -29.92572, 135.15875 -29.92669, 135.15923 -29.92816, 135.15949 -29.92901, 135.16004 -29.93087, 135.16027 -29.93174, 135.16062 -29.93307, 135.16088 -29.93414, 135.16111 -29.93518, 135.16136 -29.93631, 135.16157 -29.9374, 135.16186 -29.93902, 135.16201 -29.9399, 135.16221 -29.94128, 135.16239 -29.94265, 135.16252 -29.94385, 135.16267 -29.94542, 135.16275 -29.94624, 135.16296 -29.94819, 135.16314 -29.94957, 135.16329 -29.95061, 135.16346 -29.95179, 135.1636 -29.95262, 135.16376 -29.95355, 135.16399 -29.95481, 135.16421 -29.9559, 135.16438 -29.95672, 135.16449 -29.95725, 135.16462 -29.95783, 135.16501 -29.95946, 135.16524 -29.9604, 135.16558 -29.96171, 135.16587 -29.96273, 135.16642 -29.96463, 135.16682 -29.96591, 135.16704 -29.96657, 135.16726 -29.96725, 135.16763 -29.96835, 135.16792 -29.96917, 135.16825 -29.97009, 135.16875 -29.97142, 135.16917 -29.97247, 135.16969 -29.97376, 135.17023 -29.97503, 135.17074 -29.97616, 135.17102 -29.9768, 135.17139 -29.9776, 135.17186 -29.97861, 135.17258 -29.98008, 135.17314 -29.9812, 135.17388 -29.98261, 135.17491 -29.98456, 135.17574 -29.9861, 135.17684 -29.98815, 135.17812 -29.99054, 135.17898 -29.99217, 135.18047 -29.99496, 135.18149 -29.99686, 135.18312 -29.99992, 135.18464 -30.00276, 135.18609 -30.00547, 135.1878 -30.00869, 135.18867 -30.01031, 135.18921 -30.01132, 135.18959 -30.01204, 135.19011 -30.01305, 135.1904 -30.01365, 135.19065 -30.01418, 135.19092 -30.01475, 135.19111 -30.01518, 135.19117 -30.01532, 135.1913 -30.01563, 135.19136 -30.01576, 135.19172 -30.01661, 135.19199 -30.01732, 135.19231 -30.01818, 135.19254 -30.01879, 135.1929 -30.01986, 135.19313 -30.02059, 135.19327 -30.02107, 135.19339 -30.02147, 135.19382 -30.02306, 135.19409 -30.02418, 135.19426 -30.02499, 135.19442 -30.02577, 135.19453 -30.02641, 135.19457 -30.02662, 135.19464 -30.0271, 135.19477 -30.02795, 135.19488 -30.02876, 135.19499 -30.02966, 135.19507 -30.0306, 135.19515 -30.03159, 135.19519 -30.03235, 135.19523 -30.03351, 135.19524 -30.03439, 135.19524 -30.03874, 135.19525 -30.04301, 135.19523 -30.0482, 135.19523 -30.04946, 135.19523 -30.05152, 135.19523 -30.05987, 135.19523 -30.06659, 135.19523 -30.07422, 135.19522 -30.07646, 135.19523 -30.08183, 135.19522 -30.09168, 135.19522 -30.09263, 135.19522 -30.09742, 135.19521 -30.10029, 135.19521 -30.10192, 135.19522 -30.10306, 135.19521 -30.10511, 135.19521 -30.10568, 135.19522 -30.10639, 135.19521 -30.10791, 135.19521 -30.11244, 135.1952 -30.12083, 135.1952 -30.12673, 135.19521 -30.12938, 135.1952 -30.13185, 135.19521 -30.13712, 135.1952 -30.13833, 135.1952 -30.14025, 135.1952 -30.14961, 135.19519 -30.15626, 135.19519 -30.15864, 135.19521 -30.15966, 135.19524 -30.16075, 135.19527 -30.16139, 135.19535 -30.16249, 135.19546 -30.16367, 135.19562 -30.16497, 135.19578 -30.16609, 135.19588 -30.16666, 135.19594 -30.16701, 135.19607 -30.1677, 135.19608 -30.16774, 135.19631 -30.16883, 135.19656 -30.16992, 135.19685 -30.17104, 135.19706 -30.17178, 135.19739 -30.17289, 135.19765 -30.17369, 135.19802 -30.17477, 135.19831 -30.17556, 135.19874 -30.17664, 135.19927 -30.17793, 135.19973 -30.17891, 135.20011 -30.17973, 135.20049 -30.18049, 135.20129 -30.18199, 135.202 -30.18324, 135.20244 -30.18398, 135.20283 -30.18461, 135.20333 -30.18538, 135.20434 -30.18689, 135.20516 -30.18801, 135.20593 -30.18902, 135.20659 -30.18985, 135.20721 -30.19061, 135.20759 -30.19105, 135.20833 -30.19189, 135.20918 -30.19281, 135.20992 -30.19359, 135.21078 -30.19444, 135.21169 -30.19533, 135.21227 -30.19587, 135.21295 -30.19648, 135.21414 -30.1975, 135.21526 -30.19842, 135.2167 -30.19954, 135.2182 -30.20064, 135.21957 -30.20158, 135.22095 -30.20251, 135.2251 -30.20528, 135.22626 -30.20606, 135.22753 -30.20692, 135.22959 -30.20829, 135.23386 -30.21115, 135.23618 -30.2127, 135.23835 -30.21415, 135.2399 -30.21525, 135.24084 -30.21596, 135.24158 -30.21655, 135.243 -30.21773, 135.24413 -30.21874, 135.245 -30.21956, 135.24578 -30.22035, 135.2466 -30.22119, 135.24724 -30.2219, 135.24784 -30.22258, 135.24893 -30.22388, 135.24946 -30.22456, 135.25047 -30.22593, 135.25101 -30.2267, 135.25194 -30.22813, 135.25269 -30.22937, 135.25325 -30.23037, 135.25352 -30.23087, 135.25391 -30.23163, 135.25477 -30.23343, 135.25529 -30.23445, 135.25581 -30.23546, 135.25652 -30.23676, 135.25692 -30.23747, 135.2572 -30.23794, 135.25732 -30.23815, 135.25795 -30.2392, 135.25887 -30.24065, 135.25982 -30.24209, 135.26031 -30.2428, 135.26135 -30.24424, 135.26221 -30.24538, 135.2632 -30.24662, 135.26392 -30.24754, 135.26454 -30.24837, 135.26521 -30.24932, 135.26586 -30.25027, 135.26623 -30.25086, 135.26662 -30.25149, 135.26721 -30.25249, 135.26791 -30.25375, 135.26843 -30.25477, 135.26875 -30.25546, 135.26915 -30.25632, 135.2697 -30.25762, 135.27021 -30.25894, 135.27071 -30.2603, 135.27122 -30.26164, 135.27183 -30.26323, 135.27229 -30.26437, 135.27275 -30.26554, 135.2734 -30.26713, 135.2746 -30.26997, 135.27574 -30.27256, 135.27633 -30.27388, 135.27719 -30.27577, 135.27797 -30.27746, 135.27828 -30.27811, 135.27858 -30.27875, 135.27952 -30.28083, 135.28099 -30.28421, 135.28142 -30.28523, 135.2823 -30.28733, 135.28315 -30.28947, 135.28407 -30.29182, 135.28517 -30.29472, 135.28603 -30.29709, 135.28687 -30.2995, 135.2879 -30.30254, 135.28852 -30.30447, 135.28912 -30.30639, 135.28945 -30.30746, 135.28974 -30.30837, 135.28997 -30.30901, 135.29025 -30.30976, 135.29071 -30.31086, 135.29094 -30.31138, 135.29133 -30.31221, 135.29163 -30.3128, 135.29202 -30.31355, 135.29275 -30.31481, 135.29333 -30.31576, 135.2937 -30.31631, 135.29421 -30.31705, 135.29478 -30.31783, 135.29535 -30.31856, 135.29591 -30.31925, 135.2965 -30.31994, 135.29711 -30.32063, 135.29954 -30.32335, 135.30275 -30.32695, 135.30582 -30.33038, 135.30745 -30.33221, 135.30859 -30.33349, 135.30949 -30.33449, 135.31052 -30.33566, 135.31194 -30.33724, 135.31486 -30.34052, 135.31621 -30.34202, 135.31698 -30.34288, 135.31819 -30.34424, 135.3192 -30.34536, 135.32031 -30.34662, 135.32042 -30.34675, 135.32182 -30.34831, 135.32408 -30.35085, 135.32486 -30.35171, 135.32539 -30.35232, 135.32578 -30.35278, 135.32618 -30.3533, 135.32647 -30.35367, 135.32687 -30.35422, 135.32729 -30.35484, 135.32753 -30.35519, 135.32767 -30.35542, 135.32801 -30.356, 135.32847 -30.35683, 135.32866 -30.3572, 135.32878 -30.35743, 135.32904 -30.35798, 135.32921 -30.35836, 135.32946 -30.35893, 135.32966 -30.35944, 135.3298 -30.35983, 135.32991 -30.36014, 135.33009 -30.36071, 135.33025 -30.36121, 135.33053 -30.36228, 135.33069 -30.36301, 135.33086 -30.36399, 135.33096 -30.36468, 135.33101 -30.36513, 135.33105 -30.36557, 135.33109 -30.36612, 135.33112 -30.3669, 135.33112 -30.36777, 135.33109 -30.36859, 135.33105 -30.36913, 135.33093 -30.3705, 135.33087 -30.37187, 135.33086 -30.37297, 135.33089 -30.37406, 135.33098 -30.37543, 135.33113 -30.37679, 135.33134 -30.37815, 135.33144 -30.37869, 135.33167 -30.37976, 135.33181 -30.38033, 135.33201 -30.38109, 135.33241 -30.38241, 135.33277 -30.38346, 135.33327 -30.38477, 135.33348 -30.38526, 135.33383 -30.38606, 135.3343 -30.38702, 135.33475 -30.38787, 135.33506 -30.38843, 135.33549 -30.38919, 135.33591 -30.38987, 135.3363 -30.39049, 135.33662 -30.39097, 135.33709 -30.39164, 135.33758 -30.39231, 135.33782 -30.39262, 135.3385 -30.39349, 135.33947 -30.39463, 135.33965 -30.39484, 135.3402 -30.39547, 135.34074 -30.39614, 135.34164 -30.39727, 135.3427 -30.39869, 135.34334 -30.3996, 135.34398 -30.40054, 135.34459 -30.4015, 135.34519 -30.40246, 135.34591 -30.40368, 135.34659 -30.40492, 135.34695 -30.40561, 135.34736 -30.40642, 135.34796 -30.40769, 135.34853 -30.40896, 135.34874 -30.40947, 135.34906 -30.41025, 135.3491 -30.41036, 135.34944 -30.41126, 135.34983 -30.41233, 135.35001 -30.41287, 135.35027 -30.41365, 135.35059 -30.41471, 135.35089 -30.41578, 135.35123 -30.41712, 135.35142 -30.41793, 135.35159 -30.41873, 135.35176 -30.41965, 135.35194 -30.42062, 135.35201 -30.4211, 135.35218 -30.42226, 135.35228 -30.42306, 135.35237 -30.42397, 135.35246 -30.425, 135.35251 -30.4258, 135.35256 -30.42712, 135.35259 -30.42828, 135.35259 -30.42891, 135.35258 -30.42968, 135.35253 -30.43102, 135.35245 -30.43239, 135.35234 -30.43352, 135.35222 -30.43464, 135.35209 -30.4358, 135.35198 -30.437, 135.35186 -30.4379, 135.35174 -30.43894, 135.35152 -30.44091, 135.35143 -30.44181, 135.35121 -30.44367, 135.35111 -30.44467, 135.35104 -30.4455, 135.35091 -30.44652, 135.35077 -30.44777, 135.35064 -30.44894, 135.35059 -30.44933, 135.35048 -30.45035, 135.35027 -30.45226, 135.35008 -30.45395, 135.34995 -30.45512, 135.34983 -30.45628, 135.34973 -30.45722, 135.34956 -30.45899, 135.34939 -30.46096, 135.3493 -30.46207, 135.34913 -30.46434, 135.34902 -30.46602, 135.34891 -30.468, 135.34876 -30.4711, 135.3487 -30.47254, 135.34856 -30.4753, 135.34844 -30.47714, 135.34837 -30.47812, 135.34823 -30.48003, 135.34807 -30.48188, 135.34797 -30.48309, 135.34792 -30.48361, 135.34786 -30.48419, 135.34769 -30.48588, 135.34748 -30.48778, 135.34692 -30.49297, 135.34666 -30.49532, 135.34624 -30.49914, 135.34612 -30.50036, 135.34586 -30.50267, 135.34572 -30.50391, 135.34568 -30.50428, 135.34561 -30.50504, 135.34556 -30.50611, 135.34554 -30.507, 135.34555 -30.50755, 135.34558 -30.50818, 135.34566 -30.5092, 135.34573 -30.50978, 135.34585 -30.51063, 135.34597 -30.5113, 135.34618 -30.51229, 135.34633 -30.51289, 135.34655 -30.51368, 135.34681 -30.51449, 135.34706 -30.51519, 135.34732 -30.51585, 135.34766 -30.51664, 135.34789 -30.51714, 135.34824 -30.51784, 135.34861 -30.51854, 135.34883 -30.51892, 135.34926 -30.51965, 135.3499 -30.52063, 135.35026 -30.52115, 135.35081 -30.52189, 135.35133 -30.52254, 135.35228 -30.52369, 135.35375 -30.52552, 135.35467 -30.52669, 135.3555 -30.52778, 135.3561 -30.52857, 135.35703 -30.52984, 135.35787 -30.53099, 135.35857 -30.53199, 135.35954 -30.53339, 135.35957 -30.53343, 135.36019 -30.53434, 135.36079 -30.53524, 135.36166 -30.53656, 135.36264 -30.53811, 135.36312 -30.53888, 135.36424 -30.54071, 135.36498 -30.54196, 135.3655 -30.54288, 135.36624 -30.54417, 135.36684 -30.54527, 135.36769 -30.54684, 135.36823 -30.54787, 135.36883 -30.54906, 135.36965 -30.55069, 135.37016 -30.55174, 135.37073 -30.55296, 135.37126 -30.55409, 135.37181 -30.55534, 135.37219 -30.55619, 135.37247 -30.55687, 135.37295 -30.55805, 135.37336 -30.55912, 135.37376 -30.56019, 135.37411 -30.56121, 135.37467 -30.5629, 135.37504 -30.56411, 135.3754 -30.56534, 135.37564 -30.56624, 135.37597 -30.56754, 135.37617 -30.56837, 135.37637 -30.56927, 135.37639 -30.56937, 135.37653 -30.57004, 135.3768 -30.57143, 135.37695 -30.57226, 135.37722 -30.57394, 135.37752 -30.57559, 135.3778 -30.57699, 135.37829 -30.57915, 135.37879 -30.58113, 135.37917 -30.5825, 135.37957 -30.58386, 135.37982 -30.58467, 135.38044 -30.58656, 135.38077 -30.58749, 135.38152 -30.5895, 135.3829 -30.59293, 135.38351 -30.59458, 135.38394 -30.59581, 135.38452 -30.59755, 135.38494 -30.59891, 135.38522 -30.59987, 135.38549 -30.60083, 135.3858 -30.60203, 135.38625 -30.60385, 135.38661 -30.60551, 135.38694 -30.60718, 135.38739 -30.60984, 135.38759 -30.61085, 135.38776 -30.61163, 135.38797 -30.61246, 135.38837 -30.61382, 135.38873 -30.61491, 135.38902 -30.61571, 135.38953 -30.61696, 135.39004 -30.61808, 135.39055 -30.61911, 135.39116 -30.62022, 135.39152 -30.62086, 135.39182 -30.62135, 135.39215 -30.62188, 135.39305 -30.62326, 135.39402 -30.62482, 135.39481 -30.62609, 135.39546 -30.62719, 135.39614 -30.62832, 135.39649 -30.62893, 135.39682 -30.6295, 135.3973 -30.63032, 135.3976 -30.63087, 135.39784 -30.63128, 135.3981 -30.63175, 135.39844 -30.63237, 135.39968 -30.63464, 135.40005 -30.63535, 135.40104 -30.63723, 135.40114 -30.63741, 135.40186 -30.6387, 135.40265 -30.64, 135.40349 -30.64131, 135.40393 -30.64196, 135.40478 -30.64316, 135.40533 -30.6439, 135.40602 -30.64479, 135.4066 -30.64552, 135.40752 -30.64662, 135.40829 -30.6475, 135.40891 -30.64817, 135.40934 -30.64863, 135.40941 -30.6487, 135.41052 -30.64989, 135.41156 -30.65103, 135.41295 -30.65262, 135.4137 -30.6535, 135.41416 -30.65405, 135.41537 -30.65552, 135.4167 -30.65721, 135.41759 -30.65838, 135.41799 -30.65889, 135.41837 -30.65935, 135.41909 -30.66021, 135.42008 -30.66131, 135.4207 -30.66197, 135.42184 -30.66312, 135.42285 -30.66408, 135.42338 -30.66455, 135.42424 -30.6653, 135.42491 -30.66586, 135.42565 -30.66646, 135.42626 -30.66693, 135.42684 -30.66737, 135.42755 -30.66789, 135.4286 -30.66862, 135.43045 -30.66986, 135.43146 -30.67056, 135.4329 -30.67159, 135.43413 -30.67248, 135.43474 -30.67294, 135.43595 -30.67385, 135.43687 -30.67457, 135.43807 -30.67552, 135.44121 -30.6781, 135.44203 -30.67875, 135.44284 -30.67939, 135.44407 -30.68032, 135.44531 -30.68125, 135.4466 -30.68216, 135.44782 -30.683, 135.44965 -30.68422, 135.45094 -30.68504, 135.45144 -30.68536, 135.45237 -30.68592, 135.45443 -30.68716, 135.45649 -30.68845, 135.45747 -30.68909, 135.45832 -30.68965, 135.4595 -30.69046, 135.46041 -30.69109, 135.46241 -30.69254, 135.46432 -30.694, 135.46509 -30.69461, 135.46672 -30.69593, 135.4677 -30.69674, 135.46957 -30.69831, 135.47179 -30.70024, 135.47369 -30.70193, 135.47521 -30.70332, 135.47724 -30.70521, 135.47919 -30.70708, 135.48023 -30.70812, 135.48126 -30.70913, 135.48202 -30.70991, 135.48231 -30.71021, 135.48419 -30.71215, 135.48544 -30.71348, 135.48638 -30.71449, 135.48718 -30.71538, 135.48853 -30.71687, 135.48953 -30.71802, 135.49064 -30.71929, 135.49179 -30.72065, 135.49255 -30.72158, 135.49309 -30.72229, 135.49345 -30.72276, 135.49397 -30.72348, 135.49447 -30.72417, 135.49493 -30.72484, 135.49537 -30.72551, 135.49593 -30.72637, 135.49638 -30.72711, 135.49685 -30.72789, 135.49714 -30.7284, 135.49752 -30.72909, 135.49797 -30.72993, 135.4983 -30.73058, 135.49862 -30.73122, 135.49923 -30.73252, 135.49981 -30.73384, 135.50033 -30.73514, 135.50062 -30.73592, 135.50064 -30.73597, 135.50077 -30.73634, 135.50094 -30.73684, 135.50128 -30.73786, 135.50176 -30.7395, 135.50212 -30.74086, 135.50238 -30.74197, 135.50251 -30.74256, 135.50267 -30.74335, 135.50282 -30.74418, 135.50283 -30.74422, 135.50291 -30.74475, 135.50309 -30.74591, 135.50318 -30.74653, 135.50329 -30.74724, 135.50345 -30.74807, 135.50379 -30.74975, 135.50425 -30.75167, 135.5047 -30.75332, 135.50512 -30.75468, 135.50548 -30.75577, 135.50586 -30.75685, 135.50647 -30.75845, 135.50698 -30.75966, 135.50726 -30.76032, 135.50773 -30.76135, 135.50822 -30.76239, 135.509 -30.76394, 135.50998 -30.76572, 135.51027 -30.76622, 135.51117 -30.76773, 135.51196 -30.76896, 135.51261 -30.76993, 135.51321 -30.77079, 135.5138 -30.77162, 135.51468 -30.77279, 135.5154 -30.77371, 135.5161 -30.77456, 135.51691 -30.77553, 135.51749 -30.7762, 135.51869 -30.77752, 135.51938 -30.77824, 135.5197 -30.77858, 135.52089 -30.77976, 135.52166 -30.7805, 135.52254 -30.78132, 135.52347 -30.78214, 135.52439 -30.78294, 135.52535 -30.78374, 135.52675 -30.78486, 135.52901 -30.78655, 135.53006 -30.78739, 135.53055 -30.7878, 135.53101 -30.78822, 135.53175 -30.78889, 135.53273 -30.78983, 135.53327 -30.79038, 135.53391 -30.79107, 135.53448 -30.79171, 135.53497 -30.79228, 135.53569 -30.79318, 135.53634 -30.79402, 135.53686 -30.79475, 135.53746 -30.79564, 135.53759 -30.79583, 135.53784 -30.79622, 135.5383 -30.79698, 135.5386 -30.7975, 135.53915 -30.7985, 135.53954 -30.79927, 135.54003 -30.80031, 135.54037 -30.80109, 135.54079 -30.80214, 135.54099 -30.80267, 135.54107 -30.80291, 135.54121 -30.80333, 135.5413 -30.8036, 135.54144 -30.80403, 135.54176 -30.80513, 135.54191 -30.80569, 135.54211 -30.80656, 135.54239 -30.8079, 135.5425 -30.80857, 135.5426 -30.80927, 135.54265 -30.80972, 135.54267 -30.8099, 135.54275 -30.81064, 135.54286 -30.8122, 135.5429 -30.81266, 135.54298 -30.81321, 135.54313 -30.81406, 135.54324 -30.81457, 135.5434 -30.81521, 135.54349 -30.81549, 135.54359 -30.81582, 135.54378 -30.81637, 135.54396 -30.81682, 135.5442 -30.81739, 135.54467 -30.81836, 135.54494 -30.81887, 135.54539 -30.81962, 135.54584 -30.82028, 135.54621 -30.8208, 135.54676 -30.82149, 135.54692 -30.82167, 135.54715 -30.82194, 135.54782 -30.82266, 135.54842 -30.82324, 135.54887 -30.82363, 135.54935 -30.82404, 135.55009 -30.82462, 135.55086 -30.82517, 135.55175 -30.82579, 135.55288 -30.8266, 135.55458 -30.82788, 135.55551 -30.8286, 135.55621 -30.82916, 135.55703 -30.82981, 135.55821 -30.83079, 135.55914 -30.83158, 135.56043 -30.83271, 135.56165 -30.83382, 135.56273 -30.83483, 135.56424 -30.8363, 135.5658 -30.83777, 135.56617 -30.83811, 135.56705 -30.8389, 135.56852 -30.84018, 135.56966 -30.84114, 135.57081 -30.84208, 135.57173 -30.84282, 135.57269 -30.84356, 135.5745 -30.84492, 135.57622 -30.84626, 135.57712 -30.84699, 135.57829 -30.84796, 135.58043 -30.84981, 135.58099 -30.85031, 135.58219 -30.85141, 135.58376 -30.85291, 135.58503 -30.85418, 135.58631 -30.85551, 135.58704 -30.8563, 135.58753 -30.85682, 135.58774 -30.85705, 135.58804 -30.85736, 135.58878 -30.85809, 135.58925 -30.85855, 135.59002 -30.85927, 135.59078 -30.85993, 135.59165 -30.86066, 135.59239 -30.86125, 135.59337 -30.86199, 135.59391 -30.86238, 135.59491 -30.86308, 135.59592 -30.86374, 135.59701 -30.86441, 135.59784 -30.8649, 135.59886 -30.86546, 135.60001 -30.86607, 135.60141 -30.86675, 135.60223 -30.86712, 135.60256 -30.86727, 135.60324 -30.86755, 135.60342 -30.86763, 135.60376 -30.86777, 135.60447 -30.86805, 135.60465 -30.86812, 135.60549 -30.86843, 135.6057 -30.8685, 135.60618 -30.86867, 135.6074 -30.86908, 135.60846 -30.8694, 135.60954 -30.8697, 135.61078 -30.87002, 135.61181 -30.87025, 135.61266 -30.87044, 135.61393 -30.87068, 135.61476 -30.87082, 135.61553 -30.87094, 135.61649 -30.87107, 135.61779 -30.87123, 135.61941 -30.8714, 135.62054 -30.87154, 135.62168 -30.87169, 135.62278 -30.87185, 135.62329 -30.87193, 135.62485 -30.87217, 135.62496 -30.87219, 135.62619 -30.8724, 135.62751 -30.87265, 135.62874 -30.87288, 135.63032 -30.87321, 135.63217 -30.87362, 135.63328 -30.87389, 135.63472 -30.87424, 135.63597 -30.87457, 135.63713 -30.87488, 135.63847 -30.87526, 135.63969 -30.87563, 135.64066 -30.87592, 135.64182 -30.8763, 135.6428 -30.87662, 135.64323 -30.87678, 135.64444 -30.87721, 135.64611 -30.87782, 135.64728 -30.87823, 135.64834 -30.87859, 135.6501 -30.87917, 135.65132 -30.87955, 135.65239 -30.87988, 135.65424 -30.88041, 135.65514 -30.88066, 135.65593 -30.88087, 135.65711 -30.88117, 135.65848 -30.88152, 135.65934 -30.88176, 135.6607 -30.88217, 135.66203 -30.88261, 135.66303 -30.88296, 135.66403 -30.88334, 135.66487 -30.88366, 135.66611 -30.88418, 135.66719 -30.88464, 135.66914 -30.88552, 135.6704 -30.88611, 135.67194 -30.88687, 135.67366 -30.88775, 135.67477 -30.88835, 135.6756 -30.88883, 135.67596 -30.88905, 135.67638 -30.8893, 135.67723 -30.88983, 135.67808 -30.89039, 135.67881 -30.89089, 135.67973 -30.89155, 135.68045 -30.8921, 135.68113 -30.89263, 135.6818 -30.89319, 135.68241 -30.8937, 135.6831 -30.89431, 135.68376 -30.89491, 135.68451 -30.89565, 135.68543 -30.89657, 135.68614 -30.89734, 135.68658 -30.89783, 135.68708 -30.89841, 135.68802 -30.89956, 135.68852 -30.90021, 135.68862 -30.90035, 135.68906 -30.90094, 135.6894 -30.90142, 135.68982 -30.90205, 135.69026 -30.90272, 135.69046 -30.90304, 135.69114 -30.90413, 135.69174 -30.90507, 135.69208 -30.90558, 135.6925 -30.90621, 135.69271 -30.90653, 135.69274 -30.90657, 135.6934 -30.90755, 135.69424 -30.90874, 135.69512 -30.90998, 135.6953 -30.91023, 135.6955 -30.91049, 135.69598 -30.91114, 135.69696 -30.91242, 135.69724 -30.91279, 135.6986 -30.91449, 135.69947 -30.91555, 135.70042 -30.91667, 135.70141 -30.91781, 135.70281 -30.91937, 135.70342 -30.92003, 135.70404 -30.9207, 135.70454 -30.92119, 135.70508 -30.92178, 135.70553 -30.92225, 135.70612 -30.92286, 135.70669 -30.92342, 135.70832 -30.92499, 135.70984 -30.92641, 135.71053 -30.92703, 135.71156 -30.92796, 135.71302 -30.92923, 135.71369 -30.9298, 135.71487 -30.93078, 135.71654 -30.93212, 135.71804 -30.93328, 135.71924 -30.93419, 135.71982 -30.93461, 135.72178 -30.93603, 135.72299 -30.93691, 135.72426 -30.93789, 135.72565 -30.93899, 135.72688 -30.94001, 135.7285 -30.94142, 135.73015 -30.94294, 135.73108 -30.94384, 135.73205 -30.94481, 135.73296 -30.94575, 135.73442 -30.94733, 135.73564 -30.94873, 135.73614 -30.94933, 135.73655 -30.94982, 135.73727 -30.95071, 135.73842 -30.95219, 135.73901 -30.95299, 135.73964 -30.95386, 135.74031 -30.95482, 135.74125 -30.95623, 135.74206 -30.95753, 135.74302 -30.95909, 135.74336 -30.95967, 135.74389 -30.96059, 135.74463 -30.96186, 135.74551 -30.96343, 135.74583 -30.964, 135.7459 -30.96413, 135.74597 -30.96426, 135.74627 -30.96482, 135.74655 -30.96532, 135.74671 -30.96562, 135.74693 -30.96602, 135.74696 -30.96608, 135.74719 -30.9665, 135.74723 -30.96658, 135.7474 -30.96691, 135.74784 -30.96772, 135.74822 -30.96847, 135.74834 -30.96872, 135.74923 -30.97048, 135.75031 -30.97271, 135.75094 -30.97195, 135.75099 -30.97187, 135.75102 -30.97179, 135.75104 -30.97168, 135.75103 -30.97156, 135.75101 -30.97143, 135.75094 -30.97129, 135.75077 -30.97092, 135.75058 -30.97053, 135.7503863057 -30.9702233174)" +-25.1963823,133.2011792,-29.0178793,134.7558755,7,Erldunda,"LINESTRING (133.2012152976 -25.196370745, 133.201159 -25.19619, 133.201349 -25.1968, 133.20169 -25.19796, 133.20194 -25.19891, 133.20208 -25.19938, 133.20227 -25.20006, 133.20231 -25.2002, 133.20255 -25.20102, 133.20267 -25.20143, 133.20291 -25.20228, 133.202949 -25.20242, 133.20325 -25.20345, 133.20357 -25.20457, 133.203859 -25.20563, 133.204109 -25.2066, 133.20428 -25.20737, 133.204469 -25.20832, 133.2046 -25.20905, 133.20472 -25.20981, 133.20479 -25.2103, 133.20485 -25.21078, 133.2049 -25.21122, 133.20498 -25.21202, 133.20506 -25.21306, 133.20508 -25.21348, 133.205109 -25.21434, 133.205109 -25.21484, 133.205109 -25.21605, 133.20507 -25.21712, 133.20499 -25.21894, 133.20497 -25.21939, 133.20494 -25.21981, 133.204919 -25.22054, 133.20487 -25.22139, 133.20482 -25.22245, 133.2048 -25.22296, 133.20477 -25.22368, 133.20473 -25.22476, 133.20473 -25.22589, 133.204749 -25.22682, 133.20477 -25.22746, 133.20478 -25.22774, 133.2048 -25.22811, 133.204839 -25.22889, 133.20495 -25.23024, 133.20503 -25.23109, 133.205189 -25.23227, 133.205369 -25.23346, 133.2058 -25.23618, 133.20657 -25.24097, 133.20697 -25.24351, 133.207069 -25.24408, 133.20722 -25.24504, 133.20755 -25.24707, 133.20767 -25.24784, 133.207789 -25.24862, 133.20796 -25.24964, 133.20835 -25.2521, 133.20846 -25.25275, 133.208769 -25.25471, 133.20892 -25.25561, 133.209229 -25.25756, 133.209589 -25.25977, 133.20975 -25.26079, 133.20984 -25.26131, 133.21006 -25.2627, 133.21025 -25.26387, 133.210389 -25.26476, 133.21043 -25.26507, 133.21052 -25.2657, 133.210569 -25.26612, 133.21064 -25.26676, 133.210749 -25.26789, 133.21079 -25.26847, 133.210829 -25.26895, 133.210839 -25.26932, 133.21087 -25.26978, 133.21091 -25.27075, 133.210919 -25.27143, 133.210919 -25.27221, 133.21091 -25.27283, 133.2109 -25.27363, 133.21086 -25.2745, 133.21078 -25.27579, 133.21071 -25.27665, 133.210659 -25.27717, 133.21061 -25.27769, 133.2105 -25.27853, 133.210289 -25.27993, 133.21019 -25.28055, 133.20996 -25.28178, 133.20973 -25.28287, 133.20952 -25.28376, 133.209309 -25.28463, 133.209129 -25.28529, 133.208679 -25.28685, 133.20828 -25.28807, 133.20786 -25.28931, 133.20694 -25.29201, 133.20599 -25.2948, 133.20561 -25.29593, 133.204929 -25.29792, 133.20426 -25.29991, 133.203579 -25.30188, 133.20245 -25.30523, 133.20159 -25.30773, 133.20137 -25.3084, 133.20064 -25.31052, 133.19984 -25.3129, 133.199009 -25.31533, 133.19845 -25.31696, 133.197939 -25.31846, 133.197669 -25.31926, 133.197409 -25.32006, 133.1969 -25.3218, 133.19661 -25.3228, 133.196419 -25.32348, 133.19602 -25.32506, 133.19587 -25.32567, 133.1956 -25.32691, 133.19531 -25.3282, 133.19506 -25.32947, 133.19478 -25.33102, 133.19457 -25.33235, 133.19438 -25.33362, 133.19425 -25.33467, 133.19414 -25.33553, 133.19407 -25.33621, 133.19389 -25.33809, 133.193829 -25.33893, 133.193729 -25.34052, 133.19366 -25.34164, 133.1936 -25.34259, 133.19358 -25.34281, 133.19352 -25.34371, 133.193469 -25.34461, 133.19345 -25.34506, 133.19339 -25.3458, 133.19331 -25.34708, 133.19324 -25.34821, 133.19317 -25.34944, 133.19312 -25.35005, 133.19309 -25.3507, 133.193 -25.35208, 133.19289 -25.35372, 133.192839 -25.35452, 133.19254 -25.35935, 133.192399 -25.36159, 133.19233 -25.3627, 133.19228 -25.36347, 133.19225 -25.36388, 133.19225 -25.36396, 133.192219 -25.36431, 133.19219 -25.36484, 133.19217 -25.36518, 133.19214 -25.36571, 133.1921 -25.36636, 133.192039 -25.36721, 133.19196 -25.36847, 133.19191 -25.36923, 133.19163 -25.37377, 133.191499 -25.37588, 133.19135 -25.37824, 133.191309 -25.37925, 133.1913 -25.37994, 133.19129 -25.38049, 133.1913 -25.38178, 133.19135 -25.38306, 133.191409 -25.38401, 133.19148 -25.38499, 133.19153 -25.38554, 133.191579 -25.38603, 133.191769 -25.38756, 133.19197 -25.38883, 133.1922 -25.3901, 133.19233 -25.39071, 133.19254 -25.39168, 133.19267 -25.39222, 133.193009 -25.39357, 133.19322 -25.3943, 133.193459 -25.39513, 133.193639 -25.39568, 133.19375 -25.39606, 133.19408 -25.397, 133.19442 -25.39795, 133.19476 -25.39885, 133.19567 -25.40107, 133.196589 -25.40332, 133.19753 -25.40561, 133.19845 -25.40786, 133.20029 -25.41235, 133.20218 -25.41695, 133.20245 -25.41763, 133.20351 -25.42022, 133.20458 -25.42281, 133.20503 -25.42392, 133.20575 -25.42567, 133.2062 -25.42686, 133.206629 -25.4281, 133.20693 -25.42903, 133.20714 -25.42975, 133.20738 -25.43058, 133.207619 -25.43152, 133.20773 -25.43196, 133.20785 -25.4325, 133.208049 -25.43341, 133.20829 -25.43468, 133.20844 -25.43563, 133.20863 -25.43675, 133.20893 -25.43867, 133.20899 -25.43898, 133.2091 -25.43966, 133.20929 -25.44091, 133.20937 -25.44145, 133.209489 -25.4422, 133.20962 -25.44297, 133.20987 -25.44424, 133.21015 -25.4455, 133.210389 -25.44644, 133.210569 -25.44706, 133.210739 -25.44768, 133.211199 -25.44913, 133.21142 -25.44985, 133.21194 -25.45146, 133.21303 -25.45489, 133.2133 -25.45572, 133.21349 -25.45634, 133.213889 -25.45759, 133.213959 -25.4578, 133.214679 -25.46004, 133.21506 -25.46128, 133.21574 -25.46338, 133.21613 -25.46464, 133.21694 -25.46715, 133.21763 -25.46931, 133.217809 -25.46989, 133.21842 -25.47179, 133.21884 -25.47311, 133.21901 -25.47366, 133.21918 -25.47417, 133.21932 -25.47462, 133.21933 -25.47467, 133.21941 -25.4749, 133.2195 -25.4752, 133.219699 -25.47583, 133.22049 -25.47829, 133.22088 -25.47953, 133.22118 -25.48044, 133.221499 -25.48145, 133.221679 -25.48202, 133.22227 -25.48385, 133.22267 -25.48511, 133.22316 -25.48664, 133.22335 -25.48726, 133.2237 -25.48851, 133.22402 -25.48976, 133.2243 -25.49102, 133.22449 -25.49195, 133.22473 -25.49328, 133.22492 -25.49452, 133.225079 -25.4958, 133.22521 -25.49708, 133.225249 -25.49755, 133.22529 -25.49812, 133.22531 -25.49849, 133.225339 -25.49915, 133.22538 -25.50016, 133.22539 -25.50146, 133.22538 -25.50226, 133.225339 -25.50368, 133.22527 -25.50483, 133.22518 -25.50593, 133.22503 -25.50732, 133.22494 -25.50802, 133.22488 -25.50846, 133.22485 -25.50867, 133.224629 -25.50998, 133.22449 -25.51072, 133.2244 -25.5112, 133.2242 -25.51214, 133.22405 -25.51281, 133.223819 -25.51371, 133.223559 -25.51466, 133.2233 -25.51561, 133.22296 -25.51683, 133.22271 -25.51777, 133.22253 -25.51838, 133.22236 -25.51901, 133.222199 -25.51962, 133.22206 -25.5201, 133.221499 -25.52214, 133.22106 -25.52373, 133.22085 -25.52451, 133.22055 -25.52558, 133.22013 -25.52714, 133.21994 -25.52779, 133.219779 -25.52839, 133.219429 -25.52965, 133.219079 -25.53092, 133.21903 -25.53109, 133.218979 -25.53129, 133.21869 -25.53234, 133.21822 -25.53404, 133.21772 -25.53588, 133.21663 -25.53984, 133.21572 -25.54312, 133.21539 -25.54431, 133.215139 -25.54525, 133.21499 -25.54576, 133.21488 -25.54618, 133.21453 -25.54743, 133.214319 -25.54822, 133.21367 -25.55055, 133.213249 -25.55211, 133.213069 -25.55274, 133.21255 -25.55461, 133.21196 -25.55678, 133.21154 -25.55829, 133.21131 -25.55915, 133.211009 -25.56021, 133.2107 -25.56136, 133.21051 -25.56209, 133.210209 -25.56334, 133.21 -25.56434, 133.209859 -25.56513, 133.20979 -25.56554, 133.20969 -25.56614, 133.209579 -25.56683, 133.209489 -25.56758, 133.20939 -25.56845, 133.20936 -25.5688, 133.20927 -25.56978, 133.20919 -25.57088, 133.209139 -25.57203, 133.20911 -25.57296, 133.2091 -25.57394, 133.20911 -25.57502, 133.20911 -25.57553, 133.209129 -25.57604, 133.20918 -25.57677, 133.20929 -25.57817, 133.20944 -25.58015, 133.20962 -25.58225, 133.21016 -25.58906, 133.21018 -25.58928, 133.210469 -25.59287, 133.210649 -25.59518, 133.210839 -25.59766, 133.21091 -25.5984, 133.211019 -25.59974, 133.211189 -25.60201, 133.211289 -25.60331, 133.211369 -25.60442, 133.211379 -25.6046, 133.21157 -25.60666, 133.211639 -25.60761, 133.21169 -25.60843, 133.2119 -25.61083, 133.21213 -25.61374, 133.21231 -25.61612, 133.21252 -25.61862, 133.21269 -25.62076, 133.21277 -25.62181, 133.21287 -25.62296, 133.212979 -25.62431, 133.213079 -25.62558, 133.213169 -25.62657, 133.21331 -25.62772, 133.213439 -25.62868, 133.21359 -25.62961, 133.21374 -25.63041, 133.213879 -25.6312, 133.214049 -25.63195, 133.2143 -25.63301, 133.21461 -25.63421, 133.214949 -25.63544, 133.21515 -25.63608, 133.21554 -25.63729, 133.21596 -25.63848, 133.21651 -25.63991, 133.217019 -25.64119, 133.217369 -25.642, 133.21772 -25.64275, 133.21841 -25.64415, 133.21868 -25.64467, 133.21923 -25.64569, 133.21984 -25.64676, 133.22037 -25.64762, 133.22102 -25.64867, 133.2213 -25.64912, 133.22169 -25.64972, 133.22204 -25.65026, 133.22234 -25.65075, 133.22297 -25.65172, 133.223189 -25.65207, 133.22339 -25.6524, 133.223819 -25.65308, 133.2241 -25.65351, 133.22433 -25.65388, 133.22468 -25.65444, 133.22478 -25.6546, 133.22506 -25.65503, 133.22584 -25.65625, 133.226329 -25.65702, 133.22648 -25.65727, 133.22676 -25.65769, 133.227039 -25.65816, 133.22733 -25.6586, 133.22835 -25.66021, 133.22905 -25.66131, 133.2295 -25.66202, 133.230349 -25.66335, 133.231529 -25.66523, 133.232059 -25.66607, 133.2333 -25.66805, 133.234029 -25.6692, 133.23471 -25.67026, 133.23647 -25.67305, 133.23754 -25.67474, 133.238149 -25.67571, 133.23983 -25.67835, 133.240479 -25.67938, 133.24058 -25.67955, 133.24079 -25.67987, 133.24255 -25.68262, 133.24506 -25.68659, 133.24619 -25.68837, 133.24762 -25.69065, 133.247999 -25.69124, 133.24903 -25.69287, 133.25061 -25.69538, 133.25169 -25.69708, 133.25294 -25.69907, 133.2543 -25.70123, 133.255239 -25.7027, 133.25658 -25.70483, 133.25709 -25.70565, 133.25771 -25.70661, 133.260179 -25.71053, 133.26132 -25.71234, 133.26137 -25.71241, 133.26157 -25.71273, 133.26193 -25.71331, 133.2632 -25.71531, 133.26538 -25.71874, 133.26843 -25.72357, 133.27184 -25.72897, 133.27412 -25.73257, 133.27762 -25.73811, 133.27885 -25.74006, 133.282109 -25.74522, 133.28352 -25.74744, 133.28423 -25.74856, 133.285239 -25.75018, 133.285879 -25.75129, 133.28636 -25.75215, 133.2867 -25.75279, 133.28728 -25.75393, 133.2879 -25.75523, 133.28824 -25.75599, 133.28886 -25.75745, 133.28943 -25.75893, 133.29001 -25.76061, 133.29047 -25.76209, 133.29087 -25.76354, 133.29123 -25.76501, 133.29147 -25.76617, 133.29167 -25.76716, 133.291879 -25.76842, 133.2921 -25.76998, 133.29226 -25.77144, 133.292939 -25.77808, 133.29343 -25.78285, 133.29363 -25.78476, 133.293749 -25.78599, 133.293929 -25.78767, 133.29399 -25.78848, 133.29404 -25.78953, 133.294029 -25.79058, 133.294009 -25.79115, 133.29396 -25.79188, 133.29389 -25.79279, 133.29381 -25.79334, 133.29371 -25.79404, 133.29351 -25.79508, 133.29329 -25.79606, 133.29306 -25.7969, 133.2929 -25.79742, 133.29262 -25.79828, 133.29234 -25.79899, 133.29192 -25.80001, 133.29129 -25.80136, 133.290709 -25.80261, 133.290349 -25.80346, 133.29003 -25.80432, 133.28974 -25.8052, 133.28949 -25.80601, 133.28922 -25.80709, 133.289009 -25.80812, 133.28889 -25.80874, 133.28876 -25.80965, 133.288649 -25.81089, 133.28859 -25.81219, 133.28859 -25.81305, 133.28862 -25.81397, 133.2887 -25.81497, 133.288829 -25.8161, 133.28895 -25.81681, 133.28908 -25.8175, 133.2892 -25.81809, 133.28939 -25.81883, 133.28971 -25.81995, 133.29002 -25.82091, 133.290249 -25.82152, 133.2905 -25.82214, 133.29073 -25.82267, 133.29103 -25.82333, 133.2927 -25.8269, 133.29503 -25.83188, 133.295459 -25.8328, 133.2963 -25.83458, 133.29668 -25.8354, 133.29702 -25.83614, 133.29722 -25.83655, 133.297329 -25.83679, 133.29745 -25.83704, 133.2978 -25.83779, 133.298049 -25.83834, 133.298059 -25.83836, 133.29815 -25.83856, 133.29828 -25.83888, 133.29845 -25.83937, 133.29865 -25.84008, 133.2987 -25.84029, 133.29878 -25.8407, 133.29884 -25.84111, 133.29888 -25.84154, 133.29889 -25.84171, 133.2989 -25.84193, 133.29892 -25.84222, 133.2989 -25.84287, 133.298859 -25.84346, 133.29881 -25.8439, 133.29873 -25.84433, 133.29863 -25.84474, 133.29852 -25.84517, 133.29834 -25.84572, 133.298229 -25.846, 133.298129 -25.84625, 133.29794 -25.84666, 133.29771 -25.84711, 133.29745 -25.84759, 133.297249 -25.8479, 133.29676 -25.84859, 133.2964 -25.84906, 133.296089 -25.84944, 133.29547 -25.85024, 133.29431 -25.85172, 133.292409 -25.85414, 133.29155 -25.85523, 133.28984 -25.85743, 133.28742 -25.86052, 133.286149 -25.86214, 133.28558 -25.86287, 133.28281 -25.86641, 133.2821 -25.86732, 133.28144 -25.8682, 133.28063 -25.86932, 133.27797 -25.87314, 133.27711 -25.87435, 133.27644 -25.87532, 133.27537 -25.87684, 133.275039 -25.87732, 133.27478 -25.87769, 133.2744 -25.87821, 133.273779 -25.87906, 133.27305 -25.88001, 133.272519 -25.88069, 133.27184 -25.88151, 133.2712 -25.88226, 133.270749 -25.88279, 133.27009 -25.88352, 133.26962 -25.88404, 133.269039 -25.88466, 133.268229 -25.88551, 133.26604 -25.88782, 133.26493 -25.88898, 133.263839 -25.89015, 133.263489 -25.89053, 133.26272 -25.89141, 133.26184 -25.89249, 133.26121 -25.89329, 133.2606 -25.89409, 133.259809 -25.89518, 133.25906 -25.89629, 133.25852 -25.89713, 133.258 -25.89798, 133.257489 -25.89884, 133.25707 -25.89961, 133.2567 -25.90028, 133.25626 -25.90114, 133.25556 -25.90258, 133.25538 -25.90299, 133.25504 -25.90375, 133.25485 -25.90422, 133.25459 -25.90485, 133.25455 -25.90495, 133.254179 -25.90584, 133.25392 -25.90643, 133.25351 -25.90744, 133.25331 -25.90793, 133.253199 -25.90819, 133.25307 -25.90852, 133.25261 -25.90962, 133.252389 -25.91015, 133.25206 -25.91095, 133.25182 -25.91152, 133.2517 -25.91178, 133.25155 -25.91215, 133.25092 -25.91369, 133.24968 -25.91667, 133.24936 -25.91744, 133.24897 -25.91835, 133.24848 -25.91957, 133.24766 -25.92152, 133.24651 -25.92429, 133.24604 -25.92542, 133.24108 -25.93737, 133.240299 -25.93923, 133.239849 -25.94026, 133.23951 -25.94103, 133.23925 -25.94159, 133.23867 -25.94274, 133.238139 -25.94375, 133.237779 -25.94442, 133.237439 -25.94501, 133.23703 -25.94571, 133.236349 -25.94682, 133.23584 -25.94763, 133.235279 -25.94847, 133.2347 -25.9493, 133.23444 -25.94966, 133.23388 -25.95042, 133.23302 -25.95153, 133.23212 -25.95264, 133.230259 -25.95488, 133.22939 -25.95595, 133.22878 -25.95669, 133.22831 -25.95725, 133.22698 -25.95886, 133.22496 -25.9613, 133.22413 -25.96232, 133.22294 -25.96374, 133.22223 -25.96461, 133.22169 -25.96527, 133.2211 -25.96598, 133.22098 -25.96612, 133.21927 -25.9682, 133.217649 -25.97016, 133.21412 -25.97443, 133.21044 -25.97888, 133.2073 -25.98267, 133.206279 -25.9839, 133.20545 -25.98491, 133.20504 -25.9854, 133.2045 -25.98606, 133.204029 -25.98663, 133.20363 -25.98714, 133.203399 -25.98745, 133.2029 -25.98811, 133.202499 -25.98866, 133.20248 -25.98869, 133.20187 -25.98956, 133.20111 -25.99072, 133.20055 -25.9916, 133.19999 -25.99255, 133.19968 -25.99309, 133.19935 -25.99369, 133.19921 -25.99393, 133.19894 -25.99445, 133.19851 -25.99529, 133.19808 -25.99619, 133.197579 -25.99731, 133.19748 -25.99752, 133.19719 -25.99818, 133.19702 -25.99862, 133.197 -25.99867, 133.19684 -25.99907, 133.19676 -25.99924, 133.19665 -25.99953, 133.196509 -25.99991, 133.19638 -26.00028, 133.196249 -26.00063, 133.19596 -26.00148, 133.19576 -26.00211, 133.19555 -26.00278, 133.19539 -26.00334, 133.19521 -26.00399, 133.194889 -26.00531, 133.19467 -26.00626, 133.19449 -26.00714, 133.194459 -26.00728, 133.194269 -26.00838, 133.19415 -26.00922, 133.19403 -26.01008, 133.19399 -26.01044, 133.19384 -26.01147, 133.19357 -26.01342, 133.193289 -26.01543, 133.193019 -26.01743, 133.19269 -26.01982, 133.19244 -26.02161, 133.192399 -26.02196, 133.19225 -26.02307, 133.19192 -26.02546, 133.19172 -26.02702, 133.19157 -26.02833, 133.19147 -26.0294, 133.19136 -26.03057, 133.19124 -26.03219, 133.19119 -26.03301, 133.191129 -26.03431, 133.19106 -26.03609, 133.19103 -26.03787, 133.19103 -26.0398, 133.19106 -26.04121, 133.19107 -26.04139, 133.19109 -26.04213, 133.19116 -26.04361, 133.1912 -26.04435, 133.19126 -26.04534, 133.19137 -26.04676, 133.19147 -26.04786, 133.19155 -26.04868, 133.1916 -26.04911, 133.19166 -26.04969, 133.19182 -26.05103, 133.19202 -26.0525, 133.19224 -26.05395, 133.19244 -26.05523, 133.19295 -26.05833, 133.19307 -26.05907, 133.193289 -26.06044, 133.19342 -26.06125, 133.19345 -26.0614, 133.19361 -26.06238, 133.19366 -26.06271, 133.19386 -26.06394, 133.19396 -26.06457, 133.1942 -26.06605, 133.19429 -26.06659, 133.194549 -26.06818, 133.19476 -26.06953, 133.19494 -26.07058, 133.19522 -26.07234, 133.19559 -26.07467, 133.19574 -26.07554, 133.196159 -26.07818, 133.19703 -26.08351, 133.19751 -26.0865, 133.1977 -26.08764, 133.19805 -26.08985, 133.19844 -26.09224, 133.19923 -26.0971, 133.19934 -26.09779, 133.19945 -26.09856, 133.199549 -26.09922, 133.19963 -26.09987, 133.1998 -26.10118, 133.199909 -26.10214, 133.199999 -26.10309, 133.200089 -26.10401, 133.20012 -26.10441, 133.200189 -26.1053, 133.20031 -26.10709, 133.200369 -26.10839, 133.20043 -26.10996, 133.200449 -26.1109, 133.200459 -26.11225, 133.200459 -26.11328, 133.200449 -26.1142, 133.20043 -26.11496, 133.20041 -26.11572, 133.200369 -26.1168, 133.20029 -26.11832, 133.20024 -26.11917, 133.20017 -26.12006, 133.20013 -26.12064, 133.20008 -26.12123, 133.19999 -26.12224, 133.1999 -26.12303, 133.19979 -26.124, 133.199639 -26.12526, 133.199559 -26.12593, 133.19941 -26.12712, 133.19936 -26.12762, 133.19922 -26.12873, 133.198919 -26.13124, 133.1986 -26.13389, 133.19791 -26.13955, 133.1976 -26.14209, 133.19742 -26.14356, 133.19711 -26.14616, 133.19683 -26.14845, 133.19666 -26.14989, 133.19653 -26.15086, 133.19644 -26.15168, 133.196329 -26.15254, 133.196069 -26.15475, 133.19563 -26.15835, 133.19522 -26.16175, 133.1951 -26.16275, 133.194979 -26.16378, 133.19491 -26.16429, 133.19476 -26.16554, 133.19469 -26.16612, 133.194439 -26.16818, 133.19434 -26.16906, 133.19426 -26.16966, 133.19415 -26.1706, 133.194009 -26.1717, 133.19389 -26.17274, 133.19378 -26.17365, 133.193369 -26.17698, 133.19276 -26.18199, 133.19181 -26.18988, 133.19151 -26.19232, 133.19125 -26.19448, 133.19106 -26.1961, 133.19094 -26.19706, 133.19075 -26.19866, 133.19047 -26.20093, 133.190419 -26.20137, 133.19035 -26.2019, 133.19021 -26.20307, 133.18996 -26.20512, 133.189609 -26.20805, 133.18946 -26.20922, 133.18936 -26.21011, 133.18915 -26.21186, 133.189 -26.21304, 133.188899 -26.2139, 133.18851 -26.21712, 133.18844 -26.21773, 133.188359 -26.2183, 133.18817 -26.21997, 133.18805 -26.22094, 133.18798 -26.22154, 133.187919 -26.22213, 133.18771 -26.22418, 133.18753 -26.22627, 133.187459 -26.22712, 133.187369 -26.22846, 133.18732 -26.22931, 133.18725 -26.23038, 133.18718 -26.23139, 133.18713 -26.23229, 133.187 -26.23434, 133.18691 -26.23581, 133.186839 -26.23689, 133.18677 -26.23801, 133.1867 -26.23905, 133.18664 -26.24008, 133.186489 -26.24245, 133.18637 -26.24451, 133.186309 -26.2454, 133.18614 -26.2482, 133.18609 -26.24921, 133.18605 -26.25033, 133.18602 -26.25136, 133.18601 -26.25208, 133.18601 -26.25339, 133.186029 -26.25444, 133.18606 -26.25544, 133.186129 -26.25715, 133.1862 -26.25831, 133.18625 -26.25905, 133.18632 -26.25987, 133.18642 -26.26098, 133.18652 -26.26182, 133.18659 -26.26255, 133.18679 -26.2645, 133.18689 -26.26546, 133.18696 -26.26611, 133.18705 -26.26693, 133.187199 -26.26842, 133.18744 -26.27066, 133.18766 -26.27272, 133.18787 -26.27488, 133.187999 -26.2761, 133.18806 -26.27661, 133.188179 -26.27779, 133.188279 -26.2788, 133.18834 -26.27926, 133.188369 -26.27958, 133.188639 -26.2822, 133.188799 -26.28368, 133.18901 -26.28573, 133.18909 -26.28653, 133.18922 -26.28769, 133.1895 -26.2904, 133.19013 -26.29641, 133.19028 -26.29789, 133.1904 -26.29897, 133.19047 -26.29965, 133.19088 -26.30357, 133.19116 -26.3063, 133.191399 -26.30855, 133.19153 -26.30984, 133.1917 -26.31141, 133.192119 -26.31551, 133.19224 -26.31658, 133.19233 -26.31745, 133.19244 -26.31852, 133.192579 -26.31974, 133.19271 -26.32066, 133.19286 -26.32159, 133.193009 -26.32242, 133.19317 -26.32323, 133.19336 -26.32413, 133.19357 -26.32501, 133.19385 -26.32611, 133.194179 -26.32728, 133.19448 -26.32827, 133.19492 -26.32958, 133.19529 -26.33062, 133.19551 -26.33121, 133.1959 -26.33218, 133.196339 -26.33322, 133.19685 -26.33435, 133.19725 -26.33518, 133.19747 -26.33562, 133.197859 -26.3364, 133.198389 -26.33739, 133.199 -26.33847, 133.19936 -26.33912, 133.19961 -26.33955, 133.19997 -26.34018, 133.20095 -26.34194, 133.20124 -26.34243, 133.2016 -26.34308, 133.20222 -26.34416, 133.20255 -26.34476, 133.20297 -26.34549, 133.20339 -26.34624, 133.20378 -26.34689, 133.20399 -26.34722, 133.20459 -26.34817, 133.20503 -26.34882, 133.20539 -26.34934, 133.20587 -26.35001, 133.206539 -26.35091, 133.207 -26.35149, 133.20748 -26.3521, 133.20809 -26.35281, 133.208689 -26.35351, 133.20947 -26.35436, 133.21055 -26.35547, 133.211369 -26.35631, 133.21188 -26.35684, 133.21222 -26.35719, 133.21279 -26.35777, 133.214949 -26.35998, 133.216199 -26.36126, 133.21947 -26.36461, 133.22027 -26.36542, 133.221229 -26.36641, 133.22215 -26.36736, 133.22279 -26.36807, 133.22359 -26.36897, 133.22425 -26.36974, 133.22513 -26.37083, 133.225789 -26.37167, 133.226 -26.37196, 133.22607 -26.37205, 133.22645 -26.37256, 133.226499 -26.37262, 133.226769 -26.373, 133.22694 -26.37324, 133.22734 -26.37382, 133.22745 -26.37398, 133.22808 -26.37493, 133.22835 -26.37535, 133.22879 -26.37605, 133.22914 -26.37664, 133.229639 -26.37747, 133.23004 -26.3782, 133.23048 -26.37902, 133.23115 -26.38032, 133.23159 -26.38124, 133.23194 -26.38201, 133.23237 -26.38299, 133.23256 -26.38344, 133.23284 -26.38415, 133.23324 -26.38519, 133.2336 -26.3862, 133.233939 -26.38718, 133.23494 -26.39006, 133.23525 -26.39096, 133.23557 -26.39189, 133.23588 -26.39276, 133.23678 -26.39538, 133.23739 -26.39715, 133.238049 -26.39905, 133.23917 -26.40225, 133.24001 -26.40468, 133.240649 -26.40653, 133.24113 -26.40791, 133.24159 -26.40923, 133.24207 -26.41064, 133.242539 -26.41196, 133.242719 -26.41249, 133.24291 -26.41305, 133.24302 -26.41334, 133.24338 -26.41437, 133.243689 -26.41528, 133.24434 -26.41717, 133.2451 -26.41937, 133.24559 -26.42077, 133.24587 -26.42159, 133.2465 -26.42339, 133.24696 -26.42472, 133.2475 -26.42626, 133.2478 -26.42714, 133.24914 -26.431, 133.249519 -26.43212, 133.25007 -26.43369, 133.25094 -26.4362, 133.251119 -26.4367, 133.251139 -26.43677, 133.25117 -26.43685, 133.25143 -26.43762, 133.25164 -26.43823, 133.25209 -26.43949, 133.2525 -26.4407, 133.25264 -26.44109, 133.25288 -26.4418, 133.25349 -26.44354, 133.25424 -26.4457, 133.25438 -26.44611, 133.25526 -26.44864, 133.25565 -26.44977, 133.25603 -26.45095, 133.256329 -26.45195, 133.256589 -26.45284, 133.25681 -26.45368, 133.256959 -26.45429, 133.2571 -26.45486, 133.25738 -26.45608, 133.25752 -26.45675, 133.2578 -26.45826, 133.257929 -26.45903, 133.25805 -26.45983, 133.25813 -26.46038, 133.25826 -26.46147, 133.25833 -26.46205, 133.258389 -26.46262, 133.25841 -26.46293, 133.25851 -26.46409, 133.25859 -26.46551, 133.25863 -26.46635, 133.25863 -26.46676, 133.258649 -26.46742, 133.258649 -26.46825, 133.25863 -26.46939, 133.25861 -26.47014, 133.25855 -26.47125, 133.25837 -26.47388, 133.25828 -26.47521, 133.25826 -26.47567, 133.258209 -26.47622, 133.25813 -26.4774, 133.25792 -26.48051, 133.25774 -26.48316, 133.2577 -26.48369, 133.25763 -26.48477, 133.25755 -26.48577, 133.257389 -26.48814, 133.257219 -26.49063, 133.25709 -26.49243, 133.25683 -26.49627, 133.25663 -26.49919, 133.25655 -26.50036, 133.25649 -26.50122, 133.25644 -26.50194, 133.256409 -26.50243, 133.25636 -26.50313, 133.2563 -26.5039, 133.25616 -26.50598, 133.25602 -26.50801, 133.255699 -26.51274, 133.25562 -26.51386, 133.255519 -26.51522, 133.25545 -26.51629, 133.25528 -26.51877, 133.255149 -26.52073, 133.25504 -26.52229, 133.25495 -26.52348, 133.25482 -26.52538, 133.25476 -26.5263, 133.25455 -26.52937, 133.25443 -26.53113, 133.25428 -26.53339, 133.254169 -26.53483, 133.25406 -26.53654, 133.253989 -26.53752, 133.25392 -26.53837, 133.25385 -26.53957, 133.25374 -26.54119, 133.25356 -26.54348, 133.25344 -26.54483, 133.25333 -26.546, 133.253269 -26.54658, 133.25305 -26.54864, 133.25288 -26.55005, 133.25278 -26.55085, 133.25267 -26.55165, 133.25244 -26.55334, 133.252299 -26.55429, 133.252109 -26.55551, 133.25187 -26.55695, 133.25162 -26.55848, 133.251219 -26.56098, 133.25094 -26.56269, 133.25081 -26.56347, 133.2508 -26.56356, 133.250679 -26.56435, 133.25052 -26.56557, 133.25036 -26.56717, 133.250239 -26.56858, 133.25017 -26.56975, 133.25013 -26.5709, 133.25012 -26.57114, 133.25011 -26.57213, 133.25012 -26.57352, 133.250149 -26.57441, 133.250229 -26.57605, 133.250319 -26.57725, 133.25048 -26.57881, 133.25055 -26.57942, 133.25064 -26.58008, 133.25076 -26.58091, 133.25091 -26.58182, 133.25107 -26.58276, 133.25117 -26.58327, 133.25151 -26.58492, 133.2517 -26.58574, 133.25178 -26.58606, 133.25204 -26.58709, 133.25224 -26.5878, 133.25261 -26.58908, 133.25291 -26.59002, 133.253269 -26.5911, 133.25376 -26.59246, 133.254269 -26.59378, 133.25461 -26.59462, 133.25509 -26.59573, 133.25537 -26.59635, 133.255689 -26.59704, 133.25636 -26.59841, 133.2568 -26.59927, 133.257299 -26.60022, 133.25737 -26.60035, 133.2579 -26.60128, 133.25823 -26.60185, 133.25868 -26.6026, 133.25925 -26.60354, 133.25979 -26.60437, 133.26031 -26.60516, 133.26167 -26.6072, 133.26334 -26.6097, 133.26589 -26.61353, 133.26701 -26.61521, 133.26789 -26.61652, 133.26822 -26.61702, 133.2687 -26.61774, 133.26923 -26.61854, 133.270029 -26.61975, 133.270559 -26.62062, 133.27113 -26.62157, 133.2717 -26.62256, 133.27232 -26.6237, 133.27276 -26.62454, 133.273239 -26.62551, 133.27356 -26.62617, 133.27392 -26.62695, 133.27444 -26.62812, 133.27493 -26.62928, 133.27511 -26.62974, 133.275479 -26.63069, 133.27591 -26.63187, 133.27618 -26.63266, 133.27669 -26.63423, 133.27716 -26.63568, 133.27732 -26.63618, 133.27774 -26.63752, 133.277999 -26.63831, 133.27841 -26.63959, 133.279 -26.64146, 133.28004 -26.64469, 133.28062 -26.64652, 133.28096 -26.64756, 133.28161 -26.6496, 133.28258 -26.65264, 133.28303 -26.65402, 133.2836 -26.65582, 133.283819 -26.6565, 133.28389 -26.6567, 133.2843 -26.658, 133.28481 -26.65956, 133.285239 -26.66093, 133.285509 -26.66177, 133.28613 -26.66369, 133.28646 -26.66473, 133.28698 -26.66634, 133.28753 -26.66804, 133.28769 -26.66855, 133.28791 -26.66918, 133.28848 -26.67082, 133.28902 -26.67224, 133.28959 -26.67367, 133.290259 -26.67526, 133.290879 -26.67666, 133.29139 -26.67777, 133.291609 -26.67822, 133.29177 -26.67857, 133.29236 -26.67977, 133.2931 -26.6812, 133.29362 -26.68217, 133.2944 -26.68361, 133.295459 -26.68557, 133.29633 -26.68718, 133.29703 -26.68846, 133.297869 -26.69002, 133.29874 -26.69163, 133.299399 -26.69286, 133.30016 -26.69434, 133.3007 -26.69542, 133.30152 -26.6971, 133.30218 -26.6985, 133.30292 -26.70013, 133.303419 -26.70128, 133.30406 -26.70277, 133.304669 -26.70423, 133.30532 -26.70588, 133.305919 -26.70746, 133.306919 -26.7101, 133.30724 -26.71094, 133.30739 -26.71134, 133.30775 -26.71231, 133.30839 -26.71401, 133.30901 -26.71563, 133.309069 -26.71578, 133.309429 -26.71674, 133.30946 -26.71682, 133.309519 -26.71699, 133.309609 -26.71724, 133.30997 -26.71818, 133.31003 -26.71835, 133.3106 -26.71986, 133.31155 -26.72237, 133.313179 -26.72671, 133.31387 -26.72853, 133.31469 -26.73071, 133.31547 -26.73278, 133.315959 -26.73406, 133.31671 -26.73611, 133.31736 -26.73794, 133.3179 -26.73954, 133.31825 -26.74057, 133.318909 -26.74264, 133.319459 -26.74442, 133.32009 -26.74654, 133.320429 -26.74775, 133.32082 -26.74919, 133.3212 -26.75061, 133.321409 -26.75143, 133.32184 -26.75315, 133.322319 -26.75519, 133.32261 -26.75646, 133.3229 -26.7578, 133.323289 -26.75968, 133.32371 -26.76186, 133.323929 -26.76308, 133.32421 -26.76466, 133.32441 -26.76591, 133.32462 -26.76724, 133.3248 -26.76848, 133.32506 -26.77036, 133.32523 -26.77167, 133.32543 -26.77332, 133.32556 -26.77449, 133.32566 -26.77557, 133.32579 -26.77682, 133.32593 -26.77821, 133.32632 -26.78216, 133.32656 -26.78451, 133.326699 -26.78599, 133.32676 -26.78655, 133.32687 -26.78765, 133.32711 -26.79013, 133.32712 -26.79019, 133.32721 -26.79113, 133.32726 -26.79163, 133.32743 -26.79337, 133.32749 -26.7939, 133.32757 -26.7947, 133.327769 -26.79675, 133.32783 -26.79731, 133.327949 -26.79853, 133.32803 -26.79942, 133.3281 -26.80003, 133.328139 -26.80039, 133.32833 -26.80235, 133.32843 -26.80331, 133.32853 -26.80437, 133.32864 -26.80546, 133.32883 -26.8073, 133.329039 -26.80941, 133.32927 -26.81173, 133.329379 -26.81279, 133.32944 -26.8135, 133.32955 -26.81455, 133.32988 -26.81789, 133.32997 -26.8188, 133.33003 -26.81942, 133.33015 -26.82063, 133.330199 -26.82115, 133.3305 -26.82408, 133.33072 -26.82631, 133.33079 -26.82691, 133.33089 -26.82756, 133.33097 -26.82798, 133.331079 -26.82852, 133.3312 -26.82904, 133.33137 -26.82965, 133.33151 -26.8301, 133.3317 -26.83067, 133.331899 -26.8312, 133.33205 -26.83157, 133.332349 -26.83224, 133.33259 -26.83274, 133.332799 -26.83314, 133.33312 -26.83371, 133.333599 -26.83449, 133.33385 -26.83488, 133.33424 -26.83544, 133.33461 -26.83593, 133.334939 -26.83634, 133.3354 -26.83688, 133.33598 -26.83751, 133.33636 -26.8379, 133.3366 -26.83814, 133.337099 -26.83859, 133.33743 -26.83889, 133.337809 -26.83921, 133.33841 -26.83968, 133.33875 -26.83994, 133.3391 -26.84019, 133.33976 -26.84064, 133.340309 -26.84098, 133.34064 -26.84118, 133.34107 -26.84143, 133.341649 -26.84174, 133.34181 -26.84182, 133.34226 -26.84205, 133.342819 -26.84234, 133.343079 -26.84248, 133.343709 -26.84281, 133.34409 -26.843, 133.34446 -26.84319, 133.34467 -26.8433, 133.34521 -26.84358, 133.34607 -26.84403, 133.34745 -26.84474, 133.34805 -26.84505, 133.34932 -26.84571, 133.3523 -26.84725, 133.35327 -26.84775, 133.3543 -26.84828, 133.35512 -26.8487, 133.35629 -26.84931, 133.35719 -26.84977, 133.35782 -26.85011, 133.358129 -26.85027, 133.35842 -26.85044, 133.359749 -26.85121, 133.36023 -26.8515, 133.36083 -26.85187, 133.361619 -26.8524, 133.36202 -26.85266, 133.36239 -26.85292, 133.36283 -26.85324, 133.36372 -26.8539, 133.36438 -26.85441, 133.36501 -26.85491, 133.36586 -26.85563, 133.366269 -26.85598, 133.36676 -26.85642, 133.36734 -26.85695, 133.36748 -26.85709, 133.36791 -26.85751, 133.36855 -26.85815, 133.3691 -26.85873, 133.36945 -26.85911, 133.369779 -26.85946, 133.37007 -26.8598, 133.37033 -26.8601, 133.37088 -26.86075, 133.37126 -26.86121, 133.371739 -26.86182, 133.372019 -26.8622, 133.37265 -26.86305, 133.37323 -26.86389, 133.37373 -26.86465, 133.37402 -26.86511, 133.374419 -26.86576, 133.37495 -26.86668, 133.375229 -26.86718, 133.37572 -26.86811, 133.37607 -26.86883, 133.37636 -26.86945, 133.376759 -26.87035, 133.377109 -26.8712, 133.37741 -26.87194, 133.377649 -26.87259, 133.37782 -26.87304, 133.37815 -26.87399, 133.37861 -26.87542, 133.37895 -26.8766, 133.37922 -26.8776, 133.37943 -26.87848, 133.379629 -26.87933, 133.379809 -26.88021, 133.37995 -26.88096, 133.380069 -26.88161, 133.38018 -26.88229, 133.3803 -26.88313, 133.380419 -26.8841, 133.380519 -26.88503, 133.38059 -26.88578, 133.38068 -26.88713, 133.38072 -26.88804, 133.38074 -26.88883, 133.38074 -26.8902, 133.38074 -26.89048, 133.38071 -26.89137, 133.38067 -26.89243, 133.380609 -26.89332, 133.38053 -26.89433, 133.38047 -26.89492, 133.38038 -26.89568, 133.38031 -26.89623, 133.38022 -26.89685, 133.380149 -26.89728, 133.37996 -26.89843, 133.37966 -26.89991, 133.37949 -26.9007, 133.37923 -26.90182, 133.37892 -26.90311, 133.37848 -26.90504, 133.378109 -26.90666, 133.3777 -26.9084, 133.377479 -26.90937, 133.3768 -26.91229, 133.376569 -26.91326, 133.376209 -26.91479, 133.375949 -26.91599, 133.37585 -26.91653, 133.375689 -26.91738, 133.375589 -26.91796, 133.37545 -26.91895, 133.37529 -26.92014, 133.3752 -26.92104, 133.37507 -26.92277, 133.37502 -26.92393, 133.37499 -26.92498, 133.37498 -26.926, 133.37499 -26.92673, 133.37502 -26.92757, 133.375049 -26.92816, 133.37508 -26.9288, 133.37513 -26.92953, 133.37521 -26.93038, 133.37534 -26.93154, 133.37544 -26.9323, 133.37561 -26.93345, 133.37574 -26.93421, 133.37599 -26.9355, 133.376299 -26.93692, 133.376929 -26.93954, 133.37719 -26.9406, 133.37732 -26.94117, 133.3774 -26.94146, 133.37755 -26.94213, 133.37777 -26.94304, 133.377929 -26.9437, 133.37839 -26.94563, 133.3787 -26.94687, 133.37897 -26.94803, 133.37907 -26.94842, 133.37933 -26.94952, 133.37946 -26.95004, 133.37958 -26.95057, 133.38009 -26.95272, 133.380599 -26.95481, 133.38108 -26.95682, 133.381229 -26.95743, 133.38152 -26.95863, 133.3817 -26.95937, 133.381859 -26.96001, 133.38202 -26.96055, 133.38235 -26.96148, 133.382569 -26.96202, 133.38282 -26.96256, 133.383029 -26.96299, 133.38315 -26.96321, 133.383479 -26.96379, 133.38386 -26.96442, 133.384179 -26.96489, 133.38447 -26.96529, 133.38475 -26.96566, 133.38513 -26.96612, 133.38547 -26.96652, 133.38596 -26.96705, 133.38627 -26.96736, 133.386869 -26.96792, 133.38729 -26.96829, 133.38779 -26.96869, 133.388299 -26.96908, 133.38874 -26.96939, 133.38919 -26.96969, 133.389569 -26.96993, 133.39026 -26.97034, 133.39116 -26.97082, 133.391809 -26.97112, 133.39241 -26.97138, 133.3928 -26.97153, 133.39349 -26.97179, 133.39414 -26.972, 133.39482 -26.9722, 133.395829 -26.97248, 133.396449 -26.97264, 133.397609 -26.97297, 133.39808 -26.97309, 133.398789 -26.97328, 133.4001 -26.97365, 133.40053 -26.97379, 133.4011 -26.97398, 133.401479 -26.97413, 133.40199 -26.97433, 133.4024 -26.97451, 133.402909 -26.97474, 133.40368 -26.97513, 133.40437 -26.97551, 133.405139 -26.97598, 133.40563 -26.97631, 133.40606 -26.97661, 133.406569 -26.977, 133.407109 -26.97744, 133.40745 -26.97774, 133.40781 -26.97807, 133.40834 -26.97859, 133.40886 -26.97914, 133.409089 -26.9794, 133.40955 -26.97995, 133.40983 -26.98032, 133.41018 -26.9808, 133.41062 -26.98146, 133.410959 -26.98204, 133.41112 -26.98232, 133.411319 -26.98269, 133.41169 -26.98346, 133.41187 -26.98387, 133.412029 -26.98427, 133.4122 -26.98473, 133.41235 -26.98519, 133.412489 -26.98565, 133.41261 -26.98607, 133.41273 -26.9865, 133.41288 -26.98706, 133.41306 -26.9877, 133.41322 -26.98829, 133.4136 -26.98968, 133.41389 -26.99073, 133.41424 -26.99199, 133.41442 -26.99259, 133.41478 -26.99371, 133.41513 -26.99471, 133.415439 -26.99553, 133.41556 -26.99582, 133.41601 -26.99691, 133.41623 -26.99741, 133.41655 -26.9981, 133.41683 -26.99869, 133.41709 -26.99921, 133.417579 -27.00016, 133.418 -27.00092, 133.41818 -27.00124, 133.418489 -27.00177, 133.4187 -27.00211, 133.41887 -27.0024, 133.41906 -27.0027, 133.41953 -27.00346, 133.42031 -27.00469, 133.420979 -27.00575, 133.42127 -27.00623, 133.42164 -27.00681, 133.421969 -27.00735, 133.42264 -27.00842, 133.423499 -27.00978, 133.42396 -27.01051, 133.424219 -27.01094, 133.4247 -27.0117, 133.42525 -27.01257, 133.42577 -27.01341, 133.42631 -27.01426, 133.42688 -27.01517, 133.42703 -27.01541, 133.42763 -27.01637, 133.42863 -27.01796, 133.42906 -27.01866, 133.43052 -27.02097, 133.43106 -27.02183, 133.43136 -27.0223, 133.4316 -27.0227, 133.43222 -27.02369, 133.43355 -27.02581, 133.43456 -27.02743, 133.43582 -27.02943, 133.436129 -27.02993, 133.436829 -27.03104, 133.437199 -27.03162, 133.43767 -27.03239, 133.43807 -27.03302, 133.43877 -27.03413, 133.43937 -27.03508, 133.43963 -27.03551, 133.44072 -27.03724, 133.44166 -27.03874, 133.44298 -27.04084, 133.44318 -27.04116, 133.44366 -27.04192, 133.444889 -27.04387, 133.44537 -27.04465, 133.446059 -27.04575, 133.44638 -27.04625, 133.44657 -27.04657, 133.44692 -27.04712, 133.44742 -27.04791, 133.44793 -27.04872, 133.44828 -27.04929, 133.449919 -27.05189, 133.45029 -27.05249, 133.45115 -27.05385, 133.4515 -27.05442, 133.45178 -27.05486, 133.45276 -27.05641, 133.45309 -27.05693, 133.45335 -27.05736, 133.4545 -27.05918, 133.45551 -27.06078, 133.45584 -27.0613, 133.45623 -27.06193, 133.45658 -27.06248, 133.45675 -27.06277, 133.45697 -27.06311, 133.45757 -27.06407, 133.45772 -27.0643, 133.4582 -27.06506, 133.45846 -27.06548, 133.459 -27.06637, 133.45939 -27.067, 133.459849 -27.06777, 133.46019 -27.06837, 133.46053 -27.06893, 133.46085 -27.06949, 133.4615 -27.07064, 133.46221 -27.07193, 133.46265 -27.07273, 133.46292 -27.07324, 133.463259 -27.07389, 133.46374 -27.07485, 133.46403 -27.0754, 133.46428 -27.0759, 133.46465 -27.07665, 133.465409 -27.07822, 133.46563 -27.07868, 133.4658 -27.07906, 133.46616 -27.07983, 133.46645 -27.08046, 133.466919 -27.08151, 133.46741 -27.08262, 133.46763 -27.08313, 133.46846 -27.08504, 133.468719 -27.08564, 133.46887 -27.08597, 133.469069 -27.08643, 133.469789 -27.08808, 133.47057 -27.08987, 133.470769 -27.09033, 133.47088 -27.09057, 133.47162 -27.09226, 133.47222 -27.09365, 133.472839 -27.09505, 133.47344 -27.09644, 133.47375 -27.09716, 133.474539 -27.09895, 133.474989 -27.09997, 133.4753 -27.10064, 133.47574 -27.10153, 133.47617 -27.10236, 133.47662 -27.10318, 133.477319 -27.10438, 133.477749 -27.10508, 133.47826 -27.10586, 133.478829 -27.1067, 133.47923 -27.10726, 133.48004 -27.10837, 133.4806 -27.10909, 133.48124 -27.10987, 133.48208 -27.11085, 133.48227 -27.11106, 133.48243 -27.11124, 133.48306 -27.11192, 133.4836 -27.1125, 133.48415 -27.11306, 133.48491 -27.1138, 133.48558 -27.11442, 133.48619 -27.11498, 133.48674 -27.11545, 133.48746 -27.11606, 133.48835 -27.11677, 133.48884 -27.11715, 133.48945 -27.11761, 133.49 -27.11802, 133.49078 -27.11857, 133.49183 -27.11928, 133.492539 -27.11974, 133.49292 -27.11997, 133.49408 -27.12067, 133.495759 -27.12164, 133.49633 -27.12196, 133.497269 -27.1225, 133.498619 -27.12325, 133.4995 -27.12377, 133.500589 -27.12439, 133.50116 -27.12472, 133.50223 -27.12533, 133.50267 -27.12557, 133.50352 -27.12606, 133.50491 -27.12685, 133.50591 -27.12742, 133.506959 -27.12805, 133.50786 -27.12861, 133.50871 -27.12917, 133.5095 -27.12971, 133.51046 -27.13041, 133.51123 -27.13099, 133.51181 -27.13144, 133.512 -27.13159, 133.51275 -27.1322, 133.51319 -27.13257, 133.51374 -27.13305, 133.514299 -27.13356, 133.514649 -27.13388, 133.515269 -27.13446, 133.51603 -27.13521, 133.51674 -27.13594, 133.51704 -27.13626, 133.5178 -27.13709, 133.51798 -27.1373, 133.51838 -27.13776, 133.51853 -27.13794, 133.51881 -27.13827, 133.519579 -27.13922, 133.51983 -27.13954, 133.51995 -27.1397, 133.52028 -27.14014, 133.52058 -27.14055, 133.52077 -27.14081, 133.52115 -27.14135, 133.52156 -27.14194, 133.52205 -27.14268, 133.522349 -27.14315, 133.52278 -27.14384, 133.523419 -27.14495, 133.52383 -27.14569, 133.524329 -27.14665, 133.52456 -27.14712, 133.5248 -27.14761, 133.52523 -27.14856, 133.5257 -27.14966, 133.52581 -27.14993, 133.52606 -27.15058, 133.52631 -27.15123, 133.52644 -27.1516, 133.52667 -27.15224, 133.52685 -27.1528, 133.52694 -27.15308, 133.52708 -27.15356, 133.52739 -27.15462, 133.52759 -27.15539, 133.527729 -27.15598, 133.52792 -27.15685, 133.52849 -27.15951, 133.528709 -27.16059, 133.52911 -27.16246, 133.52959 -27.1647, 133.52998 -27.16653, 133.530239 -27.16777, 133.530509 -27.16906, 133.5306 -27.16947, 133.53179 -27.17504, 133.532199 -27.17689, 133.532389 -27.17772, 133.532479 -27.17807, 133.532819 -27.17948, 133.53329 -27.18127, 133.53347 -27.18195, 133.53375 -27.18294, 133.53407 -27.18408, 133.53455 -27.18567, 133.53522 -27.1878, 133.53559 -27.18893, 133.536059 -27.1903, 133.53611 -27.19045, 133.53646 -27.19143, 133.53666 -27.192, 133.53671 -27.19213, 133.53678 -27.19234, 133.53711 -27.19325, 133.537569 -27.19444, 133.53778 -27.195, 133.538099 -27.19581, 133.53852 -27.19685, 133.53876 -27.19742, 133.53902 -27.19805, 133.539189 -27.19848, 133.53952 -27.19925, 133.53987 -27.20005, 133.54032 -27.20109, 133.5404 -27.20126, 133.54065 -27.20182, 133.54081 -27.20219, 133.54113 -27.20286, 133.54146 -27.20357, 133.54182 -27.20433, 133.542229 -27.2052, 133.54256 -27.20586, 133.54323 -27.20721, 133.543659 -27.20806, 133.54413 -27.20896, 133.544379 -27.20942, 133.54508 -27.21073, 133.54557 -27.21163, 133.54596 -27.21232, 133.546609 -27.21348, 133.547059 -27.21425, 133.54767 -27.21528, 133.54809 -27.21599, 133.54908 -27.21762, 133.549759 -27.21869, 133.55039 -27.21971, 133.55095 -27.22055, 133.551539 -27.22145, 133.5522 -27.22242, 133.5529 -27.22345, 133.55374 -27.22465, 133.554399 -27.22559, 133.55536 -27.2269, 133.55668 -27.2287, 133.55756 -27.2299, 133.56044 -27.23381, 133.56287 -27.23712, 133.56466 -27.23954, 133.56505 -27.24007, 133.565779 -27.24108, 133.5662 -27.24164, 133.5677 -27.24368, 133.569979 -27.24678, 133.57114 -27.24836, 133.572219 -27.24983, 133.57351 -27.25155, 133.575189 -27.25374, 133.57639 -27.25526, 133.57829 -27.25759, 133.57874 -27.25814, 133.57924 -27.25874, 133.58115 -27.26097, 133.582439 -27.26244, 133.584309 -27.26453, 133.58617 -27.26653, 133.58791 -27.26836, 133.588789 -27.26926, 133.589859 -27.27035, 133.59153 -27.272, 133.5924 -27.27289, 133.593809 -27.27429, 133.594519 -27.275, 133.59582 -27.2763, 133.59637 -27.27684, 133.59689 -27.27735, 133.59736 -27.27783, 133.598189 -27.27866, 133.599089 -27.27956, 133.59975 -27.28022, 133.600619 -27.28109, 133.60129 -27.28175, 133.601859 -27.28234, 133.602939 -27.28345, 133.60376 -27.28431, 133.60534 -27.28598, 133.60642 -27.28717, 133.60729 -27.28812, 133.60863 -27.28962, 133.60986 -27.29104, 133.61116 -27.29257, 133.61232 -27.29396, 133.613409 -27.29529, 133.61382 -27.29579, 133.61492 -27.29716, 133.61569 -27.29812, 133.61613 -27.29867, 133.617179 -27.29997, 133.61723 -27.30003, 133.61812 -27.30112, 133.61875 -27.30186, 133.6193 -27.30247, 133.61953 -27.30272, 133.62037 -27.30361, 133.62068 -27.30392, 133.62087 -27.30411, 133.62106 -27.3043, 133.62123 -27.30446, 133.62204 -27.30526, 133.62276 -27.3059, 133.62307 -27.30618, 133.62388 -27.30688, 133.62457 -27.30745, 133.62521 -27.30797, 133.626309 -27.30887, 133.62638 -27.30893, 133.62646 -27.309, 133.626759 -27.30925, 133.62733 -27.30973, 133.62822 -27.31054, 133.628899 -27.31118, 133.62948 -27.31175, 133.63055 -27.31285, 133.63143 -27.31381, 133.6322 -27.3147, 133.632939 -27.3156, 133.63334 -27.31609, 133.633649 -27.3165, 133.633999 -27.31696, 133.6345 -27.31765, 133.63474 -27.31799, 133.63513 -27.31856, 133.635619 -27.3193, 133.6368 -27.32113, 133.63878 -27.32422, 133.64041 -27.32676, 133.64112 -27.32786, 133.64674 -27.33661, 133.64826 -27.33897, 133.65114 -27.34346, 133.65357 -27.34724, 133.655949 -27.35094, 133.65797 -27.35408, 133.6585 -27.35493, 133.659249 -27.35609, 133.659799 -27.35693, 133.66045 -27.35794, 133.661859 -27.36014, 133.66344 -27.3626, 133.663829 -27.36321, 133.66611 -27.36675, 133.6673 -27.36862, 133.669189 -27.37155, 133.67049 -27.37357, 133.671069 -27.37447, 133.675279 -27.38102, 133.67766 -27.38473, 133.67917 -27.38707, 133.68064 -27.38937, 133.68383 -27.39432, 133.684859 -27.39587, 133.68598 -27.39747, 133.68699 -27.39885, 133.68784 -27.39997, 133.68893 -27.40137, 133.68968 -27.40229, 133.69063 -27.40343, 133.69173 -27.40471, 133.69272 -27.40582, 133.69323 -27.40637, 133.69415 -27.40736, 133.69487 -27.4081, 133.69558 -27.40882, 133.696679 -27.40992, 133.69774 -27.41094, 133.69826 -27.41142, 133.69878 -27.4119, 133.700279 -27.41326, 133.70244 -27.41521, 133.70315 -27.41587, 133.7041 -27.41678, 133.705379 -27.41802, 133.706899 -27.41955, 133.7082 -27.4209, 133.7087 -27.42144, 133.709849 -27.42268, 133.71063 -27.42356, 133.711639 -27.4247, 133.712259 -27.42542, 133.71341 -27.42679, 133.71431 -27.42789, 133.71516 -27.42895, 133.71575 -27.42972, 133.71633 -27.43048, 133.71703 -27.43141, 133.717899 -27.4326, 133.71909 -27.43428, 133.719959 -27.43555, 133.72081 -27.43682, 133.72142 -27.43776, 133.72218 -27.43898, 133.722569 -27.43961, 133.72315 -27.44058, 133.72413 -27.44224, 133.72503 -27.44373, 133.72586 -27.44506, 133.72637 -27.44585, 133.72735 -27.44731, 133.727399 -27.44738, 133.72809 -27.44839, 133.728749 -27.4493, 133.7295 -27.45033, 133.73022 -27.45129, 133.73095 -27.45222, 133.73191 -27.45341, 133.73253 -27.45417, 133.733129 -27.45489, 133.73372 -27.45557, 133.7346 -27.45656, 133.735279 -27.45732, 133.73628 -27.4584, 133.737079 -27.45924, 133.73812 -27.46034, 133.73831 -27.46054, 133.73951 -27.46182, 133.741369 -27.46379, 133.742709 -27.46521, 133.74401 -27.46659, 133.74537 -27.46804, 133.746749 -27.4695, 133.747909 -27.47072, 133.74935 -27.47225, 133.75071 -27.47369, 133.751929 -27.47499, 133.753099 -27.47623, 133.75501 -27.47824, 133.75681 -27.48015, 133.75789 -27.4813, 133.759279 -27.48277, 133.76123 -27.48484, 133.7619 -27.48555, 133.76371 -27.48746, 133.7645 -27.4883, 133.76699 -27.49094, 133.768239 -27.49226, 133.7704 -27.49455, 133.772169 -27.49642, 133.77364 -27.49798, 133.77563 -27.5001, 133.77581 -27.50029, 133.776919 -27.50146, 133.77721 -27.50176, 133.77814 -27.50274, 133.77864 -27.50327, 133.78477 -27.50977, 133.78654 -27.51164, 133.78844 -27.51367, 133.78978 -27.51514, 133.79058 -27.51604, 133.79129 -27.51683, 133.79198 -27.51762, 133.79317 -27.519, 133.79435 -27.5204, 133.79525 -27.52149, 133.79667 -27.52323, 133.79759 -27.52439, 133.79864 -27.52573, 133.79935 -27.52665, 133.799659 -27.52706, 133.800829 -27.52862, 133.80304 -27.53163, 133.805579 -27.53508, 133.80733 -27.53747, 133.80928 -27.54011, 133.81056 -27.54185, 133.813619 -27.54602, 133.81734 -27.55107, 133.81905 -27.5534, 133.819709 -27.5543, 133.81994 -27.55461, 133.82 -27.55469, 133.82082 -27.55579, 133.82137 -27.55654, 133.82299 -27.55875, 133.829039 -27.56697, 133.83066 -27.56917, 133.83236 -27.57148, 133.83371 -27.57332, 133.83465 -27.57459, 133.835739 -27.57608, 133.83784 -27.57893, 133.83982 -27.58162, 133.84131 -27.58365, 133.84267 -27.5855, 133.844 -27.5873, 133.84624 -27.59034, 133.84683 -27.59115, 133.848719 -27.59371, 133.850959 -27.59675, 133.8522 -27.59841, 133.85333 -27.59988, 133.85483 -27.60178, 133.855529 -27.60266, 133.85658 -27.60394, 133.857049 -27.60451, 133.857149 -27.60462, 133.85792 -27.60554, 133.85797 -27.6056, 133.85873 -27.60651, 133.859479 -27.60738, 133.86017 -27.60817, 133.860459 -27.6085, 133.861079 -27.6092, 133.861989 -27.61022, 133.863689 -27.61208, 133.864749 -27.61322, 133.865929 -27.61446, 133.86737 -27.61595, 133.86926 -27.61786, 133.87141 -27.61995, 133.87261 -27.62109, 133.87333 -27.62177, 133.873529 -27.62195, 133.874059 -27.62244, 133.87446 -27.62282, 133.87501 -27.62331, 133.87592 -27.62414, 133.87673 -27.62486, 133.87773 -27.62575, 133.87887 -27.62674, 133.88066 -27.62827, 133.88236 -27.62968, 133.88424 -27.63121, 133.88566 -27.63235, 133.88676 -27.63321, 133.88824 -27.63434, 133.89029 -27.63588, 133.8914 -27.6367, 133.89193 -27.63709, 133.892789 -27.63772, 133.89298 -27.63786, 133.89594 -27.64003, 133.89671 -27.6406, 133.89783 -27.64142, 133.90775 -27.64872, 133.910339 -27.65062, 133.91237 -27.65211, 133.914539 -27.65371, 133.91834 -27.65649, 133.92124 -27.65863, 133.9241 -27.66072, 133.925819 -27.66199, 133.92802 -27.66361, 133.929049 -27.66436, 133.92981 -27.66494, 133.93132 -27.66615, 133.93248 -27.66712, 133.93327 -27.66782, 133.934239 -27.6687, 133.93482 -27.66925, 133.935499 -27.6699, 133.93587 -27.67027, 133.93651 -27.67093, 133.93708 -27.67153, 133.93788 -27.67239, 133.93883 -27.67346, 133.93955 -27.67431, 133.94021 -27.67511, 133.940699 -27.67575, 133.94135 -27.67658, 133.941769 -27.67714, 133.942309 -27.67789, 133.942929 -27.67878, 133.943649 -27.67986, 133.944269 -27.68085, 133.94496 -27.68199, 133.94547 -27.68288, 133.946059 -27.68392, 133.946769 -27.68523, 133.947219 -27.68602, 133.94753 -27.68655, 133.94809 -27.68747, 133.94906 -27.68901, 133.94988 -27.69026, 133.95008 -27.69055, 133.950719 -27.69146, 133.95181 -27.69296, 133.952509 -27.69393, 133.95317 -27.69489, 133.95373 -27.69574, 133.95416 -27.69643, 133.95462 -27.69719, 133.95489 -27.69767, 133.95552 -27.69884, 133.956189 -27.70014, 133.95658 -27.70089, 133.95678 -27.70124, 133.95714 -27.70184, 133.957699 -27.70271, 133.958229 -27.70347, 133.95882 -27.70426, 133.95928 -27.70485, 133.95942 -27.70502, 133.959859 -27.70553, 133.960379 -27.70611, 133.96088 -27.70665, 133.961369 -27.70716, 133.96214 -27.70793, 133.96287 -27.70864, 133.963349 -27.70908, 133.964 -27.70968, 133.96465 -27.71024, 133.9652 -27.7107, 133.96615 -27.71146, 133.96733 -27.71238, 133.96858 -27.71335, 133.969349 -27.71396, 133.97016 -27.71464, 133.97097 -27.71534, 133.97197 -27.71625, 133.97243 -27.7167, 133.97309 -27.71733, 133.9735 -27.71775, 133.97406 -27.71835, 133.97485 -27.71921, 133.975529 -27.71999, 133.975869 -27.72039, 133.97663 -27.72133, 133.97693 -27.72171, 133.977399 -27.72233, 133.977499 -27.72246, 133.977759 -27.72283, 133.97836 -27.72368, 133.9787 -27.72417, 133.97912 -27.72481, 133.979719 -27.72577, 133.98024 -27.72664, 133.980719 -27.7275, 133.98103 -27.72806, 133.981069 -27.72814, 133.98164 -27.72928, 133.98204 -27.73011, 133.98265 -27.7314, 133.98374 -27.73373, 133.985549 -27.73756, 133.98631 -27.73916, 133.98665 -27.73984, 133.98704 -27.7406, 133.98776 -27.7419, 133.98821 -27.74269, 133.98849 -27.74319, 133.989309 -27.74451, 133.9897 -27.74513, 133.99033 -27.74609, 133.99089 -27.74691, 133.99156 -27.74784, 133.99214 -27.74863, 133.99286 -27.74958, 133.99354 -27.75044, 133.99395 -27.75094, 133.994 -27.751, 133.99494 -27.75212, 133.99559 -27.75286, 133.99654 -27.75391, 133.99753 -27.75496, 133.998269 -27.75571, 133.9991 -27.75653, 134.00081 -27.75822, 134.002 -27.75941, 134.00375 -27.76113, 134.00478 -27.76216, 134.00675 -27.76411, 134.00754 -27.76491, 134.00826 -27.76568, 134.00845 -27.76589, 134.00939 -27.76696, 134.010269 -27.76803, 134.01084 -27.76876, 134.0112 -27.76923, 134.01186 -27.77012, 134.01256 -27.77115, 134.01334 -27.77237, 134.01386 -27.77323, 134.01444 -27.77424, 134.01486 -27.77501, 134.01544 -27.77616, 134.01593 -27.77719, 134.01632 -27.77807, 134.01678 -27.7792, 134.01695 -27.77961, 134.01728 -27.78051, 134.01763 -27.78152, 134.01789 -27.78233, 134.01827 -27.78365, 134.01857 -27.78485, 134.01879 -27.78584, 134.01905 -27.78719, 134.01907 -27.78728, 134.0192 -27.78807, 134.01927 -27.78856, 134.01937 -27.78928, 134.019479 -27.79029, 134.01956 -27.79117, 134.01961 -27.79199, 134.01965 -27.79281, 134.019669 -27.79397, 134.019659 -27.79499, 134.01963 -27.79745, 134.01961 -27.79924, 134.01959 -27.80096, 134.01962 -27.80255, 134.019669 -27.80424, 134.019669 -27.80432, 134.0197 -27.80485, 134.01973 -27.80547, 134.0198 -27.80645, 134.01991 -27.80788, 134.02004 -27.80927, 134.020119 -27.80997, 134.020299 -27.81139, 134.02054 -27.81307, 134.02077 -27.81448, 134.021099 -27.81625, 134.02138 -27.81763, 134.02176 -27.81931, 134.02204 -27.82048, 134.0224 -27.82187, 134.02258 -27.82251, 134.02291 -27.82367, 134.02332 -27.82502, 134.02372 -27.82627, 134.02402 -27.82717, 134.02511 -27.83041, 134.02652 -27.83462, 134.02829 -27.83989, 134.02956 -27.84367, 134.03039 -27.84617, 134.03242 -27.85221, 134.03276 -27.85324, 134.03376 -27.85617, 134.034429 -27.85808, 134.034529 -27.85836, 134.03529 -27.86045, 134.035609 -27.86131, 134.036679 -27.86413, 134.03762 -27.86649, 134.03884 -27.86946, 134.03966 -27.87138, 134.04036 -27.873, 134.04114 -27.87476, 134.041699 -27.87597, 134.042679 -27.87809, 134.04326 -27.87932, 134.04407 -27.88103, 134.04529 -27.88348, 134.046709 -27.88627, 134.047159 -27.88713, 134.04768 -27.88812, 134.04817 -27.88904, 134.04897 -27.89053, 134.050109 -27.89259, 134.05069 -27.89363, 134.051369 -27.89482, 134.051899 -27.89574, 134.05204 -27.89598, 134.05257 -27.89688, 134.05301 -27.89763, 134.05363 -27.89869, 134.05367 -27.89876, 134.05439 -27.89994, 134.05472 -27.90048, 134.05535 -27.90152, 134.05541 -27.90161, 134.05578 -27.90221, 134.05625 -27.90294, 134.05648 -27.90332, 134.05667 -27.90361, 134.05676 -27.90378, 134.05699 -27.90413, 134.057279 -27.90458, 134.057819 -27.90542, 134.058709 -27.9068, 134.059589 -27.90814, 134.06001 -27.90876, 134.06027 -27.90915, 134.06081 -27.90995, 134.061659 -27.9112, 134.06257 -27.91252, 134.06361 -27.914, 134.06474 -27.91559, 134.065949 -27.91726, 134.0663 -27.91773, 134.06759 -27.91946, 134.06786 -27.91982, 134.06913 -27.92149, 134.07065 -27.92346, 134.07301 -27.92649, 134.07396 -27.92771, 134.0755 -27.92968, 134.07775 -27.93257, 134.078589 -27.93365, 134.082519 -27.93869, 134.084219 -27.94088, 134.0863 -27.94355, 134.08792 -27.94563, 134.08972 -27.94794, 134.090769 -27.94929, 134.09196 -27.95081, 134.09331 -27.95256, 134.09469 -27.95433, 134.09528 -27.95509, 134.09536 -27.95519, 134.096409 -27.95656, 134.09724 -27.95769, 134.098019 -27.95878, 134.09848 -27.95945, 134.099179 -27.96047, 134.09975 -27.96134, 134.10072 -27.96286, 134.10162 -27.96434, 134.10217 -27.96528, 134.1029 -27.96657, 134.103469 -27.96761, 134.10404 -27.96868, 134.10462 -27.96982, 134.1051 -27.97079, 134.10565 -27.97195, 134.10627 -27.97331, 134.10646 -27.97374, 134.10698 -27.97495, 134.10735 -27.97585, 134.10776 -27.97687, 134.108319 -27.97834, 134.10874 -27.97952, 134.10935 -27.98128, 134.10968 -27.98232, 134.110009 -27.98341, 134.11031 -27.98444, 134.11057 -27.98537, 134.11087 -27.98651, 134.11111 -27.98748, 134.111349 -27.98851, 134.111539 -27.98936, 134.111709 -27.99011, 134.11193 -27.99123, 134.112169 -27.99252, 134.11232 -27.99342, 134.11246 -27.99429, 134.11258 -27.99511, 134.11272 -27.99616, 134.11282 -27.99696, 134.113 -27.99853, 134.11313 -28.00002, 134.11322 -28.00121, 134.11328 -28.0023, 134.11334 -28.0034, 134.11336 -28.00421, 134.11339 -28.00522, 134.1134 -28.00629, 134.11339 -28.00788, 134.11337 -28.00873, 134.11331 -28.01031, 134.11326 -28.01119, 134.11316 -28.01262, 134.11307 -28.01374, 134.1129 -28.0154, 134.112779 -28.01646, 134.11265 -28.01744, 134.112529 -28.01827, 134.11232 -28.01963, 134.11213 -28.02074, 134.11184 -28.02224, 134.11164 -28.02323, 134.11141 -28.02425, 134.11113 -28.02545, 134.11076 -28.02698, 134.11003 -28.02994, 134.1094 -28.03255, 134.10827 -28.03716, 134.107949 -28.03848, 134.10757 -28.04011, 134.107319 -28.04141, 134.10716 -28.04235, 134.107049 -28.04309, 134.1069 -28.04418, 134.106779 -28.04528, 134.106709 -28.04607, 134.10663 -28.04718, 134.106599 -28.04805, 134.10656 -28.04905, 134.10655 -28.05005, 134.10655 -28.05069, 134.10657 -28.05149, 134.10663 -28.05287, 134.106699 -28.05383, 134.10681 -28.05497, 134.10693 -28.05605, 134.10713 -28.05743, 134.10727 -28.05831, 134.107419 -28.05912, 134.10758 -28.05993, 134.10774 -28.06065, 134.10789 -28.06131, 134.10812 -28.0622, 134.108229 -28.06261, 134.10845 -28.0634, 134.10869 -28.06422, 134.108929 -28.06498, 134.109479 -28.06658, 134.109839 -28.06755, 134.11022 -28.06849, 134.110449 -28.06905, 134.110809 -28.06989, 134.1112 -28.07075, 134.11167 -28.0717, 134.11187 -28.07209, 134.11215 -28.07265, 134.112509 -28.07334, 134.11308 -28.07437, 134.11379 -28.07558, 134.114389 -28.07655, 134.114939 -28.0774, 134.11585 -28.07873, 134.11613 -28.07912, 134.1168 -28.08004, 134.11732 -28.08072, 134.11768 -28.08118, 134.1184 -28.08207, 134.1188 -28.08254, 134.11944 -28.08328, 134.11989 -28.08379, 134.12064 -28.0846, 134.12159 -28.08561, 134.12266 -28.08675, 134.12342 -28.08755, 134.124 -28.08818, 134.12468 -28.08896, 134.12537 -28.08979, 134.126029 -28.09062, 134.12655 -28.09131, 134.12708 -28.09203, 134.12742 -28.09252, 134.127739 -28.09299, 134.128189 -28.09366, 134.128819 -28.09466, 134.12931 -28.09548, 134.12977 -28.09628, 134.130149 -28.09698, 134.130599 -28.09785, 134.13095 -28.09857, 134.13128 -28.09928, 134.13172 -28.1003, 134.13206 -28.10109, 134.13245 -28.1021, 134.13264 -28.10264, 134.13288 -28.10333, 134.133119 -28.10409, 134.133299 -28.10465, 134.13351 -28.1054, 134.13368 -28.106, 134.13386 -28.10673, 134.13407 -28.10764, 134.13423 -28.1084, 134.13439 -28.10926, 134.13452 -28.11001, 134.13468 -28.11115, 134.13478 -28.11206, 134.13485 -28.11279, 134.13493 -28.11387, 134.13496 -28.11445, 134.13498 -28.11494, 134.134989 -28.11552, 134.134999 -28.1161, 134.134989 -28.11696, 134.13495 -28.1181, 134.134909 -28.11883, 134.13485 -28.11965, 134.13479 -28.1202, 134.13477 -28.12045, 134.134719 -28.12092, 134.13467 -28.12134, 134.13459 -28.12188, 134.13431 -28.12376, 134.13408 -28.12517, 134.13381 -28.12693, 134.1337 -28.12767, 134.133379 -28.12973, 134.13319 -28.13093, 134.133 -28.13218, 134.13269 -28.13415, 134.13244 -28.13578, 134.132 -28.13863, 134.131859 -28.13957, 134.13167 -28.14085, 134.13153 -28.14195, 134.131409 -28.14295, 134.13128 -28.1442, 134.13116 -28.14562, 134.13107 -28.14686, 134.13099 -28.14805, 134.13095 -28.14903, 134.13092 -28.14985, 134.130879 -28.1514, 134.130869 -28.15297, 134.13089 -28.15437, 134.13092 -28.15545, 134.13098 -28.15714, 134.131049 -28.15825, 134.131139 -28.15954, 134.13122 -28.16047, 134.131319 -28.16155, 134.131419 -28.16246, 134.13164 -28.16427, 134.13179 -28.16534, 134.13199 -28.16665, 134.13228 -28.16833, 134.13247 -28.16935, 134.13274 -28.17071, 134.13315 -28.17255, 134.13343 -28.17374, 134.13369 -28.17477, 134.13386 -28.17542, 134.134189 -28.17663, 134.13452 -28.17777, 134.134809 -28.17874, 134.1353 -28.18028, 134.13565 -28.18133, 134.13602 -28.18241, 134.13641 -28.18347, 134.136779 -28.18446, 134.13719 -28.18552, 134.13764 -28.18663, 134.13815 -28.18784, 134.13863 -28.18895, 134.139659 -28.19136, 134.14035 -28.19294, 134.140819 -28.19403, 134.14155 -28.19573, 134.14223 -28.19733, 134.14283 -28.19872, 134.143239 -28.19967, 134.144749 -28.20317, 134.1457 -28.20539, 134.14648 -28.20722, 134.14757 -28.20975, 134.14839 -28.21164, 134.149 -28.21306, 134.14947 -28.21422, 134.14972 -28.21487, 134.15008 -28.21583, 134.15044 -28.21686, 134.15079 -28.21789, 134.15099 -28.21851, 134.15117 -28.21907, 134.15136 -28.21973, 134.15167 -28.22081, 134.15187 -28.22157, 134.15223 -28.22298, 134.15241 -28.22377, 134.15265 -28.22485, 134.15283 -28.22575, 134.15295 -28.22639, 134.15315 -28.22753, 134.15329 -28.22846, 134.153439 -28.22947, 134.15356 -28.23046, 134.15367 -28.23146, 134.15373 -28.23205, 134.153789 -28.23273, 134.15387 -28.23382, 134.15395 -28.23519, 134.153969 -28.23571, 134.15399 -28.23645, 134.154 -28.23745, 134.154 -28.23858, 134.153979 -28.23997, 134.15394 -28.24176, 134.15393 -28.2429, 134.15393 -28.24456, 134.15394 -28.24584, 134.15396 -28.24698, 134.15401 -28.24895, 134.154059 -28.2502, 134.15409 -28.251, 134.15414 -28.25182, 134.154149 -28.25201, 134.154239 -28.25371, 134.15429 -28.25457, 134.15435 -28.25541, 134.154429 -28.2565, 134.15456 -28.25801, 134.15457 -28.2581, 134.15467 -28.25917, 134.1548 -28.26048, 134.154969 -28.26202, 134.15516 -28.26363, 134.155329 -28.26491, 134.1556 -28.26681, 134.155759 -28.26788, 134.15606 -28.26979, 134.15636 -28.27153, 134.156849 -28.27433, 134.157389 -28.2774, 134.15777 -28.27959, 134.158269 -28.28242, 134.15869 -28.28485, 134.15898 -28.28645, 134.159269 -28.28814, 134.1595 -28.28944, 134.1596 -28.29003, 134.15973 -28.29077, 134.15974 -28.29085, 134.159879 -28.29165, 134.16021 -28.29348, 134.16071 -28.29635, 134.16073 -28.29647, 134.16074 -28.29652, 134.16101 -28.29808, 134.16119 -28.2991, 134.16192 -28.30321, 134.16264 -28.30731, 134.16308 -28.30984, 134.16341 -28.31172, 134.1637 -28.31327, 134.16386 -28.31409, 134.16402 -28.31494, 134.164369 -28.31649, 134.16485 -28.31858, 134.165169 -28.31986, 134.165529 -28.32122, 134.16591 -28.32261, 134.16629 -28.32395, 134.16646 -28.32451, 134.167059 -28.32642, 134.16734 -28.3273, 134.16774 -28.32851, 134.16824 -28.32993, 134.16856 -28.33084, 134.16891 -28.3318, 134.16952 -28.33337, 134.1702 -28.33508, 134.17065 -28.33618, 134.17118 -28.33755, 134.171619 -28.3387, 134.171889 -28.3394, 134.17194 -28.33954, 134.17203 -28.33979, 134.17231 -28.34057, 134.17258 -28.3413, 134.17298 -28.34243, 134.17333 -28.34345, 134.17372 -28.34458, 134.17414 -28.34587, 134.17426 -28.34623, 134.17456 -28.34716, 134.17461 -28.34732, 134.174829 -28.34801, 134.17526 -28.34943, 134.1756 -28.35055, 134.17576 -28.35108, 134.17607 -28.35219, 134.17651 -28.35378, 134.17686 -28.35508, 134.177069 -28.3559, 134.17739 -28.35716, 134.1776 -28.35802, 134.17784 -28.359, 134.1781 -28.36012, 134.178789 -28.36322, 134.17911 -28.36469, 134.17943 -28.36608, 134.17974 -28.36751, 134.179939 -28.3684, 134.18053 -28.37107, 134.181009 -28.37322, 134.181649 -28.37613, 134.181999 -28.37769, 134.182449 -28.37975, 134.18278 -28.38127, 134.18313 -28.38308, 134.18315 -28.38316, 134.18322 -28.38354, 134.183349 -28.38423, 134.18356 -28.38542, 134.18372 -28.38638, 134.1839 -28.38748, 134.18404 -28.38842, 134.18426 -28.38992, 134.1844 -28.39098, 134.184509 -28.39189, 134.184699 -28.3936, 134.1848 -28.39458, 134.18489 -28.39556, 134.184959 -28.39625, 134.18501 -28.39693, 134.1851 -28.39806, 134.18518 -28.39933, 134.18526 -28.40073, 134.185309 -28.40178, 134.18536 -28.40323, 134.185409 -28.40488, 134.18542 -28.40607, 134.18542 -28.40745, 134.18542 -28.40902, 134.18542 -28.41022, 134.185409 -28.41241, 134.185409 -28.41376, 134.185399 -28.41489, 134.185399 -28.41813, 134.18539 -28.4197, 134.18539 -28.42, 134.18539 -28.42109, 134.18539 -28.42151, 134.18542 -28.42224, 134.18544 -28.42261, 134.18547 -28.42299, 134.18551 -28.42344, 134.18557 -28.42389, 134.18566 -28.42453, 134.18571 -28.42479, 134.18581 -28.42534, 134.18596 -28.42602, 134.18609 -28.42655, 134.18614 -28.42671, 134.18629 -28.42726, 134.18646 -28.42781, 134.186559 -28.42809, 134.18671 -28.4285, 134.18694 -28.4291, 134.18716 -28.42964, 134.18753 -28.43044, 134.18786 -28.4311, 134.18831 -28.43191, 134.18866 -28.43248, 134.18905 -28.4331, 134.189429 -28.43365, 134.18993 -28.43434, 134.19027 -28.43477, 134.19056 -28.43513, 134.191139 -28.4358, 134.19153 -28.43621, 134.19205 -28.43675, 134.192389 -28.43711, 134.193009 -28.43775, 134.19359 -28.43834, 134.194099 -28.43887, 134.19452 -28.43931, 134.19482 -28.43961, 134.19546 -28.44028, 134.19603 -28.44092, 134.19639 -28.44136, 134.196589 -28.44161, 134.19689 -28.44201, 134.19733 -28.44265, 134.19773 -28.44327, 134.19793 -28.44362, 134.198129 -28.44399, 134.19842 -28.44455, 134.19864 -28.44501, 134.19888 -28.44558, 134.19899 -28.44587, 134.19924 -28.44652, 134.19942 -28.44707, 134.19954 -28.4475, 134.199639 -28.44787, 134.19972 -28.44823, 134.19981 -28.44864, 134.1999 -28.44918, 134.19999 -28.44978, 134.20005 -28.45024, 134.20007 -28.45051, 134.200099 -28.45108, 134.20011 -28.4516, 134.20011 -28.45224, 134.200089 -28.45262, 134.20006 -28.45304, 134.20002 -28.45347, 134.19997 -28.4539, 134.1999 -28.45431, 134.1998 -28.45489, 134.19968 -28.45542, 134.19957 -28.45587, 134.19941 -28.45644, 134.19922 -28.45701, 134.19853 -28.45902, 134.198299 -28.45972, 134.1981 -28.46037, 134.197939 -28.46098, 134.19778 -28.46172, 134.19763 -28.46245, 134.19753 -28.4631, 134.19742 -28.46394, 134.19736 -28.46477, 134.197319 -28.46556, 134.197309 -28.46608, 134.19733 -28.46684, 134.19738 -28.46771, 134.19743 -28.46824, 134.19748 -28.46865, 134.1976 -28.46945, 134.197669 -28.46988, 134.197849 -28.47074, 134.19797 -28.47124, 134.19807 -28.4716, 134.19825 -28.47223, 134.19844 -28.47282, 134.19871 -28.47356, 134.19889 -28.47403, 134.19925 -28.47485, 134.19951 -28.47543, 134.1999 -28.47632, 134.20023 -28.47705, 134.20084 -28.47843, 134.20159 -28.4801, 134.202069 -28.4812, 134.202409 -28.48195, 134.20301 -28.4833, 134.20306 -28.48341, 134.20312 -28.48354, 134.20366 -28.48475, 134.20425 -28.48611, 134.2047 -28.48711, 134.20506 -28.48789, 134.20557 -28.48891, 134.20595 -28.48965, 134.20643 -28.49053, 134.20685 -28.49125, 134.20727 -28.49194, 134.20777 -28.49274, 134.20803 -28.49313, 134.20817 -28.49334, 134.20837 -28.49365, 134.20884 -28.49434, 134.20919 -28.49482, 134.21008 -28.49599, 134.21043 -28.49643, 134.211019 -28.49716, 134.21152 -28.49774, 134.21204 -28.49834, 134.21264 -28.49899, 134.21319 -28.49958, 134.213889 -28.5003, 134.21461 -28.501, 134.2153 -28.50164, 134.21623 -28.50248, 134.21714 -28.50325, 134.21848 -28.50437, 134.21935 -28.50515, 134.21998 -28.50573, 134.22039 -28.50612, 134.22109 -28.50681, 134.22177 -28.50751, 134.22244 -28.50823, 134.22298 -28.50883, 134.22354 -28.50947, 134.22386 -28.50986, 134.22392 -28.50993, 134.22432 -28.51042, 134.22441 -28.51053, 134.22445 -28.51058, 134.22499 -28.51127, 134.22547 -28.5119, 134.226 -28.51263, 134.22668 -28.51362, 134.22724 -28.51448, 134.22786 -28.51547, 134.22832 -28.51627, 134.2289 -28.51732, 134.22936 -28.51818, 134.23024 -28.51988, 134.23098 -28.52127, 134.23133 -28.52196, 134.23209 -28.52341, 134.23297 -28.52508, 134.23406 -28.52718, 134.23523 -28.5294, 134.23566 -28.53024, 134.23609 -28.53106, 134.23712 -28.53303, 134.23782 -28.53437, 134.23825 -28.53519, 134.23881 -28.53624, 134.23948 -28.53754, 134.24066 -28.53979, 134.24112 -28.54065, 134.24144 -28.54121, 134.24173 -28.5417, 134.2423 -28.54263, 134.24276 -28.54333, 134.24315 -28.54391, 134.24355 -28.54447, 134.24382 -28.54484, 134.24428 -28.54546, 134.2449 -28.54625, 134.24555 -28.54703, 134.24627 -28.54785, 134.24704 -28.54867, 134.24769 -28.54936, 134.24843 -28.55008, 134.24935 -28.55094, 134.24976 -28.55131, 134.25033 -28.5518, 134.25091 -28.55229, 134.25146 -28.55273, 134.25222 -28.55332, 134.25297 -28.55387, 134.25346 -28.55423, 134.25398 -28.55458, 134.25455 -28.55497, 134.25549 -28.55557, 134.25611 -28.55596, 134.25676 -28.55638, 134.25784 -28.55706, 134.25893 -28.55775, 134.25944 -28.55807, 134.25999 -28.55843, 134.26047 -28.55875, 134.26076 -28.55895, 134.26143 -28.55942, 134.26193 -28.55979, 134.26241 -28.56016, 134.26303 -28.56067, 134.26368 -28.56123, 134.2642 -28.56169, 134.26479 -28.56225, 134.26538 -28.56285, 134.26599 -28.56349, 134.26656 -28.56413, 134.26695 -28.56459, 134.26732 -28.56503, 134.26785 -28.56573, 134.26835 -28.56641, 134.26871 -28.56694, 134.26912 -28.56756, 134.2695 -28.56817, 134.26989 -28.56881, 134.27031 -28.56948, 134.27093 -28.57047, 134.27122 -28.5709, 134.2717 -28.57161, 134.27229 -28.57245, 134.27288 -28.57326, 134.27326 -28.57375, 134.2739 -28.57457, 134.27445 -28.57524, 134.27509 -28.57601, 134.27567 -28.57667, 134.27615 -28.57721, 134.27674 -28.57786, 134.2772 -28.57835, 134.27769 -28.57885, 134.27805 -28.57922, 134.27828 -28.57945, 134.27839 -28.57956, 134.27902 -28.58017, 134.27947 -28.58059, 134.27964 -28.58075, 134.28042 -28.58146, 134.28108 -28.58204, 134.28178 -28.58264, 134.28264 -28.58334, 134.28341 -28.58396, 134.28436 -28.58468, 134.28502 -28.58518, 134.28598 -28.58586, 134.28692 -28.58652, 134.28872 -28.58775, 134.28933 -28.5882, 134.28991 -28.58865, 134.29053 -28.58919, 134.29113 -28.58974, 134.29141 -28.59003, 134.29176 -28.5904, 134.29211 -28.59079, 134.29252 -28.59126, 134.29272 -28.59151, 134.29303 -28.59191, 134.29343 -28.59247, 134.29383 -28.59308, 134.29425 -28.59379, 134.29444 -28.59413, 134.29464 -28.59451, 134.29488 -28.59501, 134.29512 -28.59554, 134.29532 -28.59604, 134.29541 -28.59629, 134.29568 -28.59708, 134.29595 -28.59794, 134.29641 -28.59945, 134.29667 -28.60021, 134.29696 -28.60102, 134.29726 -28.6018, 134.29757 -28.60257, 134.29792 -28.60337, 134.29825 -28.60411, 134.29866 -28.60497, 134.29899 -28.60564, 134.29962 -28.60684, 134.30046 -28.60832, 134.30105 -28.60928, 134.30164 -28.61021, 134.30223 -28.61108, 134.30279 -28.61188, 134.30378 -28.61321, 134.30486 -28.61455, 134.3053 -28.61507, 134.30592 -28.61578, 134.30658 -28.61652, 134.30728 -28.61726, 134.30799 -28.61798, 134.30861 -28.61859, 134.30946 -28.61939, 134.31012 -28.62, 134.31094 -28.62072, 134.31162 -28.62129, 134.31234 -28.62188, 134.31288 -28.6223, 134.31346 -28.62275, 134.31444 -28.62347, 134.31515 -28.62398, 134.31565 -28.62432, 134.31579 -28.62441, 134.31664 -28.62498, 134.31747 -28.6255, 134.31757 -28.62556, 134.31819 -28.62594, 134.3189 -28.62636, 134.3194 -28.62666, 134.3202 -28.6271, 134.32076 -28.62741, 134.32178 -28.62793, 134.32255 -28.62832, 134.32367 -28.62886, 134.32456 -28.62926, 134.32545 -28.62965, 134.32659 -28.63012, 134.32722 -28.63036, 134.32798 -28.63065, 134.32908 -28.63105, 134.3302 -28.63143, 134.33243 -28.63212, 134.3334 -28.63243, 134.33424 -28.63272, 134.3349 -28.63296, 134.33571 -28.63327, 134.33625 -28.63349, 134.33673 -28.6337, 134.33738 -28.63398, 134.33788 -28.63422, 134.33842 -28.63448, 134.3391 -28.63482, 134.33976 -28.63517, 134.34052 -28.63559, 134.34125 -28.63602, 134.34215 -28.63658, 134.34335 -28.63737, 134.34474 -28.63831, 134.34561 -28.63889, 134.34711 -28.6399, 134.34897 -28.64114, 134.35022 -28.64198, 134.35074 -28.64231, 134.35128 -28.64264, 134.35177 -28.64292, 134.35209 -28.64309, 134.35275 -28.64343, 134.35343 -28.64374, 134.35358 -28.6438, 134.35405 -28.644, 134.35453 -28.64419, 134.35519 -28.64443, 134.35564 -28.64457, 134.356 -28.64468, 134.35675 -28.64489, 134.35732 -28.64504, 134.35804 -28.64519, 134.35866 -28.64531, 134.35931 -28.64541, 134.35988 -28.64548, 134.36116 -28.64562, 134.36241 -28.64577, 134.36301 -28.64585, 134.36345 -28.64592, 134.36422 -28.64607, 134.36475 -28.64618, 134.36538 -28.64632, 134.36598 -28.64648, 134.36634 -28.64658, 134.36715 -28.64683, 134.36767 -28.647, 134.36834 -28.64724, 134.36891 -28.64746, 134.36943 -28.64768, 134.36995 -28.64791, 134.3705 -28.64816, 134.37083 -28.64832, 134.37129 -28.64855, 134.37162 -28.64873, 134.3723 -28.64912, 134.37306 -28.64957, 134.37359 -28.64992, 134.37406 -28.65024, 134.37459 -28.65063, 134.37503 -28.65096, 134.3756 -28.65143, 134.37601 -28.65178, 134.37665 -28.65235, 134.37728 -28.65297, 134.37761 -28.65331, 134.37783 -28.65355, 134.37846 -28.65427, 134.37896 -28.65483, 134.37952 -28.65543, 134.38013 -28.65603, 134.38058 -28.65644, 134.38104 -28.65684, 134.38159 -28.65727, 134.38213 -28.65767, 134.38268 -28.65805, 134.38296 -28.65824, 134.3834 -28.65852, 134.3839 -28.65881, 134.38426 -28.65901, 134.38505 -28.65943, 134.38543 -28.65961, 134.38596 -28.65985, 134.38644 -28.66005, 134.38715 -28.66033, 134.38787 -28.66058, 134.38842 -28.66076, 134.38904 -28.66093, 134.38959 -28.66108, 134.39017 -28.66121, 134.39131 -28.66143, 134.39303 -28.66171, 134.39391 -28.66186, 134.39479 -28.66202, 134.39565 -28.66221, 134.39631 -28.66236, 134.39727 -28.66262, 134.39784 -28.66278, 134.39789 -28.66279, 134.39841 -28.66295, 134.39891 -28.66311, 134.39982 -28.66343, 134.40011 -28.66353, 134.40034 -28.66362, 134.40098 -28.66387, 134.40182 -28.66422, 134.40262 -28.66457, 134.40359 -28.66504, 134.40449 -28.6655, 134.40514 -28.66586, 134.40582 -28.66626, 134.40657 -28.66672, 134.40735 -28.66723, 134.4083 -28.66787, 134.40949 -28.66869, 134.41207 -28.67045, 134.41312 -28.67116, 134.41369 -28.67153, 134.41422 -28.67186, 134.4149 -28.67225, 134.4158 -28.67272, 134.41655 -28.67308, 134.41719 -28.67337, 134.41786 -28.67364, 134.41856 -28.67391, 134.41916 -28.67412, 134.41978 -28.67432, 134.42039 -28.67451, 134.42116 -28.67471, 134.42162 -28.67482, 134.42287 -28.67511, 134.4241 -28.6754, 134.42569 -28.67576, 134.42687 -28.67603, 134.42734 -28.67615, 134.42818 -28.67638, 134.42884 -28.67657, 134.42951 -28.67679, 134.43012 -28.67699, 134.43069 -28.6772, 134.43122 -28.6774, 134.43186 -28.67767, 134.43261 -28.67799, 134.43314 -28.67823, 134.43372 -28.67851, 134.43421 -28.67875, 134.43478 -28.67905, 134.43557 -28.67949, 134.43618 -28.67986, 134.43689 -28.6803, 134.43778 -28.6809, 134.4384 -28.68134, 134.43881 -28.68166, 134.43941 -28.68212, 134.43997 -28.68258, 134.4404 -28.68295, 134.44117 -28.68365, 134.44157 -28.68404, 134.44187 -28.68433, 134.44245 -28.68493, 134.44282 -28.68534, 134.4432 -28.68577, 134.44379 -28.68648, 134.44433 -28.68719, 134.44498 -28.68809, 134.44576 -28.68925, 134.44629 -28.69004, 134.44726 -28.6915, 134.44778 -28.69227, 134.4486 -28.69351, 134.44952 -28.69487, 134.45028 -28.69602, 134.45054 -28.69642, 134.45072 -28.69668, 134.45128 -28.69752, 134.4518 -28.6983, 134.45226 -28.69899, 134.45274 -28.69971, 134.45322 -28.70042, 134.4537 -28.70113, 134.45416 -28.70182, 134.45468 -28.7026, 134.45533 -28.70357, 134.45617 -28.70482, 134.45663 -28.70551, 134.45698 -28.70603, 134.45746 -28.70675, 134.45832 -28.70805, 134.45912 -28.70924, 134.45983 -28.71031, 134.46038 -28.71112, 134.46091 -28.71187, 134.46131 -28.71241, 134.4617 -28.71294, 134.46204 -28.71339, 134.46239 -28.71384, 134.46329 -28.71494, 134.46407 -28.71585, 134.46465 -28.71651, 134.46553 -28.71746, 134.46594 -28.71789, 134.46678 -28.71874, 134.46781 -28.71975, 134.46895 -28.7208, 134.47038 -28.72204, 134.4717 -28.72311, 134.47294 -28.72408, 134.47397 -28.72484, 134.47519 -28.72569, 134.47732 -28.72718, 134.47885 -28.72826, 134.47985 -28.72904, 134.48033 -28.72942, 134.481 -28.72997, 134.48161 -28.73048, 134.48228 -28.73107, 134.48327 -28.73198, 134.48402 -28.73271, 134.48469 -28.73338, 134.48552 -28.73426, 134.48617 -28.73497, 134.48705 -28.73601, 134.48779 -28.7369, 134.48867 -28.73807, 134.48937 -28.73903, 134.48982 -28.73968, 134.49026 -28.74035, 134.49122 -28.74188, 134.49174 -28.74268, 134.49221 -28.74339, 134.49284 -28.74427, 134.49341 -28.74504, 134.49375 -28.74548, 134.49439 -28.74627, 134.4949 -28.74689, 134.4954 -28.74748, 134.49576 -28.74788, 134.49622 -28.74841, 134.49767 -28.75006, 134.49873 -28.75128, 134.49938 -28.75202, 134.49967 -28.75235, 134.5 -28.75272, 134.50113 -28.75401, 134.50165 -28.7546, 134.50227 -28.75531, 134.50429 -28.75762, 134.50491 -28.75832, 134.50585 -28.7594, 134.50675 -28.76042, 134.50832 -28.76222, 134.50929 -28.76337, 134.50962 -28.76376, 134.51015 -28.76441, 134.51052 -28.76486, 134.5111 -28.76557, 134.51162 -28.76623, 134.51239 -28.76721, 134.51298 -28.76798, 134.51346 -28.76862, 134.514 -28.76934, 134.51443 -28.76994, 134.51484 -28.7705, 134.51566 -28.77165, 134.51642 -28.77274, 134.51692 -28.7735, 134.51731 -28.77408, 134.51794 -28.77504, 134.51835 -28.77568, 134.51874 -28.77629, 134.51933 -28.77723, 134.51967 -28.77779, 134.52014 -28.77858, 134.52081 -28.77971, 134.52134 -28.78064, 134.52185 -28.78155, 134.52238 -28.78251, 134.52304 -28.78371, 134.52364 -28.78481, 134.52401 -28.78548, 134.52434 -28.78609, 134.5252 -28.78765, 134.52584 -28.78881, 134.52622 -28.78951, 134.52674 -28.79047, 134.52721 -28.79131, 134.52729 -28.79146, 134.52758 -28.79199, 134.52772 -28.79225, 134.52795 -28.79267, 134.52847 -28.79362, 134.52901 -28.79457, 134.52938 -28.79517, 134.52955 -28.79542, 134.52988 -28.79588, 134.53021 -28.79632, 134.53065 -28.79688, 134.53116 -28.79746, 134.53145 -28.79777, 134.53193 -28.79827, 134.53245 -28.79875, 134.53278 -28.79905, 134.53323 -28.79943, 134.53368 -28.79978, 134.53421 -28.80017, 134.53452 -28.80039, 134.53496 -28.80068, 134.53557 -28.80106, 134.53605 -28.80134, 134.53642 -28.80155, 134.53696 -28.80184, 134.53772 -28.8022, 134.53836 -28.80248, 134.53893 -28.8027, 134.53981 -28.80303, 134.54133 -28.80356, 134.54247 -28.80397, 134.5437 -28.8044, 134.54465 -28.80473, 134.54533 -28.80498, 134.54607 -28.80527, 134.54656 -28.80548, 134.54695 -28.80566, 134.54753 -28.80594, 134.54805 -28.80621, 134.54879 -28.80663, 134.54927 -28.80692, 134.54973 -28.80722, 134.55025 -28.80759, 134.5507 -28.80792, 134.55101 -28.80816, 134.5515 -28.80855, 134.55211 -28.80909, 134.55247 -28.80944, 134.55284 -28.80981, 134.55348 -28.81049, 134.55398 -28.81108, 134.55424 -28.81141, 134.55472 -28.81206, 134.55492 -28.81234, 134.55528 -28.8129, 134.55575 -28.81367, 134.55614 -28.81432, 134.55646 -28.81484, 134.55706 -28.81583, 134.55778 -28.81701, 134.55843 -28.81809, 134.55911 -28.8192, 134.55953 -28.81989, 134.55994 -28.82056, 134.56072 -28.8218, 134.56188 -28.82357, 134.56341 -28.82581, 134.56435 -28.82713, 134.56542 -28.82859, 134.56697 -28.83061, 134.56777 -28.83163, 134.56888 -28.83301, 134.56999 -28.83433, 134.57089 -28.83537, 134.57207 -28.83671, 134.5728 -28.83751, 134.5735 -28.83828, 134.57435 -28.83919, 134.57502 -28.8399, 134.5751 -28.83999, 134.57548 -28.84037, 134.57607 -28.84093, 134.57665 -28.84148, 134.57704 -28.84183, 134.57749 -28.84222, 134.57822 -28.84282, 134.57889 -28.84334, 134.57955 -28.84383, 134.58034 -28.84438, 134.58108 -28.84487, 134.58168 -28.84525, 134.58257 -28.84578, 134.58339 -28.84624, 134.58394 -28.84653, 134.58488 -28.847, 134.58581 -28.84743, 134.58669 -28.84781, 134.58752 -28.84815, 134.58916 -28.84881, 134.59077 -28.84945, 134.59156 -28.84979, 134.59245 -28.85019, 134.59332 -28.8506, 134.59409 -28.85099, 134.59478 -28.85135, 134.59567 -28.85184, 134.59644 -28.85229, 134.59703 -28.85265, 134.59776 -28.85311, 134.59852 -28.85362, 134.59944 -28.85427, 134.60014 -28.8548, 134.60066 -28.85519, 134.60143 -28.85582, 134.60207 -28.85636, 134.60288 -28.85707, 134.60353 -28.85766, 134.60467 -28.85869, 134.6073 -28.86106, 134.60847 -28.86211, 134.60956 -28.86309, 134.61051 -28.86394, 134.61239 -28.86563, 134.6136 -28.86672, 134.61441 -28.86748, 134.61502 -28.86807, 134.61558 -28.86864, 134.61609 -28.86918, 134.6166 -28.86972, 134.61697 -28.87013, 134.61741 -28.87063, 134.61785 -28.87115, 134.61838 -28.87179, 134.61868 -28.87216, 134.61923 -28.87288, 134.61978 -28.8736, 134.62049 -28.87462, 134.62092 -28.87525, 134.62126 -28.87577, 134.62156 -28.87624, 134.62158 -28.87628, 134.62181 -28.87665, 134.62213 -28.87718, 134.62295 -28.87861, 134.62383 -28.88013, 134.62444 -28.88114, 134.62523 -28.88239, 134.62618 -28.88385, 134.62691 -28.88495, 134.6275 -28.88579, 134.62823 -28.88682, 134.62873 -28.88751, 134.62932 -28.88831, 134.62974 -28.88885, 134.63056 -28.88993, 134.63146 -28.89105, 134.63201 -28.89173, 134.63276 -28.89263, 134.63358 -28.89359, 134.63522 -28.89542, 134.63619 -28.89648, 134.63671 -28.89702, 134.63747 -28.89782, 134.63866 -28.89901, 134.63979 -28.90012, 134.64104 -28.9013, 134.64217 -28.90233, 134.64316 -28.90321, 134.64448 -28.90434, 134.6489 -28.90811, 134.64994 -28.90899, 134.65052 -28.90949, 134.6512 -28.9101, 134.65176 -28.91063, 134.6525 -28.91137, 134.65284 -28.91171, 134.65318 -28.91208, 134.65351 -28.91245, 134.65363 -28.91258, 134.65414 -28.91315, 134.65447 -28.91354, 134.65505 -28.91425, 134.65546 -28.91477, 134.65595 -28.91543, 134.65649 -28.91618, 134.65691 -28.91681, 134.65723 -28.9173, 134.65761 -28.91791, 134.65799 -28.91856, 134.65836 -28.9192, 134.65863 -28.91971, 134.65909 -28.9206, 134.66026 -28.92287, 134.66206 -28.92637, 134.66377 -28.92971, 134.66403 -28.93021, 134.66476 -28.93164, 134.66599 -28.93402, 134.66644 -28.93486, 134.66685 -28.93561, 134.66739 -28.93656, 134.66796 -28.93753, 134.66838 -28.93824, 134.66884 -28.93898, 134.6695 -28.94002, 134.6703 -28.94124, 134.67105 -28.94234, 134.67177 -28.94336, 134.67253 -28.94439, 134.67321 -28.9453, 134.67376 -28.94601, 134.67519 -28.94787, 134.67579 -28.94865, 134.67699 -28.95021, 134.67738 -28.95074, 134.67787 -28.95143, 134.67827 -28.95203, 134.67864 -28.9526, 134.67897 -28.95312, 134.67935 -28.95375, 134.67963 -28.95424, 134.68004 -28.95501, 134.68039 -28.95569, 134.68068 -28.95628, 134.68116 -28.95734, 134.6814 -28.95791, 134.68159 -28.95839, 134.6819 -28.95922, 134.68223 -28.96016, 134.68238 -28.96065, 134.68268 -28.96166, 134.68284 -28.96224, 134.68305 -28.96311, 134.68319 -28.96378, 134.68331 -28.96441, 134.68345 -28.96522, 134.68355 -28.9659, 134.68364 -28.96663, 134.68371 -28.96733, 134.68378 -28.96829, 134.68384 -28.96966, 134.68387 -28.97037, 134.68391 -28.97158, 134.68396 -28.97272, 134.68399 -28.97374, 134.68401 -28.9742, 134.68404 -28.97484, 134.68411 -28.97653, 134.68419 -28.97773, 134.68428 -28.97883, 134.68437 -28.97987, 134.68448 -28.98083, 134.6846 -28.98184, 134.68479 -28.98316, 134.68496 -28.98432, 134.68509 -28.98507, 134.68528 -28.98612, 134.68541 -28.98671, 134.68553 -28.98724, 134.68573 -28.98801, 134.68595 -28.98877, 134.68609 -28.98922, 134.68632 -28.98992, 134.68658 -28.99063, 134.68691 -28.99145, 134.68709 -28.99187, 134.68734 -28.99243, 134.6877 -28.99318, 134.6881 -28.99395, 134.68842 -28.99453, 134.6888 -28.99519, 134.68903 -28.99556, 134.68929 -28.99597, 134.68954 -28.99636, 134.68999 -28.99702, 134.69054 -28.99778, 134.69086 -28.99819, 134.69126 -28.99868, 134.6916 -28.99907, 134.69197 -28.99946, 134.69222 -28.99972, 134.69245 -28.99995, 134.69288 -29.00036, 134.69339 -29.00081, 134.69391 -29.00124, 134.6947 -29.00185, 134.6951 -29.00213, 134.69564 -29.00249, 134.69629 -29.00289, 134.69689 -29.00323, 134.69744 -29.00352, 134.69822 -29.00389, 134.6988 -29.00415, 134.6994 -29.00439, 134.69996 -29.0046, 134.701 -29.00494, 134.70212 -29.00526, 134.70415 -29.00582, 134.70607 -29.00635, 134.70708 -29.00663, 134.70768 -29.00681, 134.70828 -29.00701, 134.7089 -29.00723, 134.70979 -29.00759, 134.71042 -29.00786, 134.71119 -29.00824, 134.7117 -29.00852, 134.71232 -29.00888, 134.71289 -29.00922, 134.71353 -29.00965, 134.71396 -29.00996, 134.71436 -29.01027, 134.7149 -29.0107, 134.71525 -29.011, 134.71591 -29.0116, 134.71634 -29.01202, 134.71667 -29.01236, 134.71695 -29.01267, 134.71744 -29.01324, 134.71778 -29.01367, 134.71796 -29.0139, 134.71852 -29.01467, 134.71894 -29.01527, 134.71905 -29.01543, 134.7203 -29.01717, 134.72043 -29.01735, 134.72059 -29.01758, 134.72084 -29.01793, 134.72104 -29.01819, 134.72131 -29.01852, 134.72171 -29.01899, 134.72183 -29.01912, 134.72209 -29.01938, 134.72253 -29.01981, 134.72306 -29.0203, 134.72333 -29.02052, 134.72366 -29.02078, 134.72417 -29.02116, 134.72461 -29.02146, 134.72498 -29.0217, 134.72547 -29.022, 134.72611 -29.02236, 134.72667 -29.02263, 134.72714 -29.02285, 134.72754 -29.02302, 134.728 -29.0232, 134.72843 -29.02336, 134.72924 -29.02362, 134.72993 -29.02381, 134.73077 -29.02401, 134.73149 -29.02414, 134.73228 -29.02425, 134.73292 -29.02432, 134.73357 -29.02437, 134.73419 -29.02439, 134.73483 -29.02439, 134.73535 -29.02438, 134.7359 -29.02434, 134.73642 -29.0243, 134.73695 -29.02424, 134.7377 -29.02412, 134.73844 -29.02397, 134.73862 -29.02394, 134.73905 -29.02384, 134.73998 -29.02361, 134.74096 -29.02337, 134.74137 -29.02328, 134.74208 -29.02313, 134.74258 -29.02305, 134.7429 -29.023, 134.74318 -29.02296, 134.74403 -29.02286, 134.74454 -29.02282, 134.74502 -29.02279, 134.74564 -29.02276, 134.74636 -29.02275, 134.74687 -29.02276, 134.74738 -29.02278, 134.74821 -29.02284, 134.74914 -29.02293, 134.74998 -29.02305, 134.75105 -29.02321, 134.75399 -29.02365, 134.75453 -29.02373, 134.75565 -29.02389, 134.75646 -29.02399, 134.75659 -29.02325, 134.75662 -29.02302, 134.75668 -29.02261, 134.75682 -29.02152, 134.75683 -29.02132, 134.75683 -29.02067, 134.75678 -29.01992, 134.75671 -29.0195, 134.75656 -29.0188, 134.75644 -29.0184, 134.7563 -29.01802, 134.7561961168 -29.0177540591)" +-23.7108321,133.8751299,-25.1963823,133.2011792,6,Alice Springs,"LINESTRING (133.8751569917 -23.7107670799, 133.87526 -23.71081, 133.875409 -23.71088, 133.8735 -23.71341, 133.87431 -23.71376, 133.8731 -23.71538, 133.87321 -23.71547, 133.872809 -23.71599, 133.87241 -23.71651, 133.872279 -23.71668, 133.872089 -23.71693, 133.871829 -23.71726, 133.871559 -23.71762, 133.87137 -23.71786, 133.87104 -23.71828, 133.87078 -23.71863, 133.870579 -23.71889, 133.87041 -23.71911, 133.87029 -23.71928, 133.870129 -23.71949, 133.869869 -23.71983, 133.86964 -23.72013, 133.869419 -23.72041, 133.869149 -23.72076, 133.86908 -23.72085, 133.86903 -23.72091, 133.86898 -23.72097, 133.86893 -23.72102, 133.86885 -23.72109, 133.86881 -23.72112, 133.86876 -23.72115, 133.868689 -23.72119, 133.86863 -23.72122, 133.86853 -23.72127, 133.86841 -23.72133, 133.868259 -23.7214, 133.867989 -23.72152, 133.86797 -23.72157, 133.86795 -23.7216, 133.86792 -23.72164, 133.86788 -23.72169, 133.86783 -23.72174, 133.86783 -23.72179, 133.86783 -23.72184, 133.86782 -23.72191, 133.86778 -23.72199, 133.86773 -23.72205, 133.86766 -23.72211, 133.86756 -23.72217, 133.867449 -23.72221, 133.86732 -23.72229, 133.86722 -23.72236, 133.86714 -23.72243, 133.867079 -23.7225, 133.86703 -23.72256, 133.86698 -23.72264, 133.86694 -23.72273, 133.866909 -23.72283, 133.86689 -23.72295, 133.86687 -23.72307, 133.86683 -23.72325, 133.8668 -23.72335, 133.86675 -23.72345, 133.86669 -23.72354, 133.86658 -23.72367, 133.866469 -23.72377, 133.86632 -23.72392, 133.86622 -23.72402, 133.86613 -23.72413, 133.86607 -23.72422, 133.86599 -23.72439, 133.86595 -23.72451, 133.86585 -23.72481, 133.865839 -23.72488, 133.865829 -23.72495, 133.86578 -23.72527, 133.865739 -23.72547, 133.8657 -23.72562, 133.86559 -23.72598, 133.86545 -23.7263, 133.86542 -23.72636, 133.865289 -23.72661, 133.865029 -23.72703, 133.864759 -23.72747, 133.864659 -23.72763, 133.864409 -23.72804, 133.86416 -23.72844, 133.86355 -23.72944, 133.86337 -23.72974, 133.86326 -23.72994, 133.86318 -23.7301, 133.86311 -23.73026, 133.86303 -23.73046, 133.86293 -23.7308, 133.86291 -23.73088, 133.86286 -23.73111, 133.8628 -23.73154, 133.86277 -23.732, 133.862779 -23.73233, 133.86281 -23.73254, 133.86284 -23.73272, 133.862869 -23.73293, 133.86289 -23.73301, 133.86293 -23.73315, 133.86295 -23.73323, 133.86301 -23.73342, 133.86312 -23.73368, 133.86325 -23.73396, 133.86328 -23.73402, 133.86343 -23.73428, 133.86358 -23.73451, 133.86381 -23.73485, 133.86444 -23.73578, 133.86454 -23.73592, 133.8647 -23.73615, 133.86474 -23.73621, 133.86487 -23.73641, 133.86499 -23.73658, 133.86509 -23.73669, 133.865289 -23.73698, 133.86555 -23.73736, 133.865739 -23.7376, 133.86582 -23.73772, 133.86586 -23.73778, 133.86596 -23.73795, 133.86621 -23.73835, 133.86642 -23.7387, 133.8667 -23.73912, 133.86696 -23.7395, 133.867079 -23.73968, 133.86728 -23.73999, 133.86734 -23.74008, 133.86737 -23.74013, 133.8674 -23.74018, 133.86783 -23.74086, 133.86787 -23.74092, 133.867899 -23.74097, 133.868159 -23.74138, 133.86865 -23.74216, 133.86871 -23.74226, 133.86885 -23.74247, 133.8691 -23.74283, 133.8693 -23.74318, 133.86965 -23.74375, 133.86975 -23.74395, 133.87003 -23.7444, 133.87026 -23.7448, 133.87034 -23.74496, 133.87044 -23.74516, 133.87055 -23.7454, 133.87065 -23.74564, 133.87079 -23.74603, 133.8708 -23.74607, 133.87092 -23.74647, 133.87098 -23.7467, 133.87106 -23.74709, 133.8711 -23.74732, 133.871119 -23.74748, 133.871119 -23.74751, 133.87117 -23.74789, 133.871199 -23.74808, 133.87125 -23.7485, 133.871289 -23.74887, 133.871289 -23.74891, 133.87132 -23.74915, 133.87135 -23.74943, 133.87136 -23.74952, 133.8714 -23.7499, 133.87146 -23.75044, 133.871469 -23.75057, 133.87152 -23.75106, 133.87155 -23.75129, 133.87155 -23.75132, 133.87159 -23.75167, 133.87163 -23.75202, 133.871749 -23.75318, 133.87186 -23.75428, 133.87195 -23.75511, 133.872 -23.75562, 133.87212 -23.75683, 133.87214 -23.757, 133.87215 -23.75715, 133.87215 -23.75719, 133.87216 -23.75727, 133.87225 -23.75764, 133.87231 -23.758, 133.87234 -23.75819, 133.87244 -23.75864, 133.87253 -23.75895, 133.872539 -23.75899, 133.87266 -23.7594, 133.872729 -23.75975, 133.87277 -23.76015, 133.872809 -23.76048, 133.87284 -23.76068, 133.872909 -23.76112, 133.87295 -23.76136, 133.872989 -23.76157, 133.8731 -23.76208, 133.87311 -23.76212, 133.87316 -23.76239, 133.87319 -23.76261, 133.87321 -23.76285, 133.87321 -23.76314, 133.8732 -23.7633, 133.87319 -23.76346, 133.87319 -23.76356, 133.87319 -23.76414, 133.87322 -23.76437, 133.87323 -23.76444, 133.87325 -23.76461, 133.873269 -23.76472, 133.87342 -23.76551, 133.8735 -23.76593, 133.87355 -23.76619, 133.8736 -23.76647, 133.87365 -23.7667, 133.87369 -23.76691, 133.87382 -23.76767, 133.87386 -23.76789, 133.87393 -23.76822, 133.87414 -23.76936, 133.87429 -23.77014, 133.87437 -23.77055, 133.8744 -23.77069, 133.87445 -23.77099, 133.87447 -23.7711, 133.87453 -23.77141, 133.87456 -23.77155, 133.87462 -23.77164, 133.87466 -23.77181, 133.874699 -23.77203, 133.87475 -23.77227, 133.87476 -23.77234, 133.874789 -23.77249, 133.87486 -23.77288, 133.87491 -23.77317, 133.87503 -23.77381, 133.87509 -23.77419, 133.875139 -23.7745, 133.87513 -23.77466, 133.87518 -23.77489, 133.87522 -23.77508, 133.875229 -23.77515, 133.875319 -23.7756, 133.87539 -23.77595, 133.875409 -23.77604, 133.87562 -23.77718, 133.87564 -23.77729, 133.87585 -23.77823, 133.87593 -23.77852, 133.876049 -23.77898, 133.87607 -23.77905, 133.87626 -23.77971, 133.87628 -23.77977, 133.87633 -23.77997, 133.87635 -23.78003, 133.876669 -23.78111, 133.87674 -23.78137, 133.87677 -23.78148, 133.87705 -23.78242, 133.877299 -23.78329, 133.87782 -23.78512, 133.87825 -23.78668, 133.878359 -23.78706, 133.87848 -23.78748, 133.8785 -23.78754, 133.87861 -23.78791, 133.87878 -23.78847, 133.87883 -23.78865, 133.87888 -23.78885, 133.87892 -23.78898, 133.87896 -23.78912, 133.879089 -23.78962, 133.87856 -23.78975, 133.87844 -23.78978, 133.87796 -23.7899, 133.87679 -23.79018, 133.8762 -23.79036, 133.87555 -23.79058, 133.875059 -23.79077, 133.87445 -23.79101, 133.87356 -23.79138, 133.872269 -23.79193, 133.87172 -23.79216, 133.87062 -23.79263, 133.87 -23.7929, 133.86989 -23.79295, 133.869599 -23.79308, 133.869409 -23.79317, 133.86918 -23.7933, 133.86882 -23.79352, 133.86853 -23.79373, 133.86829 -23.79391, 133.86819 -23.79399, 133.86791 -23.79422, 133.8673 -23.79476, 133.86711 -23.79492, 133.86693 -23.79508, 133.866289 -23.79563, 133.865839 -23.796, 133.865739 -23.79608, 133.86523 -23.79655, 133.86506 -23.7967, 133.8647 -23.79701, 133.863319 -23.79817, 133.862969 -23.79848, 133.86183 -23.79946, 133.86147 -23.79976, 133.86097 -23.80021, 133.859569 -23.80143, 133.85791 -23.80291, 133.857329 -23.80342, 133.85704 -23.80367, 133.85559 -23.80493, 133.85537 -23.80512, 133.85412 -23.8062, 133.85304 -23.80714, 133.85057 -23.80927, 133.85009 -23.80968, 133.84958 -23.81015, 133.84932 -23.81038, 133.848899 -23.81071, 133.84832 -23.81123, 133.84789 -23.81161, 133.847379 -23.81212, 133.846839 -23.81265, 133.84585 -23.81366, 133.8452 -23.81438, 133.844259 -23.81546, 133.843619 -23.81619, 133.84302 -23.81684, 133.84267 -23.81724, 133.8423 -23.81765, 133.84153 -23.81854, 133.840759 -23.81943, 133.839329 -23.8211, 133.83864 -23.82188, 133.83832 -23.82225, 133.8363 -23.82448, 133.835919 -23.82492, 133.83526 -23.82566, 133.8333 -23.82792, 133.83251 -23.82882, 133.83187 -23.82949, 133.83114 -23.83031, 133.83097 -23.8305, 133.83068 -23.83083, 133.83057 -23.83096, 133.83007 -23.83157, 133.82994 -23.83171, 133.82943 -23.83231, 133.82878 -23.83305, 133.82565 -23.83661, 133.822399 -23.8403, 133.82146 -23.84137, 133.818909 -23.84427, 133.81771 -23.84563, 133.81696 -23.8465, 133.81503 -23.84869, 133.81396 -23.84991, 133.81248 -23.8516, 133.81204 -23.85207, 133.81198 -23.85213, 133.81182 -23.85232, 133.811669 -23.85248, 133.81143 -23.85276, 133.811209 -23.85303, 133.81065 -23.85372, 133.8099 -23.85459, 133.809429 -23.85519, 133.808889 -23.85584, 133.80818 -23.85665, 133.807449 -23.85751, 133.80689 -23.85817, 133.80658 -23.85851, 133.806109 -23.85913, 133.80596 -23.85932, 133.80554 -23.85982, 133.80519 -23.86022, 133.8046 -23.86087, 133.80349 -23.86216, 133.80215 -23.86371, 133.801719 -23.86423, 133.80134 -23.8647, 133.80115 -23.86496, 133.80081 -23.86536, 133.800099 -23.8662, 133.79844 -23.86817, 133.79629 -23.87071, 133.79212 -23.87566, 133.79078 -23.87724, 133.78783 -23.88069, 133.7863 -23.88248, 133.7852 -23.88376, 133.78304 -23.88628, 133.781939 -23.88755, 133.77873 -23.89128, 133.77519 -23.8954, 133.7717 -23.89944, 133.76952 -23.90196, 133.768139 -23.90357, 133.76721 -23.90468, 133.76434 -23.90805, 133.763479 -23.90906, 133.763029 -23.90958, 133.76279 -23.90983, 133.76261 -23.91003, 133.76211 -23.91054, 133.7607 -23.91194, 133.75969 -23.91295, 133.75842 -23.91421, 133.75604 -23.91658, 133.7528 -23.9198, 133.75054 -23.92205, 133.74935 -23.92324, 133.74857 -23.92401, 133.74756 -23.92503, 133.7466 -23.92597, 133.74542 -23.92718, 133.74398 -23.92858, 133.74301 -23.92955, 133.741109 -23.93144, 133.73759 -23.93492, 133.73495 -23.93754, 133.733049 -23.93941, 133.72984 -23.94258, 133.72787 -23.94458, 133.723549 -23.94901, 133.719439 -23.95321, 133.71859 -23.95409, 133.71519 -23.95757, 133.71408 -23.95868, 133.71305 -23.95961, 133.7114 -23.96098, 133.70912 -23.96285, 133.70505 -23.96619, 133.70326 -23.96768, 133.69724 -23.97269, 133.69421 -23.97521, 133.69295 -23.97625, 133.692839 -23.97634, 133.69272 -23.97644, 133.69217 -23.9769, 133.69138 -23.97756, 133.691049 -23.97784, 133.68936 -23.97924, 133.68902 -23.97952, 133.68814 -23.98025, 133.68776 -23.98057, 133.68753 -23.98076, 133.68116 -23.98605, 133.678769 -23.98804, 133.67695 -23.98954, 133.67106 -23.9944, 133.66851 -23.9965, 133.6678 -23.99709, 133.66425 -24.00002, 133.66241 -24.00153, 133.66135 -24.00245, 133.6603 -24.00343, 133.659519 -24.0042, 133.658729 -24.00502, 133.65776 -24.00608, 133.65689 -24.00711, 133.65596 -24.00829, 133.655399 -24.00905, 133.65516 -24.00937, 133.65472 -24.01, 133.65421 -24.01076, 133.6527 -24.01297, 133.6501 -24.01677, 133.6467 -24.02174, 133.64514 -24.02403, 133.641969 -24.02866, 133.635969 -24.03743, 133.634899 -24.03899, 133.63354 -24.04097, 133.632839 -24.04198, 133.631939 -24.0432, 133.63121 -24.04414, 133.63037 -24.04518, 133.6296 -24.04608, 133.62878 -24.04702, 133.62799 -24.04786, 133.627199 -24.04868, 133.62646 -24.04942, 133.62547 -24.05037, 133.622359 -24.05332, 133.61958 -24.05594, 133.61683 -24.05853, 133.612249 -24.06286, 133.60932 -24.06563, 133.6073 -24.06753, 133.60574 -24.06892, 133.60382 -24.07057, 133.60233 -24.07178, 133.6004 -24.07326, 133.59901 -24.07427, 133.596759 -24.07586, 133.59403 -24.07776, 133.590309 -24.08036, 133.58766 -24.08221, 133.58562 -24.08364, 133.582259 -24.08599, 133.57999 -24.08757, 133.57802 -24.08895, 133.577679 -24.08919, 133.57588 -24.09045, 133.57478 -24.09127, 133.57351 -24.09229, 133.57281 -24.09288, 133.57228 -24.09334, 133.57167 -24.09391, 133.57105 -24.09449, 133.57054 -24.095, 133.569799 -24.09576, 133.56877 -24.09687, 133.563619 -24.10245, 133.55999 -24.10639, 133.55877 -24.10772, 133.55842 -24.10809, 133.557979 -24.10857, 133.55605 -24.11066, 133.55546 -24.11129, 133.55341 -24.11353, 133.552079 -24.11497, 133.549479 -24.11778, 133.54808 -24.11931, 133.54659 -24.12092, 133.54176 -24.12616, 133.53562 -24.13281, 133.53305 -24.1356, 133.53236 -24.13635, 133.53119 -24.13755, 133.5306 -24.13812, 133.52975 -24.13894, 133.5291 -24.13953, 133.52851 -24.14006, 133.52777 -24.14068, 133.52697 -24.14135, 133.52606 -24.14208, 133.52462 -24.14317, 133.52321 -24.14423, 133.52186 -24.14523, 133.519849 -24.14674, 133.51846 -24.14779, 133.51771 -24.14834, 133.51575 -24.14981, 133.51434 -24.15088, 133.513299 -24.15171, 133.51266 -24.15226, 133.51235 -24.15254, 133.512049 -24.15281, 133.511699 -24.15311, 133.51163 -24.15317, 133.511059 -24.15372, 133.51056 -24.15419, 133.509729 -24.15504, 133.50912 -24.15569, 133.508289 -24.15661, 133.50799 -24.15695, 133.507129 -24.15801, 133.50629 -24.1591, 133.50559 -24.16008, 133.50509 -24.1608, 133.50447 -24.16177, 133.503819 -24.16283, 133.50306 -24.16419, 133.50223 -24.1658, 133.50136 -24.16748, 133.49931 -24.17144, 133.496469 -24.17694, 133.49447 -24.18081, 133.492989 -24.18369, 133.491189 -24.18716, 133.48999 -24.18949, 133.48818 -24.19299, 133.48565 -24.19789, 133.48356 -24.20192, 133.482949 -24.20311, 133.482419 -24.20411, 133.48198 -24.20488, 133.48145 -24.20578, 133.480899 -24.20664, 133.480179 -24.20772, 133.4797 -24.20839, 133.478569 -24.20988, 133.477129 -24.21163, 133.47554 -24.21354, 133.473549 -24.21594, 133.47268 -24.21699, 133.47188 -24.21796, 133.46849 -24.22205, 133.467 -24.22385, 133.465859 -24.22524, 133.46517 -24.22606, 133.4648 -24.22648, 133.464419 -24.22688, 133.4639 -24.22743, 133.463529 -24.2278, 133.46313 -24.22819, 133.46258 -24.22869, 133.46207 -24.22912, 133.46148 -24.22961, 133.46079 -24.23016, 133.460019 -24.23072, 133.459499 -24.23108, 133.45906 -24.23137, 133.45813 -24.23195, 133.45641 -24.23298, 133.45611 -24.23316, 133.45576 -24.23337, 133.45214 -24.23555, 133.45105 -24.23621, 133.45004 -24.23683, 133.44933 -24.23729, 133.4486 -24.2378, 133.4481 -24.23818, 133.447399 -24.23875, 133.447 -24.23909, 133.44645 -24.23959, 133.44568 -24.24035, 133.445339 -24.24071, 133.44494 -24.24114, 133.44459 -24.24156, 133.44421 -24.24203, 133.4437 -24.24269, 133.44322 -24.24339, 133.44279 -24.24403, 133.44255 -24.24443, 133.44226 -24.24493, 133.44181 -24.24577, 133.44154 -24.24633, 133.4413 -24.24687, 133.44106 -24.24744, 133.44071 -24.24839, 133.440419 -24.2493, 133.4402 -24.25013, 133.44013 -24.25042, 133.44008 -24.25061, 133.43996 -24.25127, 133.43984 -24.25198, 133.43975 -24.25266, 133.439699 -24.25316, 133.43963 -24.25397, 133.4396 -24.25498, 133.43955 -24.25657, 133.439519 -24.25747, 133.43946 -24.25826, 133.4394 -24.25878, 133.43933 -24.25924, 133.439259 -24.2596, 133.439169 -24.26002, 133.43904 -24.26051, 133.43891 -24.26096, 133.438809 -24.26125, 133.43861 -24.2618, 133.4384 -24.26226, 133.43808 -24.26292, 133.43776 -24.26352, 133.437459 -24.264, 133.43699 -24.26475, 133.435139 -24.26766, 133.43466 -24.26842, 133.43429 -24.26899, 133.43332 -24.27052, 133.432809 -24.27133, 133.43248 -24.27189, 133.4322 -24.27242, 133.431919 -24.27296, 133.43163 -24.27356, 133.43124 -24.2745, 133.43095 -24.27529, 133.43079 -24.27581, 133.430569 -24.27656, 133.43044 -24.27708, 133.43029 -24.27774, 133.430219 -24.27814, 133.43009 -24.27892, 133.43001 -24.27971, 133.429949 -24.28046, 133.42993 -24.2812, 133.42992 -24.28177, 133.42996 -24.2827, 133.43005 -24.2837, 133.430129 -24.28434, 133.43026 -24.2851, 133.43037 -24.28566, 133.430479 -24.28609, 133.43062 -24.28661, 133.43065 -24.28674, 133.430839 -24.28739, 133.430929 -24.28767, 133.43095 -24.28772, 133.43114 -24.28825, 133.431369 -24.28882, 133.4315 -24.28915, 133.431729 -24.28966, 133.43189 -24.29, 133.43213 -24.29045, 133.43229 -24.29076, 133.432369 -24.29092, 133.432639 -24.29138, 133.432799 -24.29166, 133.43319 -24.29228, 133.433439 -24.29265, 133.434059 -24.29352, 133.43652 -24.29691, 133.4378 -24.29866, 133.43865 -24.29983, 133.43949 -24.30092, 133.44028 -24.30187, 133.44121 -24.30292, 133.442649 -24.30447, 133.44407 -24.306, 133.44611 -24.3082, 133.446959 -24.30912, 133.447759 -24.30997, 133.44864 -24.31093, 133.45096 -24.31354, 133.4523 -24.31504, 133.45558 -24.31874, 133.456719 -24.32002, 133.457159 -24.32051, 133.45728 -24.32065, 133.45809 -24.32156, 133.459409 -24.32304, 133.460129 -24.32386, 133.461099 -24.32493, 133.46193 -24.32588, 133.462359 -24.32634, 133.46327 -24.32723, 133.464329 -24.32826, 133.465399 -24.32928, 133.46578 -24.32966, 133.466109 -24.33, 133.466299 -24.33023, 133.466559 -24.33061, 133.46673 -24.3309, 133.466839 -24.33114, 133.46689 -24.33124, 133.467 -24.33152, 133.467099 -24.33182, 133.46718 -24.33218, 133.46725 -24.33255, 133.467279 -24.33284, 133.467279 -24.33312, 133.46727 -24.33339, 133.46724 -24.33372, 133.467189 -24.334, 133.46709 -24.3344, 133.4669 -24.33493, 133.46663 -24.3355, 133.46627 -24.33625, 133.466019 -24.33674, 133.46581 -24.3371, 133.465579 -24.33743, 133.46533 -24.33772, 133.465049 -24.33802, 133.46485 -24.33821, 133.46443 -24.33856, 133.463959 -24.33887, 133.46348 -24.33913, 133.46283 -24.3394, 133.462269 -24.3396, 133.46205 -24.33968, 133.461379 -24.33991, 133.461009 -24.34004, 133.46007 -24.34037, 133.45947 -24.34059, 133.45898 -24.34076, 133.458509 -24.34092, 133.45749 -24.34128, 133.45668 -24.34157, 133.45621 -24.34173, 133.45597 -24.34182, 133.45587 -24.34186, 133.45568 -24.34193, 133.45533 -24.34205, 133.4539 -24.34255, 133.45339 -24.34273, 133.45156 -24.34337, 133.45041 -24.34379, 133.4497 -24.3441, 133.44958 -24.34416, 133.44906 -24.34443, 133.4467 -24.34573, 133.44636 -24.34592, 133.44261 -24.34799, 133.4408 -24.34899, 133.43995 -24.34947, 133.43933 -24.34984, 133.43848 -24.35038, 133.43768 -24.35093, 133.43715 -24.35133, 133.43632 -24.35199, 133.43556 -24.35257, 133.43473 -24.35321, 133.43441 -24.35347, 133.43395 -24.35382, 133.433339 -24.35433, 133.432729 -24.35489, 133.43221 -24.35544, 133.431829 -24.35587, 133.43122 -24.35666, 133.430849 -24.35719, 133.4305 -24.35774, 133.430029 -24.3586, 133.42979 -24.35902, 133.42945 -24.35965, 133.429129 -24.36023, 133.42801 -24.36227, 133.42755 -24.36308, 133.42702 -24.36392, 133.42572 -24.36581, 133.42387 -24.36847, 133.42315 -24.36952, 133.422239 -24.37084, 133.42192 -24.37127, 133.42147 -24.37178, 133.420909 -24.37231, 133.420099 -24.37301, 133.41817 -24.37471, 133.417409 -24.37537, 133.415439 -24.37711, 133.4134 -24.37888, 133.4099 -24.38195, 133.40661 -24.38485, 133.40502 -24.38623, 133.40427 -24.38691, 133.40373 -24.38745, 133.40337 -24.38784, 133.4031 -24.38814, 133.40302 -24.38824, 133.40251 -24.38886, 133.4019 -24.38961, 133.40158 -24.39001, 133.40108 -24.39064, 133.40023 -24.39171, 133.40006 -24.39192, 133.39999 -24.39201, 133.39871 -24.39362, 133.39841 -24.394, 133.39818 -24.39429, 133.39757 -24.39504, 133.397269 -24.39541, 133.397089 -24.39564, 133.39687 -24.39591, 133.396179 -24.39679, 133.39452 -24.39886, 133.39401 -24.39952, 133.39322 -24.40049, 133.39283 -24.40097, 133.39226 -24.40169, 133.39107 -24.40317, 133.388839 -24.40599, 133.388029 -24.40699, 133.38737 -24.40775, 133.38575 -24.40965, 133.383469 -24.41233, 133.37965 -24.41683, 133.37558 -24.42161, 133.37359 -24.42394, 133.37146 -24.42644, 133.37088 -24.42712, 133.369859 -24.42832, 133.36839 -24.43005, 133.3654 -24.43357, 133.364579 -24.43453, 133.36383 -24.43539, 133.3634 -24.43585, 133.36289 -24.43634, 133.3625 -24.4367, 133.36196 -24.43713, 133.36114 -24.43773, 133.36058 -24.43809, 133.35999 -24.43845, 133.358129 -24.43961, 133.35623 -24.4408, 133.35488 -24.44164, 133.34997 -24.4447, 133.34853 -24.44558, 133.34794 -24.44592, 133.34732 -24.44622, 133.34663 -24.44653, 133.34644 -24.44661, 133.3458 -24.44684, 133.34494 -24.44711, 133.34379 -24.44742, 133.34234 -24.44782, 133.341119 -24.44815, 133.3403 -24.4484, 133.33965 -24.44864, 133.33885 -24.44899, 133.338169 -24.44933, 133.33768 -24.44959, 133.337099 -24.44994, 133.33677 -24.45016, 133.33636 -24.45044, 133.33597 -24.45072, 133.33545 -24.45115, 133.33397 -24.45249, 133.333049 -24.45333, 133.33086 -24.45534, 133.32891 -24.45714, 133.32676 -24.45911, 133.326609 -24.45925, 133.32569 -24.46009, 133.324909 -24.46079, 133.32432 -24.46126, 133.32378 -24.46164, 133.32328 -24.46197, 133.322399 -24.46247, 133.32136 -24.463, 133.315599 -24.46586, 133.30966 -24.46882, 133.29774 -24.47474, 133.29553 -24.47584, 133.293 -24.47711, 133.29138 -24.4779, 133.28952 -24.47884, 133.288279 -24.47945, 133.28761 -24.47981, 133.287129 -24.48009, 133.28655 -24.48046, 133.285969 -24.48088, 133.28535 -24.48136, 133.28491 -24.48175, 133.2843 -24.48233, 133.28389 -24.48278, 133.28356 -24.48316, 133.283009 -24.48383, 133.28151 -24.48568, 133.279879 -24.48771, 133.27801 -24.48999, 133.27751 -24.4906, 133.27708 -24.49122, 133.27669 -24.49185, 133.27641 -24.49242, 133.27624 -24.49283, 133.27605 -24.49331, 133.27587 -24.49392, 133.27577 -24.49438, 133.27568 -24.49482, 133.27564 -24.49512, 133.275579 -24.49576, 133.27553 -24.4967, 133.27547 -24.49735, 133.27541 -24.49767, 133.27524 -24.49829, 133.27501 -24.4989, 133.27474 -24.49946, 133.27439 -24.50002, 133.2742 -24.50029, 133.273779 -24.50079, 133.27332 -24.50126, 133.272799 -24.50168, 133.272529 -24.50188, 133.27225 -24.50206, 133.27183 -24.50229, 133.27151 -24.50246, 133.27135 -24.50254, 133.27107 -24.50265, 133.270729 -24.50278, 133.27004 -24.50299, 133.269399 -24.50316, 133.268049 -24.50354, 133.26675 -24.5039, 133.26606 -24.5041, 133.26594 -24.50414, 133.26506 -24.50446, 133.26446 -24.50471, 133.26419 -24.50484, 133.26388 -24.50499, 133.263129 -24.50541, 133.26292 -24.50552, 133.26271 -24.50564, 133.262499 -24.50577, 133.26208 -24.50604, 133.2613 -24.50661, 133.26112 -24.50675, 133.26095 -24.50689, 133.26013 -24.50762, 133.2596 -24.50815, 133.2593 -24.5085, 133.257389 -24.51079, 133.256149 -24.51228, 133.25538 -24.5132, 133.25495 -24.51373, 133.25455 -24.5142, 133.25414 -24.51474, 133.25366 -24.51547, 133.25322 -24.51625, 133.25295 -24.51679, 133.252569 -24.51764, 133.25196 -24.51912, 133.25117 -24.52102, 133.250599 -24.52239, 133.25038 -24.52288, 133.25017 -24.52333, 133.24992 -24.52382, 133.24964 -24.5243, 133.24927 -24.52489, 133.2485 -24.52599, 133.24761 -24.52729, 133.24591 -24.5297, 133.245569 -24.53021, 133.245389 -24.5305, 133.24508 -24.53107, 133.244949 -24.53136, 133.244779 -24.53182, 133.24464 -24.53226, 133.24445 -24.53301, 133.24411 -24.53442, 133.2439 -24.53531, 133.24372 -24.53594, 133.243599 -24.53627, 133.24332 -24.53686, 133.243 -24.53741, 133.24243 -24.53826, 133.2416 -24.53954, 133.24094 -24.54055, 133.240379 -24.54139, 133.23943 -24.54283, 133.23908 -24.54341, 133.23893 -24.54369, 133.238769 -24.544, 133.23852 -24.54459, 133.2383 -24.54521, 133.23812 -24.54586, 133.238 -24.54644, 133.23792 -24.54708, 133.237879 -24.54769, 133.237879 -24.54825, 133.23793 -24.54896, 133.238059 -24.54975, 133.23829 -24.55077, 133.23849 -24.55162, 133.23873 -24.55264, 133.23885 -24.55317, 133.239049 -24.55405, 133.23942 -24.55568, 133.23969 -24.55686, 133.240209 -24.55914, 133.24064 -24.56107, 133.24085 -24.56199, 133.24109 -24.56307, 133.24122 -24.56381, 133.241269 -24.56436, 133.241269 -24.56497, 133.24123 -24.56556, 133.24113 -24.56676, 133.241019 -24.56807, 133.24099 -24.56845, 133.24094 -24.56892, 133.24085 -24.56954, 133.24079 -24.56984, 133.24071 -24.57015, 133.24063 -24.57042, 133.24052 -24.57071, 133.240389 -24.57103, 133.24025 -24.5713, 133.2401 -24.57158, 133.23995 -24.57182, 133.23977 -24.57209, 133.239579 -24.57234, 133.23942 -24.57254, 133.23903 -24.57299, 133.23839 -24.57371, 133.23738 -24.57486, 133.2354 -24.5771, 133.23495 -24.57759, 133.234479 -24.57805, 133.23423 -24.57827, 133.23369 -24.57867, 133.23257 -24.57942, 133.23145 -24.58014, 133.2303 -24.58089, 133.22985 -24.58123, 133.22952 -24.58151, 133.22904 -24.58197, 133.22882 -24.58221, 133.228389 -24.58273, 133.228029 -24.58325, 133.22769 -24.58381, 133.22743 -24.58436, 133.22718 -24.58499, 133.22699 -24.58561, 133.22655 -24.58711, 133.22576 -24.58976, 133.22558 -24.59039, 133.225429 -24.59089, 133.22527 -24.5914, 133.22495 -24.59246, 133.22449 -24.59406, 133.224349 -24.59455, 133.223829 -24.59626, 133.22322 -24.59834, 133.22228 -24.60151, 133.22173 -24.60337, 133.2208 -24.60652, 133.21993 -24.60943, 133.219069 -24.61232, 133.2182 -24.61524, 133.217989 -24.61597, 133.21768 -24.61703, 133.21718 -24.61871, 133.21668 -24.62037, 133.21573 -24.62357, 133.213799 -24.63007, 133.21333 -24.6317, 133.213159 -24.63242, 133.21305 -24.63304, 133.21295 -24.63398, 133.21283 -24.63596, 133.212709 -24.63798, 133.2126 -24.64, 133.21255 -24.64082, 133.21251 -24.64143, 133.21248 -24.6419, 133.21242 -24.64233, 133.212349 -24.64285, 133.21233 -24.64294, 133.21223 -24.64347, 133.21207 -24.64409, 133.21204 -24.64419, 133.21193 -24.64455, 133.21178 -24.645, 133.21142 -24.64588, 133.209759 -24.64985, 133.20942 -24.65067, 133.208319 -24.6533, 133.20808 -24.65387, 133.207349 -24.65559, 133.20622 -24.65827, 133.2047 -24.6619, 133.20435 -24.66275, 133.204209 -24.66309, 133.20383 -24.66391, 133.20366 -24.66422, 133.203409 -24.66463, 133.203129 -24.66503, 133.203039 -24.66513, 133.20271 -24.66552, 133.20248 -24.66578, 133.20201 -24.66624, 133.20084 -24.66733, 133.19907 -24.66899, 133.196689 -24.67124, 133.19573 -24.67216, 133.19475 -24.67306, 133.194269 -24.67352, 133.19406 -24.67372, 133.1933 -24.67443, 133.192829 -24.67493, 133.19246 -24.67539, 133.19227 -24.67567, 133.19191 -24.67624, 133.191759 -24.67651, 133.19161 -24.67681, 133.19137 -24.6774, 133.19117 -24.67802, 133.19102 -24.67864, 133.19097 -24.67895, 133.19091 -24.67957, 133.1909 -24.68017, 133.19091 -24.68074, 133.19093 -24.68187, 133.19098 -24.6853, 133.19103 -24.68752, 133.191039 -24.68911, 133.19108 -24.69089, 133.191129 -24.69356, 133.1912 -24.69734, 133.19121 -24.69815, 133.1912 -24.69882, 133.19116 -24.69924, 133.19107 -24.69983, 133.191 -24.70016, 133.19089 -24.70057, 133.190699 -24.7011, 133.19056 -24.70144, 133.19038 -24.70181, 133.190159 -24.70223, 133.19014 -24.70226, 133.189969 -24.70253, 133.18964 -24.70304, 133.18743 -24.70636, 133.185219 -24.70968, 133.18322 -24.71266, 133.18287 -24.71319, 133.18079 -24.71632, 133.18045 -24.71687, 133.18033 -24.7171, 133.18019 -24.71738, 133.17992 -24.71802, 133.17971 -24.71866, 133.17961 -24.71909, 133.17952 -24.71963, 133.17947 -24.72006, 133.17945 -24.72069, 133.17946 -24.72105, 133.17953 -24.72173, 133.179669 -24.72243, 133.17973 -24.72265, 133.17984 -24.72304, 133.180129 -24.7238, 133.18042 -24.72455, 133.18055 -24.72485, 133.1809 -24.72574, 133.18126 -24.72665, 133.18176 -24.7279, 133.18197 -24.72844, 133.18217 -24.72905, 133.18234 -24.72968, 133.18247 -24.73027, 133.18258 -24.7309, 133.182639 -24.73137, 133.18268 -24.73185, 133.182709 -24.73281, 133.182729 -24.73439, 133.18274 -24.73625, 133.18274 -24.737, 133.18274 -24.73755, 133.18276 -24.73818, 133.182809 -24.73878, 133.18285 -24.73911, 133.18291 -24.73944, 133.18304 -24.73992, 133.183169 -24.74036, 133.18329 -24.74068, 133.1835 -24.74118, 133.18372 -24.7416, 133.18399 -24.74207, 133.184149 -24.7423, 133.18439 -24.74263, 133.18465 -24.74295, 133.185039 -24.74338, 133.18571 -24.74404, 133.18615 -24.74452, 133.18638 -24.74481, 133.18663 -24.74519, 133.1869 -24.74569, 133.18708 -24.74608, 133.187289 -24.74665, 133.18743 -24.74715, 133.18752 -24.74771, 133.187549 -24.74807, 133.187559 -24.7484, 133.187549 -24.74872, 133.18752 -24.74916, 133.18744 -24.74965, 133.18731 -24.75018, 133.18721 -24.75048, 133.18706 -24.75085, 133.18688 -24.75124, 133.18662 -24.75176, 133.18632 -24.75225, 133.18591 -24.75276, 133.18538 -24.75342, 133.185129 -24.75372, 133.184789 -24.75413, 133.18464 -24.75431, 133.18439 -24.75458, 133.184339 -24.75463, 133.18412 -24.75489, 133.18383 -24.75523, 133.18323 -24.75596, 133.18304 -24.75622, 133.18285 -24.75653, 133.182619 -24.75696, 133.18248 -24.75727, 133.18234 -24.75759, 133.1822 -24.75801, 133.18202 -24.75877, 133.18179 -24.75998, 133.18141 -24.76184, 133.18103 -24.76369, 133.18023 -24.76774, 133.17981 -24.76984, 133.17942 -24.77173, 133.17926 -24.77261, 133.17915 -24.77327, 133.179039 -24.77425, 133.178959 -24.77515, 133.17892 -24.77577, 133.1789 -24.7764, 133.17891 -24.77763, 133.17899 -24.77898, 133.17907 -24.77984, 133.1792 -24.78078, 133.17952 -24.78263, 133.18088 -24.79006, 133.18126 -24.79223, 133.182279 -24.79778, 133.182549 -24.79932, 133.18279 -24.80058, 133.18293 -24.8012, 133.18313 -24.80185, 133.183349 -24.80241, 133.183439 -24.80264, 133.18357 -24.80293, 133.18387 -24.80351, 133.184509 -24.80465, 133.18503 -24.80556, 133.18539 -24.80622, 133.1856 -24.80664, 133.18572 -24.80691, 133.18584 -24.80721, 133.185949 -24.80751, 133.18609 -24.80794, 133.186219 -24.80844, 133.18636 -24.80904, 133.18645 -24.80962, 133.18653 -24.81025, 133.186739 -24.81156, 133.18682 -24.81211, 133.186929 -24.81279, 133.18705 -24.81365, 133.18724 -24.8149, 133.187549 -24.81695, 133.18777 -24.81838, 133.18813 -24.82081, 133.188179 -24.82118, 133.18829 -24.82186, 133.18842 -24.82266, 133.188549 -24.82328, 133.188719 -24.8239, 133.18892 -24.8245, 133.189159 -24.82511, 133.18955 -24.82598, 133.18996 -24.82684, 133.19028 -24.82753, 133.19101 -24.82912, 133.19125 -24.8297, 133.19135 -24.82997, 133.19157 -24.83063, 133.19172 -24.8312, 133.19181 -24.83156, 133.191859 -24.83181, 133.19192 -24.83219, 133.19201 -24.83275, 133.19205 -24.83315, 133.19209 -24.83365, 133.19211 -24.83414, 133.19216 -24.83511, 133.192219 -24.83602, 133.19227 -24.83696, 133.19234 -24.83805, 133.19241 -24.83946, 133.19251 -24.84119, 133.192569 -24.84209, 133.192579 -24.84245, 133.192649 -24.84347, 133.19273 -24.84429, 133.19285 -24.84523, 133.19299 -24.8461, 133.19314 -24.84711, 133.19339 -24.8487, 133.193549 -24.84976, 133.19366 -24.85045, 133.19393 -24.85219, 133.194009 -24.85281, 133.19408 -24.85345, 133.19416 -24.85461, 133.194189 -24.85553, 133.194189 -24.85624, 133.19417 -24.85715, 133.19416 -24.858, 133.19414 -24.85873, 133.19413 -24.85966, 133.19412 -24.8606, 133.194089 -24.86184, 133.19408 -24.86419, 133.19404 -24.86506, 133.19402 -24.86675, 133.19397 -24.86973, 133.19396 -24.87042, 133.19389 -24.87442, 133.19385 -24.8767, 133.19384 -24.87765, 133.19384 -24.87798, 133.19385 -24.87824, 133.193829 -24.87919, 133.19385 -24.87977, 133.193909 -24.88056, 133.194009 -24.88156, 133.19433 -24.88415, 133.194439 -24.88502, 133.19451 -24.88549, 133.19464 -24.88654, 133.19475 -24.88742, 133.19483 -24.88796, 133.19505 -24.88978, 133.195169 -24.89082, 133.19531 -24.89226, 133.19542 -24.89319, 133.195529 -24.89432, 133.195789 -24.89677, 133.19602 -24.89891, 133.19622 -24.90074, 133.19631 -24.90171, 133.196419 -24.90275, 133.196509 -24.90363, 133.19656 -24.90402, 133.19665 -24.9049, 133.19676 -24.90601, 133.197049 -24.90871, 133.197229 -24.91041, 133.19728 -24.91097, 133.19751 -24.91308, 133.1978 -24.91585, 133.19798 -24.91759, 133.19808 -24.91869, 133.1981 -24.91927, 133.19811 -24.91999, 133.1981 -24.92101, 133.19808 -24.92147, 133.19807 -24.92167, 133.198 -24.9225, 133.19792 -24.92322, 133.197849 -24.92371, 133.19769 -24.92473, 133.19751 -24.92564, 133.19727 -24.9266, 133.19709 -24.92735, 133.19664 -24.92903, 133.19656 -24.92936, 133.19612 -24.93106, 133.19518 -24.93464, 133.194719 -24.93644, 133.194539 -24.93721, 133.19443 -24.9377, 133.19432 -24.93834, 133.194179 -24.9393, 133.194099 -24.93994, 133.19403 -24.9407, 133.19398 -24.94156, 133.19396 -24.94247, 133.19398 -24.94338, 133.19402 -24.94417, 133.19415 -24.94576, 133.19432 -24.9478, 133.19442 -24.94891, 133.19452 -24.9502, 133.1946 -24.95117, 133.194809 -24.95356, 133.194899 -24.95469, 133.19495 -24.95535, 133.19511 -24.95706, 133.19515 -24.95746, 133.1952 -24.95795, 133.195259 -24.95852, 133.19527 -24.95864, 133.19537 -24.96014, 133.19548 -24.96146, 133.19568 -24.96377, 133.196059 -24.96797, 133.19623 -24.96991, 133.196409 -24.97196, 133.19648 -24.97271, 133.196679 -24.97508, 133.1968 -24.97635, 133.19693 -24.97786, 133.197139 -24.98018, 133.19727 -24.98155, 133.197309 -24.98198, 133.19733 -24.98229, 133.197399 -24.98293, 133.19751 -24.98414, 133.19764 -24.98543, 133.19784 -24.9877, 133.19797 -24.98897, 133.198039 -24.98972, 133.19826 -24.99206, 133.19852 -24.99493, 133.19906 -25.00074, 133.19927 -25.003, 133.19935 -25.00386, 133.19942 -25.0045, 133.19957 -25.0061, 133.19962 -25.00673, 133.19968 -25.00736, 133.19977 -25.00819, 133.1998 -25.00864, 133.19998 -25.01056, 133.20011 -25.01199, 133.20032 -25.01425, 133.200449 -25.01565, 133.2005 -25.01629, 133.20067 -25.0181, 133.200709 -25.01863, 133.20084 -25.01991, 133.20103 -25.02204, 133.20119 -25.02379, 133.2013 -25.02508, 133.20147 -25.02688, 133.20155 -25.02772, 133.20168 -25.0292, 133.20177 -25.03017, 133.20181 -25.03058, 133.20208 -25.03352, 133.20248 -25.0379, 133.20256 -25.03887, 133.20265 -25.03996, 133.202679 -25.04079, 133.202679 -25.04167, 133.20267 -25.04224, 133.20261 -25.04346, 133.20247 -25.04605, 133.20239 -25.04769, 133.20238 -25.04797, 133.202319 -25.04891, 133.2023 -25.0494, 133.20222 -25.05092, 133.2021 -25.05327, 133.20205 -25.05408, 133.20192 -25.05667, 133.20175 -25.05994, 133.201619 -25.06248, 133.20159 -25.06296, 133.20138 -25.06696, 133.20128 -25.06889, 133.20124 -25.06973, 133.20121 -25.07022, 133.20114 -25.07088, 133.20109 -25.07122, 133.20103 -25.07156, 133.20094 -25.07199, 133.20084 -25.07243, 133.20077 -25.07267, 133.20064 -25.0731, 133.200279 -25.07416, 133.1996 -25.07613, 133.19905 -25.07774, 133.198469 -25.07943, 133.19825 -25.08007, 133.198039 -25.08069, 133.19773 -25.0816, 133.19755 -25.08219, 133.19744 -25.08262, 133.19735 -25.08307, 133.19727 -25.08351, 133.19721 -25.084, 133.197139 -25.08477, 133.19712 -25.08543, 133.197129 -25.08616, 133.1972 -25.08689, 133.19729 -25.08795, 133.197409 -25.08939, 133.19752 -25.09068, 133.19784 -25.09435, 133.19808 -25.09707, 133.19825 -25.09906, 133.19853 -25.10235, 133.19863 -25.10342, 133.19876 -25.10434, 133.19894 -25.10538, 133.19933 -25.1077, 133.19953 -25.10891, 133.19966 -25.10984, 133.199739 -25.11052, 133.1998 -25.11131, 133.199829 -25.11206, 133.19984 -25.11286, 133.19984 -25.11364, 133.19981 -25.11434, 133.199729 -25.1153, 133.199649 -25.11601, 133.19952 -25.11691, 133.19942 -25.1175, 133.19927 -25.11823, 133.19905 -25.11912, 133.19879 -25.12006, 133.19862 -25.12062, 133.19833 -25.12145, 133.19809 -25.12209, 133.197759 -25.12293, 133.197049 -25.12479, 133.19617 -25.12707, 133.19549 -25.12884, 133.19497 -25.13017, 133.19467 -25.13098, 133.1945 -25.13147, 133.19431 -25.13206, 133.1942 -25.13245, 133.194099 -25.13279, 133.1939 -25.13357, 133.19369 -25.13446, 133.19358 -25.13504, 133.193469 -25.13574, 133.19339 -25.13632, 133.19331 -25.13693, 133.19327 -25.13736, 133.19323 -25.138, 133.193189 -25.13883, 133.19318 -25.13955, 133.193189 -25.14026, 133.19322 -25.14086, 133.19326 -25.14152, 133.19333 -25.14213, 133.1935 -25.1435, 133.19375 -25.14534, 133.19406 -25.14759, 133.194439 -25.15033, 133.19473 -25.15246, 133.195159 -25.1556, 133.1955 -25.15811, 133.195709 -25.15967, 133.19584 -25.16054, 133.19594 -25.16119, 133.19599 -25.16167, 133.196059 -25.1622, 133.19621 -25.16319, 133.19631 -25.16378, 133.19637 -25.16431, 133.19647 -25.16516, 133.19665 -25.16649, 133.1969 -25.1683, 133.19718 -25.1704, 133.197579 -25.17331, 133.1978 -25.1749, 133.198 -25.17641, 133.198209 -25.17787, 133.19854 -25.18031, 133.19903 -25.18389, 133.19953 -25.18754, 133.199829 -25.18975, 133.19997 -25.19073, 133.20011 -25.19167, 133.20032 -25.19282, 133.200449 -25.19347, 133.20069 -25.19449, 133.200899 -25.19527, 133.20097 -25.19554, 133.20101 -25.19568, 133.20104 -25.19578, 133.201159 -25.19619, 133.201349 -25.1968, 133.2012152976 -25.196370745)" +-21.5313917,133.8888313,-23.7108321,133.8751299,5,Barrow Creek,"LINESTRING (133.8888530034 -21.5314738657, 133.88883 -21.53148, 133.88843 -21.53145, 133.88809 -21.5314, 133.88774 -21.53137, 133.887319 -21.53188, 133.887149 -21.53207, 133.88709 -21.53214, 133.88677 -21.53248, 133.88671 -21.53254, 133.88639 -21.53285, 133.88596 -21.5332, 133.88548 -21.53355, 133.88503 -21.53385, 133.884629 -21.53408, 133.884549 -21.53412, 133.88442 -21.53419, 133.88433 -21.53424, 133.883999 -21.53441, 133.88367 -21.53456, 133.883469 -21.53465, 133.882839 -21.53489, 133.88246 -21.53501, 133.88209 -21.53512, 133.88165 -21.53523, 133.88126 -21.53531, 133.88081 -21.53539, 133.8804 -21.53545, 133.87978 -21.53554, 133.878549 -21.53573, 133.87734 -21.53592, 133.872 -21.53674, 133.86901 -21.53719, 133.865649 -21.53771, 133.86524 -21.53777, 133.86362 -21.53802, 133.862529 -21.53819, 133.86194 -21.5383, 133.86078 -21.53856, 133.86043 -21.53865, 133.859839 -21.5388, 133.85924 -21.53897, 133.85873 -21.53912, 133.85792 -21.5394, 133.857509 -21.53955, 133.857139 -21.53968, 133.85637 -21.53998, 133.85558 -21.54031, 133.85462 -21.54069, 133.85418 -21.54087, 133.85398 -21.54095, 133.85354 -21.54113, 133.85108 -21.54212, 133.85014 -21.54252, 133.84968 -21.54274, 133.84907 -21.54306, 133.8484 -21.54346, 133.8479 -21.54378, 133.84723 -21.54428, 133.84657 -21.54481, 133.8461 -21.54525, 133.845779 -21.54557, 133.84571 -21.54564, 133.84545 -21.54591, 133.84522 -21.54618, 133.84477 -21.54669, 133.844159 -21.54743, 133.8434 -21.54834, 133.84323 -21.54855, 133.843089 -21.54871, 133.84215 -21.54984, 133.84199 -21.55004, 133.841379 -21.55076, 133.841019 -21.55119, 133.84053 -21.55171, 133.840219 -21.55201, 133.83997 -21.55226, 133.839599 -21.55257, 133.83937 -21.55276, 133.83883 -21.55319, 133.838249 -21.55362, 133.836549 -21.55483, 133.83523 -21.55578, 133.8308 -21.55895, 133.82752 -21.5613, 133.82549 -21.56276, 133.82309 -21.56449, 133.82228 -21.56507, 133.821 -21.56599, 133.8195 -21.56706, 133.817839 -21.56826, 133.817559 -21.56846, 133.81514 -21.5702, 133.812559 -21.57206, 133.81179 -21.57262, 133.81092 -21.57324, 133.809959 -21.57393, 133.809509 -21.57423, 133.809069 -21.57449, 133.80868 -21.57468, 133.808349 -21.57484, 133.807899 -21.57504, 133.80741 -21.57525, 133.806109 -21.57582, 133.805839 -21.57594, 133.80372 -21.57686, 133.802969 -21.57718, 133.8022 -21.57747, 133.801909 -21.57757, 133.80144 -21.57771, 133.80062 -21.57792, 133.800029 -21.57804, 133.79907 -21.57825, 133.79835 -21.5784, 133.79792 -21.5785, 133.79748 -21.57862, 133.79692 -21.57879, 133.79621 -21.57905, 133.79517 -21.57949, 133.793839 -21.58001, 133.793129 -21.5803, 133.79168 -21.58089, 133.79051 -21.58137, 133.788919 -21.58201, 133.78701 -21.58279, 133.78151 -21.58502, 133.78021 -21.58555, 133.7777 -21.58656, 133.77695 -21.58688, 133.77636 -21.58715, 133.77586 -21.5874, 133.77541 -21.58765, 133.774949 -21.58793, 133.774579 -21.58818, 133.774149 -21.58847, 133.77365 -21.58885, 133.77318 -21.58924, 133.77248 -21.58987, 133.77184 -21.59054, 133.77005 -21.59249, 133.766349 -21.59652, 133.76531 -21.59764, 133.76449 -21.59854, 133.761789 -21.60148, 133.76157 -21.60171, 133.76055 -21.60282, 133.7589 -21.60461, 133.75675 -21.60696, 133.7553 -21.60853, 133.75504 -21.60882, 133.754799 -21.60908, 133.75457 -21.60933, 133.75415 -21.60978, 133.75395 -21.61, 133.75251 -21.61156, 133.75224 -21.61186, 133.75191 -21.61222, 133.751309 -21.61288, 133.75115 -21.61305, 133.75075 -21.61348, 133.7487 -21.61572, 133.74815 -21.61632, 133.74502 -21.61972, 133.743259 -21.62164, 133.74258 -21.6224, 133.74238 -21.62265, 133.74222 -21.62284, 133.74184 -21.62334, 133.74175 -21.62347, 133.7413 -21.62414, 133.74098 -21.62468, 133.74072 -21.62516, 133.74069 -21.62522, 133.74052 -21.62559, 133.74019 -21.62638, 133.739759 -21.62749, 133.739579 -21.62796, 133.739229 -21.62888, 133.73897 -21.62958, 133.73867 -21.63036, 133.73845 -21.63094, 133.73777 -21.63272, 133.73758 -21.63326, 133.73748 -21.63361, 133.73741 -21.63393, 133.737349 -21.6343, 133.73729 -21.63484, 133.73729 -21.63533, 133.73731 -21.63569, 133.73736 -21.63612, 133.73745 -21.63659, 133.73758 -21.63709, 133.73772 -21.63749, 133.73785 -21.6378, 133.73813 -21.63836, 133.73829 -21.63863, 133.73847 -21.6389, 133.73867 -21.63919, 133.73885 -21.63942, 133.73908 -21.6397, 133.73944 -21.64013, 133.73963 -21.64038, 133.73992 -21.64083, 133.74015 -21.64125, 133.740199 -21.64137, 133.740379 -21.64178, 133.74059 -21.64233, 133.74091 -21.64321, 133.74103 -21.64355, 133.74115 -21.64387, 133.74135 -21.64441, 133.74158 -21.64504, 133.7423 -21.64703, 133.74304 -21.64906, 133.743259 -21.64965, 133.74355 -21.6505, 133.744 -21.65199, 133.74444 -21.65341, 133.744499 -21.6536, 133.74573 -21.65768, 133.747279 -21.66271, 133.74792 -21.66478, 133.7487 -21.66732, 133.74964 -21.67037, 133.75119 -21.6754, 133.751659 -21.6769, 133.751749 -21.67718, 133.752289 -21.67893, 133.7525 -21.67959, 133.7527 -21.6803, 133.75279 -21.68063, 133.75282 -21.68076, 133.752919 -21.68128, 133.75298 -21.68164, 133.75305 -21.68209, 133.75316 -21.68312, 133.75326 -21.68416, 133.75334 -21.68498, 133.75341 -21.6857, 133.75349 -21.68649, 133.753719 -21.68873, 133.75419 -21.69344, 133.754269 -21.69425, 133.754349 -21.69506, 133.75477 -21.69914, 133.755249 -21.70391, 133.75529 -21.70433, 133.7555 -21.7064, 133.75559 -21.70744, 133.75562 -21.70801, 133.75562 -21.70843, 133.75559 -21.70919, 133.75555 -21.7096, 133.75548 -21.71016, 133.75537 -21.71072, 133.75526 -21.71129, 133.75509 -21.71192, 133.75479 -21.71279, 133.75457 -21.71334, 133.75432 -21.71391, 133.754169 -21.71421, 133.75386 -21.71478, 133.753549 -21.71528, 133.753179 -21.71582, 133.7528 -21.71634, 133.75246 -21.71676, 133.75204 -21.71723, 133.75168 -21.71761, 133.7516 -21.71769, 133.75151 -21.71779, 133.75101 -21.7183, 133.75079 -21.71853, 133.74998 -21.71937, 133.74768 -21.72174, 133.74748 -21.72195, 133.74608 -21.7234, 133.74546 -21.72404, 133.74494 -21.72455, 133.74447 -21.72496, 133.74412 -21.72524, 133.74399 -21.72534, 133.74365 -21.72559, 133.74315 -21.72594, 133.74285 -21.72613, 133.74248 -21.72635, 133.74142 -21.72694, 133.73935 -21.72809, 133.73928 -21.72813, 133.73714 -21.72932, 133.73452 -21.73078, 133.73377 -21.7312, 133.73095 -21.73276, 133.72907 -21.73382, 133.7287 -21.73402, 133.72843 -21.73417, 133.72797 -21.73443, 133.72545 -21.73582, 133.72377 -21.73676, 133.72102 -21.73828, 133.71857 -21.73965, 133.71534 -21.74144, 133.713069 -21.7427, 133.70432 -21.74754, 133.699549 -21.75019, 133.69491 -21.75275, 133.693369 -21.7536, 133.69277 -21.75393, 133.69271 -21.75396, 133.69184 -21.75444, 133.69107 -21.75488, 133.69053 -21.75522, 133.68974 -21.75577, 133.6896 -21.75587, 133.68948 -21.75596, 133.68876 -21.75654, 133.6885 -21.75676, 133.68802 -21.75721, 133.68768 -21.75753, 133.68754 -21.75766, 133.68723 -21.75799, 133.68714 -21.75809, 133.687109 -21.75812, 133.68699 -21.75825, 133.686829 -21.75843, 133.68641 -21.75893, 133.68605 -21.7594, 133.685669 -21.75993, 133.68537 -21.76035, 133.68519 -21.76065, 133.68507 -21.76085, 133.684949 -21.76106, 133.68471 -21.76147, 133.68465 -21.76158, 133.68431 -21.76224, 133.68408 -21.76276, 133.68392 -21.76312, 133.683789 -21.76346, 133.683529 -21.76417, 133.68267 -21.76666, 133.68238 -21.7675, 133.68107 -21.77128, 133.67889 -21.77763, 133.677069 -21.7829, 133.676279 -21.78521, 133.67535 -21.78789, 133.67447 -21.79043, 133.67373 -21.79259, 133.67321 -21.79412, 133.67232 -21.7967, 133.67147 -21.79913, 133.67039 -21.80226, 133.67004 -21.80327, 133.66996 -21.80349, 133.66915 -21.80583, 133.66881 -21.80673, 133.668579 -21.80725, 133.66829 -21.80786, 133.66799 -21.80844, 133.66762 -21.80909, 133.66712 -21.80987, 133.66665 -21.81052, 133.66619 -21.81112, 133.66578 -21.81162, 133.6654 -21.81204, 133.664819 -21.81267, 133.66343 -21.81412, 133.660699 -21.81702, 133.65866 -21.81918, 133.654069 -21.82405, 133.65307 -21.8251, 133.65168 -21.82658, 133.64506 -21.83361, 133.64356 -21.83521, 133.64241 -21.83642, 133.6414 -21.83749, 133.64043 -21.83852, 133.63924 -21.8398, 133.63792 -21.84118, 133.63565 -21.84359, 133.63103 -21.84849, 133.62848 -21.85119, 133.62528 -21.85458, 133.62203 -21.85803, 133.620479 -21.85968, 133.61943 -21.86078, 133.61844 -21.86183, 133.61722 -21.86312, 133.6168 -21.86357, 133.61658 -21.8638, 133.61419 -21.86633, 133.61174 -21.86894, 133.60951 -21.87131, 133.60801 -21.87289, 133.606519 -21.87446, 133.605629 -21.8754, 133.60395 -21.87716, 133.60323 -21.87791, 133.60255 -21.87856, 133.60162 -21.87936, 133.60073 -21.88005, 133.59914 -21.88129, 133.59723 -21.88278, 133.59531 -21.88427, 133.59047 -21.88803, 133.58729 -21.8905, 133.58516 -21.89215, 133.58347 -21.89346, 133.58231 -21.89436, 133.57969 -21.89639, 133.57673 -21.89869, 133.57422 -21.90064, 133.57001 -21.90392, 133.56672 -21.90646, 133.56483 -21.90793, 133.56295 -21.90938, 133.56248 -21.90975, 133.56171 -21.91036, 133.55994 -21.91173, 133.557989 -21.91325, 133.55537 -21.91528, 133.55149 -21.91828, 133.54943 -21.91988, 133.54553 -21.9229, 133.542049 -21.92559, 133.54105 -21.92636, 133.540619 -21.9267, 133.5396 -21.92749, 133.53816 -21.92861, 133.53278 -21.93278, 133.52936 -21.93544, 133.52815 -21.93637, 133.52571 -21.93827, 133.52256 -21.94071, 133.52072 -21.94213, 133.518059 -21.9442, 133.51538 -21.94627, 133.51437 -21.94706, 133.51111 -21.94958, 133.509089 -21.95115, 133.50595 -21.95358, 133.50294 -21.95591, 133.499149 -21.95884, 133.49819 -21.95959, 133.49757 -21.96007, 133.496559 -21.96086, 133.49617 -21.96116, 133.49606 -21.96124, 133.4956 -21.9616, 133.49461 -21.96238, 133.493169 -21.96348, 133.49219 -21.96424, 133.49189 -21.96447, 133.49122 -21.96505, 133.49072 -21.96552, 133.49035 -21.9659, 133.48974 -21.96655, 133.48854 -21.96784, 133.48688 -21.96964, 133.486179 -21.9704, 133.485379 -21.97131, 133.48518 -21.97155, 133.48491 -21.97191, 133.4846 -21.97234, 133.48423 -21.9729, 133.48396 -21.97337, 133.482049 -21.97675, 133.47988 -21.98057, 133.477669 -21.98448, 133.476139 -21.98718, 133.474529 -21.99002, 133.47363 -21.99161, 133.473279 -21.99223, 133.47306 -21.99262, 133.47304 -21.99266, 133.4727 -21.99326, 133.47251 -21.9936, 133.471669 -21.99508, 133.470319 -21.99746, 133.46787 -22.00177, 133.46619 -22.00472, 133.46552 -22.00595, 133.46546 -22.00607, 133.4653 -22.00639, 133.465139 -22.00678, 133.465039 -22.00702, 133.46493 -22.00732, 133.46489 -22.00744, 133.464859 -22.00754, 133.46479 -22.00776, 133.46466 -22.00824, 133.46463 -22.00834, 133.46448 -22.00898, 133.46401 -22.01099, 133.46309 -22.01496, 133.46185 -22.0202, 133.46006 -22.02784, 133.45902 -22.03233, 133.45821 -22.03575, 133.458049 -22.03644, 133.45763 -22.03825, 133.45673 -22.04209, 133.456269 -22.04411, 133.456089 -22.0448, 133.4559 -22.04549, 133.45569 -22.04616, 133.45544 -22.04683, 133.45522 -22.04734, 133.45497 -22.0479, 133.45479 -22.04826, 133.4546 -22.04862, 133.45449 -22.04884, 133.454109 -22.04948, 133.45372 -22.0501, 133.453 -22.05118, 133.450349 -22.05508, 133.44761 -22.05912, 133.44614 -22.06132, 133.444369 -22.06392, 133.443199 -22.06564, 133.44197 -22.06746, 133.44085 -22.06912, 133.4392 -22.07156, 133.43775 -22.0737, 133.4359 -22.07644, 133.43466 -22.07826, 133.43436 -22.07871, 133.433609 -22.07983, 133.43266 -22.08123, 133.432099 -22.08205, 133.42982 -22.08543, 133.428419 -22.0875, 133.427529 -22.08882, 133.42651 -22.09034, 133.42621 -22.09079, 133.42587 -22.09132, 133.42552 -22.09191, 133.425109 -22.09264, 133.42468 -22.09348, 133.42428 -22.09434, 133.42396 -22.09509, 133.423679 -22.09579, 133.42348 -22.09635, 133.4232 -22.09721, 133.42311 -22.09749, 133.42284 -22.09846, 133.42262 -22.09941, 133.42239 -22.10048, 133.42195 -22.10252, 133.42044 -22.10957, 133.42041 -22.10971, 133.420179 -22.11077, 133.419379 -22.11449, 133.41913 -22.11565, 133.41909 -22.11585, 133.41906 -22.116, 133.41872 -22.11758, 133.41801 -22.12089, 133.41747 -22.12343, 133.41736 -22.12393, 133.417139 -22.12491, 133.4169 -22.12608, 133.41666 -22.1272, 133.41655 -22.12773, 133.416519 -22.12788, 133.41636 -22.12858, 133.41623 -22.12921, 133.41614 -22.12964, 133.41609 -22.12985, 133.416069 -22.12993, 133.41603 -22.13015, 133.416 -22.13035, 133.41596 -22.13078, 133.41594 -22.13112, 133.41595 -22.13125, 133.41596 -22.13155, 133.415969 -22.13168, 133.41599 -22.13184, 133.41603 -22.13203, 133.41604 -22.13206, 133.4161 -22.13241, 133.41621 -22.13281, 133.41635 -22.13318, 133.41649 -22.13349, 133.41668 -22.13384, 133.41686 -22.13413, 133.417139 -22.13451, 133.41742 -22.13484, 133.41763 -22.13506, 133.41783 -22.13526, 133.41805 -22.13545, 133.41808 -22.13548, 133.41843 -22.13578, 133.4188 -22.13611, 133.41916 -22.13642, 133.41951 -22.13672, 133.41961 -22.13681, 133.42102 -22.13802, 133.421709 -22.13862, 133.42407 -22.14066, 133.424759 -22.14125, 133.425369 -22.14177, 133.42576 -22.14211, 133.42656 -22.14282, 133.427079 -22.1433, 133.42723 -22.14346, 133.42746 -22.1437, 133.427979 -22.14427, 133.42845 -22.14482, 133.42883 -22.1453, 133.42927 -22.14591, 133.429499 -22.14625, 133.42954 -22.14631, 133.42975 -22.14664, 133.429939 -22.14695, 133.4302 -22.14741, 133.43045 -22.14785, 133.4307 -22.14838, 133.43091 -22.14883, 133.43108 -22.14924, 133.4313 -22.14981, 133.43148 -22.15033, 133.431649 -22.15085, 133.43181 -22.15143, 133.43196 -22.15206, 133.43207 -22.15259, 133.43216 -22.1531, 133.43226 -22.15389, 133.43231 -22.15443, 133.43235 -22.15514, 133.43235 -22.15519, 133.43235 -22.15569, 133.43234 -22.15638, 133.43232 -22.15671, 133.432279 -22.15733, 133.43217 -22.15844, 133.43208 -22.15956, 133.431919 -22.16113, 133.43179 -22.16242, 133.43175 -22.16283, 133.4314 -22.16644, 133.43103 -22.17016, 133.43103 -22.17018, 133.43098 -22.17071, 133.43091 -22.17154, 133.430839 -22.17232, 133.4305 -22.17586, 133.43024 -22.17866, 133.4301 -22.18017, 133.4296 -22.18543, 133.42944 -22.18719, 133.428239 -22.20002, 133.42808 -22.20176, 133.42799 -22.20272, 133.42783 -22.20434, 133.42777 -22.20499, 133.42773 -22.2055, 133.42768 -22.20596, 133.427619 -22.20662, 133.42756 -22.20725, 133.427519 -22.20768, 133.427429 -22.2086, 133.42714 -22.21176, 133.42703 -22.21315, 133.42678 -22.21649, 133.42665 -22.21819, 133.42647 -22.2206, 133.42634 -22.22226, 133.42597 -22.22721, 133.42567 -22.2311, 133.425459 -22.23389, 133.425289 -22.23622, 133.425099 -22.23882, 133.425029 -22.23964, 133.42488 -22.24167, 133.42487 -22.24181, 133.424659 -22.24459, 133.424569 -22.24572, 133.42453 -22.2462, 133.42445 -22.24726, 133.42428 -22.24951, 133.4241 -22.25197, 133.424029 -22.25287, 133.423949 -22.25393, 133.42378 -22.25621, 133.42365 -22.25785, 133.42353 -22.25952, 133.423219 -22.26367, 133.4231 -22.26527, 133.422879 -22.26816, 133.422789 -22.2694, 133.42272 -22.27028, 133.42264 -22.27112, 133.42257 -22.27174, 133.42249 -22.27222, 133.422429 -22.27256, 133.422249 -22.27336, 133.42219 -22.27361, 133.42208 -22.274, 133.4219 -22.27459, 133.42176 -22.27501, 133.4216 -22.27545, 133.4211 -22.27671, 133.41998 -22.27956, 133.419289 -22.2813, 133.419029 -22.28197, 133.419009 -22.28202, 133.41879 -22.28258, 133.41877 -22.28263, 133.41863 -22.28299, 133.417059 -22.28695, 133.41536 -22.29128, 133.413829 -22.29515, 133.412299 -22.29902, 133.41163 -22.30071, 133.411049 -22.30219, 133.41047 -22.30363, 133.40949 -22.30611, 133.40849 -22.30863, 133.40742 -22.31134, 133.405149 -22.31702, 133.404329 -22.31907, 133.403359 -22.32148, 133.402819 -22.32285, 133.40242 -22.32383, 133.401369 -22.32644, 133.40047 -22.3287, 133.398599 -22.33336, 133.39799 -22.33491, 133.397519 -22.33606, 133.39722 -22.33681, 133.39667 -22.3382, 133.3962 -22.33935, 133.39526 -22.34171, 133.394759 -22.34294, 133.393849 -22.34522, 133.392789 -22.34786, 133.39217 -22.34943, 133.3915 -22.35108, 133.39097 -22.35241, 133.3896 -22.35583, 133.38854 -22.35846, 133.38773 -22.36048, 133.3877 -22.36056, 133.387599 -22.36082, 133.38755 -22.36093, 133.38716 -22.3619, 133.38664 -22.3632, 133.38555 -22.36591, 133.38397 -22.36982, 133.38278 -22.37277, 133.38176 -22.37531, 133.38116 -22.37681, 133.38038 -22.37875, 133.37821 -22.38418, 133.37652 -22.38839, 133.37567 -22.39051, 133.37411 -22.39445, 133.372549 -22.39834, 133.371119 -22.40189, 133.37018 -22.40426, 133.36919 -22.40671, 133.368869 -22.40752, 133.36841 -22.40868, 133.368239 -22.40911, 133.36821 -22.4092, 133.36819 -22.40924, 133.367989 -22.40973, 133.36741 -22.41119, 133.36666 -22.41304, 133.366269 -22.41401, 133.3655 -22.41595, 133.36498 -22.41724, 133.363689 -22.42045, 133.361439 -22.42609, 133.35987 -22.43003, 133.35799 -22.43473, 133.35683 -22.43764, 133.35591 -22.43996, 133.3547 -22.44299, 133.35286 -22.44762, 133.35001 -22.45478, 133.34826 -22.45921, 133.34761 -22.46084, 133.34611 -22.46462, 133.34404 -22.46981, 133.3424 -22.47393, 133.338439 -22.4839, 133.33725 -22.48691, 133.3359 -22.49031, 133.335299 -22.49183, 133.334859 -22.49293, 133.33435 -22.49421, 133.33397 -22.49524, 133.33379 -22.49582, 133.33362 -22.49642, 133.33345 -22.49716, 133.33338 -22.49748, 133.33331 -22.49787, 133.33321 -22.49857, 133.33303 -22.50012, 133.33291 -22.50115, 133.33282 -22.50186, 133.33281 -22.50198, 133.332789 -22.50216, 133.33278 -22.50222, 133.33268 -22.50315, 133.33267 -22.50324, 133.33255 -22.50434, 133.33224 -22.50709, 133.33186 -22.51047, 133.331269 -22.51559, 133.330909 -22.51876, 133.33032 -22.52392, 133.329569 -22.53048, 133.32936 -22.53227, 133.32925 -22.53325, 133.3283 -22.54166, 133.32826 -22.542, 133.32801 -22.54416, 133.3279 -22.54511, 133.32775 -22.54642, 133.327679 -22.54706, 133.32764 -22.54754, 133.32762 -22.54796, 133.32762 -22.54805, 133.32761 -22.54835, 133.32763 -22.54913, 133.32767 -22.54984, 133.32773 -22.55039, 133.32785 -22.55113, 133.32801 -22.55191, 133.328139 -22.55238, 133.32836 -22.55313, 133.329 -22.55511, 133.329039 -22.55525, 133.329479 -22.55662, 133.329929 -22.55804, 133.33005 -22.55843, 133.33204 -22.56469, 133.33258 -22.56641, 133.33436 -22.572, 133.336559 -22.57894, 133.337899 -22.58315, 133.33859 -22.58535, 133.33899 -22.58659, 133.33957 -22.58841, 133.34021 -22.59045, 133.34142 -22.59426, 133.34204 -22.59623, 133.34284 -22.5987, 133.34332 -22.60019, 133.34375 -22.60152, 133.34386 -22.60188, 133.34406 -22.6025, 133.34431 -22.60338, 133.34442 -22.60382, 133.34451 -22.6042, 133.344619 -22.60484, 133.34469 -22.60531, 133.34475 -22.60583, 133.34483 -22.60662, 133.34485 -22.6072, 133.344959 -22.61521, 133.34501 -22.61836, 133.345049 -22.62092, 133.34509 -22.62372, 133.34511 -22.62551, 133.34513 -22.62646, 133.345139 -22.6271, 133.34519 -22.62781, 133.345239 -22.62833, 133.34526 -22.6285, 133.345319 -22.62891, 133.34543 -22.6296, 133.34565 -22.63053, 133.34582 -22.63119, 133.34597 -22.63168, 133.346129 -22.63212, 133.34635 -22.63269, 133.3467 -22.63356, 133.34707 -22.63441, 133.34759 -22.63562, 133.3483 -22.63731, 133.34886 -22.63861, 133.34924 -22.6395, 133.349449 -22.64, 133.34965 -22.64047, 133.35055 -22.64257, 133.352229 -22.64651, 133.35334 -22.6491, 133.35349 -22.64946, 133.35381 -22.65021, 133.35423 -22.6512, 133.35476 -22.65246, 133.355539 -22.65428, 133.35648 -22.65649, 133.356519 -22.65659, 133.35703 -22.65775, 133.358229 -22.66057, 133.358759 -22.66179, 133.35946 -22.66345, 133.36077 -22.66652, 133.36238 -22.67027, 133.36319 -22.67213, 133.36452 -22.67527, 133.36577 -22.6782, 133.36783 -22.68303, 133.367899 -22.68319, 133.36854 -22.68468, 133.369869 -22.68778, 133.370139 -22.68841, 133.37024 -22.68866, 133.37073 -22.6898, 133.37173 -22.69214, 133.37185 -22.69242, 133.37203 -22.69285, 133.37341 -22.69609, 133.374079 -22.69768, 133.37656 -22.70353, 133.37862 -22.70833, 133.37921 -22.7097, 133.37961 -22.71063, 133.381229 -22.71438, 133.38153 -22.71509, 133.381689 -22.71546, 133.38292 -22.71835, 133.383299 -22.71924, 133.38363 -22.72, 133.38372 -22.72021, 133.38395 -22.72076, 133.385989 -22.72555, 133.38648 -22.7267, 133.387319 -22.72867, 133.39119 -22.73773, 133.39255 -22.7409, 133.3937 -22.74362, 133.39455 -22.7456, 133.39496 -22.74656, 133.39586 -22.74866, 133.397969 -22.75361, 133.39927 -22.75664, 133.399769 -22.75782, 133.40015 -22.75871, 133.40028 -22.759, 133.401299 -22.76139, 133.40363 -22.76685, 133.404959 -22.76995, 133.40518 -22.77046, 133.40534 -22.77084, 133.40643 -22.7734, 133.40749 -22.77589, 133.40885 -22.77906, 133.40968 -22.78101, 133.41142 -22.78506, 133.41188 -22.78616, 133.41314 -22.7891, 133.41411 -22.79136, 133.41417 -22.7915, 133.41444 -22.79217, 133.41466 -22.79277, 133.415179 -22.79428, 133.41568 -22.79568, 133.41631 -22.79745, 133.41663 -22.79834, 133.41693 -22.79919, 133.417499 -22.80079, 133.417589 -22.80105, 133.417769 -22.80153, 133.41793 -22.80198, 133.418479 -22.80354, 133.41878 -22.80436, 133.41888 -22.80468, 133.41909 -22.80524, 133.41944 -22.80626, 133.41959 -22.80667, 133.41993 -22.80761, 133.41998 -22.80775, 133.42023 -22.80833, 133.42058 -22.80902, 133.42084 -22.8095, 133.4211 -22.80992, 133.421429 -22.81039, 133.42167 -22.81075, 133.42196 -22.81111, 133.4222 -22.81142, 133.42282 -22.81211, 133.42414 -22.81348, 133.42427 -22.81361, 133.42495 -22.81431, 133.42567 -22.81505, 133.42864 -22.81813, 133.42943 -22.81895, 133.43018 -22.81973, 133.4325 -22.82212, 133.43322 -22.82287, 133.434059 -22.82383, 133.43448 -22.82432, 133.43484 -22.82474, 133.43508 -22.82502, 133.4365 -22.82668, 133.43726 -22.82758, 133.437459 -22.82781, 133.43778 -22.82818, 133.43825 -22.82873, 133.440069 -22.83084, 133.44161 -22.83264, 133.44351 -22.83485, 133.44523 -22.83685, 133.44684 -22.83872, 133.448379 -22.84052, 133.45007 -22.84248, 133.45392 -22.84697, 133.455999 -22.84939, 133.459039 -22.85293, 133.46369 -22.85837, 133.46554 -22.86051, 133.4681 -22.8635, 133.47271 -22.86886, 133.47539 -22.87199, 133.47661 -22.87342, 133.4849 -22.88307, 133.48792 -22.88659, 133.49222 -22.89159, 133.500949 -22.90176, 133.50367 -22.90491, 133.50791 -22.90984, 133.513129 -22.91592, 133.51812 -22.92172, 133.51853 -22.9222, 133.519039 -22.92279, 133.52224 -22.92652, 133.52756 -22.93272, 133.52887 -22.93424, 133.5292 -22.93462, 133.52939 -22.93483, 133.529609 -22.93506, 133.52984 -22.93529, 133.53004 -22.93548, 133.53022 -22.93563, 133.530499 -22.93587, 133.53089 -22.93617, 133.5311 -22.93632, 133.53145 -22.93658, 133.53188 -22.93691, 133.532119 -22.93712, 133.53243 -22.9374, 133.53286 -22.93784, 133.53321 -22.93823, 133.534179 -22.93936, 133.5352 -22.94053, 133.53592 -22.94138, 133.53742 -22.94312, 133.538739 -22.94466, 133.54137 -22.94774, 133.542399 -22.94894, 133.54297 -22.9496, 133.54329 -22.94998, 133.54399 -22.95079, 133.54407 -22.95088, 133.545369 -22.9524, 133.55162 -22.95968, 133.55239 -22.96057, 133.5592 -22.9685, 133.560849 -22.97042, 133.562649 -22.97252, 133.566319 -22.97679, 133.569459 -22.98047, 133.57325 -22.98485, 133.57542 -22.98739, 133.578139 -22.99055, 133.58211 -22.99517, 133.592739 -23.00754, 133.59552 -23.01077, 133.59719 -23.01271, 133.597379 -23.01293, 133.59754 -23.01311, 133.59767 -23.01327, 133.597829 -23.01345, 133.598 -23.01364, 133.59823 -23.01391, 133.598369 -23.01407, 133.59853 -23.01425, 133.59871 -23.01446, 133.59888 -23.01466, 133.59929 -23.01514, 133.60011 -23.01611, 133.60056 -23.01663, 133.60085 -23.01698, 133.601149 -23.01733, 133.60135 -23.01756, 133.60172 -23.01799, 133.60188 -23.01817, 133.60217 -23.0185, 133.60224 -23.01858, 133.602669 -23.01909, 133.60318 -23.01967, 133.60399 -23.02062, 133.60627 -23.02326, 133.609469 -23.02698, 133.61683 -23.03551, 133.620119 -23.03933, 133.62584 -23.046, 133.63192 -23.05309, 133.63287 -23.0542, 133.64002 -23.06254, 133.64524 -23.06862, 133.64794 -23.07177, 133.65038 -23.0746, 133.655059 -23.08007, 133.657109 -23.08246, 133.659609 -23.08537, 133.66447 -23.09104, 133.66851 -23.09574, 133.66959 -23.097, 133.67047 -23.09803, 133.674749 -23.10302, 133.67848 -23.10739, 133.68207 -23.11159, 133.685679 -23.11582, 133.68885 -23.11954, 133.69116 -23.12224, 133.69719 -23.12928, 133.6973 -23.12941, 133.69885 -23.13123, 133.69972 -23.13225, 133.700629 -23.1333, 133.70093 -23.13366, 133.70127 -23.13406, 133.701519 -23.13435, 133.70279 -23.13583, 133.706189 -23.13981, 133.71006 -23.14434, 133.71125 -23.14574, 133.712889 -23.14765, 133.71373 -23.14864, 133.71382 -23.14875, 133.71455 -23.1496, 133.71484 -23.14994, 133.715769 -23.15102, 133.716829 -23.15226, 133.71718 -23.15268, 133.71723 -23.15274, 133.71946 -23.15534, 133.72729 -23.16447, 133.72924 -23.16673, 133.742539 -23.18213, 133.75046 -23.19132, 133.75291 -23.19416, 133.75404 -23.19546, 133.75486 -23.19641, 133.754969 -23.19654, 133.75574 -23.19743, 133.75617 -23.19793, 133.75663 -23.19846, 133.75707 -23.199, 133.75752 -23.19961, 133.75791 -23.2002, 133.75832 -23.2009, 133.75851 -23.20127, 133.75879 -23.20187, 133.75906 -23.20251, 133.75922 -23.20296, 133.759369 -23.20342, 133.75952 -23.20399, 133.759639 -23.20446, 133.759729 -23.20497, 133.7598 -23.20546, 133.759809 -23.20556, 133.759819 -23.20563, 133.75986 -23.20614, 133.75987 -23.20635, 133.75987 -23.20645, 133.75989 -23.20677, 133.759899 -23.20705, 133.759899 -23.20716, 133.75989 -23.2074, 133.75987 -23.20783, 133.75984 -23.20832, 133.75977 -23.20887, 133.75968 -23.20966, 133.75961 -23.21066, 133.75961 -23.2116, 133.75965 -23.21218, 133.75971 -23.21268, 133.75978 -23.21313, 133.75985 -23.21348, 133.75994 -23.21395, 133.76005 -23.21437, 133.76023 -23.215, 133.76051 -23.21588, 133.76101 -23.21745, 133.762589 -23.22238, 133.76336 -23.22479, 133.76467 -23.22885, 133.76516 -23.23038, 133.76632 -23.23392, 133.767149 -23.23651, 133.76789 -23.2388, 133.76914 -23.24269, 133.769659 -23.24431, 133.77025 -23.24616, 133.770749 -23.24771, 133.77097 -23.2484, 133.771819 -23.25102, 133.772269 -23.25243, 133.77258 -23.25342, 133.77276 -23.25398, 133.77283 -23.25429, 133.772879 -23.25462, 133.77294 -23.25514, 133.77295 -23.25519, 133.772969 -23.25535, 133.77302 -23.25579, 133.773069 -23.2561, 133.7731 -23.25626, 133.773149 -23.25649, 133.773249 -23.25686, 133.77344 -23.25747, 133.77402 -23.25922, 133.77422 -23.25984, 133.774239 -23.2599, 133.77438 -23.26034, 133.77456 -23.26104, 133.77479 -23.26197, 133.77508 -23.26309, 133.77528 -23.26386, 133.77545 -23.26444, 133.77564 -23.26503, 133.775939 -23.26598, 133.77607 -23.26637, 133.77644 -23.26754, 133.77689 -23.26892, 133.77712 -23.26963, 133.77739 -23.2705, 133.777639 -23.27125, 133.77784 -23.27189, 133.77815 -23.27285, 133.77839 -23.27361, 133.77857 -23.27417, 133.77901 -23.27553, 133.77945 -23.27691, 133.77977 -23.27789, 133.780239 -23.27937, 133.78039 -23.27983, 133.78061 -23.28052, 133.78069 -23.28077, 133.780939 -23.28157, 133.78198 -23.28482, 133.7826 -23.28675, 133.782909 -23.28768, 133.78332 -23.28897, 133.78341 -23.28927, 133.78375 -23.29037, 133.78433 -23.29215, 133.785159 -23.29477, 133.786059 -23.29756, 133.78701 -23.30051, 133.788109 -23.30393, 133.78845 -23.305, 133.78866 -23.30564, 133.78869 -23.30572, 133.78888 -23.30631, 133.78913 -23.30711, 133.78975 -23.30901, 133.79075 -23.31209, 133.79135 -23.31391, 133.791789 -23.31527, 133.79234 -23.31698, 133.79271 -23.31811, 133.79297 -23.3189, 133.79368 -23.32105, 133.794289 -23.32294, 133.79503 -23.32523, 133.79549 -23.32661, 133.796079 -23.32844, 133.79641 -23.32945, 133.7966 -23.33004, 133.79723 -23.33198, 133.79792 -23.33409, 133.798589 -23.33615, 133.7996 -23.33922, 133.801089 -23.34379, 133.80178 -23.3459, 133.80294 -23.34946, 133.80436 -23.35383, 133.80461 -23.35462, 133.80538 -23.35695, 133.80608 -23.35909, 133.806289 -23.35975, 133.8068 -23.36131, 133.807269 -23.36273, 133.807989 -23.36494, 133.80905 -23.36822, 133.80954 -23.36971, 133.81267 -23.37929, 133.813359 -23.38139, 133.81473 -23.38559, 133.81751 -23.39412, 133.81973 -23.40091, 133.821159 -23.40533, 133.82272 -23.41007, 133.82367 -23.41301, 133.82702 -23.42327, 133.82825 -23.42705, 133.8308 -23.43485, 133.831189 -23.43606, 133.83155 -23.43719, 133.83206 -23.43873, 133.83263 -23.44047, 133.83286 -23.44116, 133.832879 -23.44122, 133.83292 -23.44134, 133.833069 -23.44183, 133.83313 -23.44202, 133.833229 -23.44233, 133.83334 -23.44264, 133.83364 -23.44357, 133.83409 -23.44496, 133.834849 -23.44729, 133.83621 -23.45147, 133.8368 -23.45331, 133.836999 -23.45392, 133.837169 -23.45442, 133.83756 -23.45562, 133.83786 -23.45654, 133.837889 -23.45664, 133.83809 -23.45725, 133.83848 -23.45845, 133.83873 -23.45924, 133.8391 -23.46037, 133.83928 -23.46089, 133.83992 -23.4629, 133.84065 -23.46512, 133.84098 -23.46616, 133.84161 -23.4681, 133.84189 -23.46897, 133.84252 -23.47087, 133.84378 -23.47474, 133.8452 -23.4791, 133.845769 -23.48085, 133.84636 -23.48267, 133.84705 -23.48477, 133.8478 -23.48705, 133.84906 -23.49087, 133.84979 -23.49308, 133.850159 -23.4942, 133.85045 -23.49511, 133.850879 -23.49638, 133.85127 -23.49757, 133.85175 -23.49906, 133.852849 -23.50239, 133.85344 -23.50419, 133.85373 -23.50507, 133.85593 -23.51175, 133.856709 -23.51407, 133.857239 -23.51571, 133.8574 -23.51622, 133.85783 -23.51754, 133.858229 -23.51875, 133.85828 -23.5189, 133.859199 -23.52174, 133.85931 -23.52209, 133.85979 -23.52349, 133.85987 -23.52374, 133.86009 -23.52436, 133.86061 -23.52594, 133.86084 -23.52664, 133.861089 -23.52739, 133.861259 -23.52791, 133.86276 -23.53247, 133.863329 -23.53419, 133.864219 -23.53686, 133.864479 -23.53764, 133.86451 -23.53774, 133.86491 -23.53897, 133.86534 -23.54028, 133.86549 -23.54075, 133.865659 -23.54131, 133.86576 -23.54168, 133.8659 -23.54221, 133.86607 -23.54295, 133.866189 -23.54362, 133.86626 -23.54407, 133.86635 -23.54469, 133.86653 -23.54605, 133.86669 -23.54749, 133.86684 -23.54861, 133.86689 -23.54899, 133.86697 -23.54949, 133.86712 -23.55056, 133.86722 -23.55114, 133.86733 -23.55164, 133.86751 -23.55245, 133.86758 -23.55277, 133.867719 -23.55331, 133.86795 -23.55413, 133.8682 -23.55493, 133.86845 -23.55566, 133.86882 -23.55664, 133.86922 -23.55767, 133.869779 -23.55912, 133.87145 -23.56334, 133.8717 -23.56397, 133.87195 -23.56461, 133.87241 -23.56576, 133.8725 -23.56599, 133.87262 -23.56628, 133.87292 -23.56701, 133.873079 -23.56743, 133.873539 -23.56865, 133.8743 -23.57062, 133.87447 -23.57105, 133.87507 -23.57259, 133.87616 -23.57533, 133.87663 -23.57652, 133.87697 -23.57746, 133.877109 -23.5779, 133.87727 -23.57837, 133.87754 -23.57938, 133.87779 -23.58037, 133.87791 -23.58092, 133.87803 -23.58144, 133.87814 -23.58199, 133.87822 -23.58252, 133.87834 -23.58342, 133.87839 -23.58376, 133.87844 -23.58422, 133.87856 -23.58567, 133.878639 -23.5867, 133.87879 -23.58872, 133.878899 -23.59012, 133.879259 -23.59497, 133.87948 -23.59767, 133.87957 -23.59908, 133.87959 -23.5994, 133.8796 -23.59954, 133.87961 -23.59976, 133.879619 -23.59986, 133.87964 -23.6001, 133.87975 -23.60127, 133.87982 -23.60182, 133.87992 -23.6025, 133.8801 -23.60356, 133.88021 -23.6043, 133.88038 -23.60534, 133.880429 -23.60564, 133.88049 -23.60598, 133.88062 -23.60684, 133.88068 -23.60751, 133.88068 -23.60805, 133.88067 -23.60833, 133.88066 -23.60877, 133.88063 -23.60917, 133.88062 -23.60936, 133.880609 -23.60956, 133.88059 -23.60979, 133.88057 -23.60995, 133.880519 -23.61027, 133.88045 -23.61069, 133.88035 -23.61117, 133.88012 -23.61206, 133.88002 -23.61239, 133.87991 -23.6127, 133.87984 -23.61291, 133.87975 -23.61318, 133.87964 -23.61346, 133.87951 -23.61375, 133.87939 -23.614, 133.87919 -23.61435, 133.878989 -23.61474, 133.87885 -23.61502, 133.878549 -23.6155, 133.87843 -23.61568, 133.87825 -23.61593, 133.87814 -23.61608, 133.877839 -23.61648, 133.877749 -23.61661, 133.87743 -23.61703, 133.87701 -23.61753, 133.87687 -23.61768, 133.876569 -23.61801, 133.876029 -23.61861, 133.87538 -23.61938, 133.87493 -23.61994, 133.87471 -23.62022, 133.87422 -23.6209, 133.87374 -23.62161, 133.87348 -23.62199, 133.8733 -23.62228, 133.87304 -23.62271, 133.872729 -23.62325, 133.87194 -23.62464, 133.87117 -23.62602, 133.86952 -23.62895, 133.8689 -23.63007, 133.86865 -23.63052, 133.86838 -23.63099, 133.86806 -23.63156, 133.86787 -23.63188, 133.867359 -23.63273, 133.86724 -23.63291, 133.86693 -23.63337, 133.86657 -23.63387, 133.86587 -23.63474, 133.865469 -23.6352, 133.865119 -23.63558, 133.86464 -23.63606, 133.864319 -23.6364, 133.86409 -23.63666, 133.86371 -23.63713, 133.86348 -23.63745, 133.86322 -23.63785, 133.863059 -23.63812, 133.86291 -23.6384, 133.86273 -23.63877, 133.86258 -23.63912, 133.862349 -23.63979, 133.86219 -23.64039, 133.8621 -23.64079, 133.86204 -23.64115, 133.86197 -23.64159, 133.86196 -23.64189, 133.86196 -23.64237, 133.861979 -23.64285, 133.862 -23.64328, 133.86206 -23.64418, 133.86212 -23.6454, 133.862159 -23.64604, 133.8622 -23.6469, 133.862259 -23.64803, 133.86229 -23.64864, 133.86239 -23.6507, 133.86247 -23.65209, 133.86248 -23.65251, 133.86249 -23.65329, 133.86247 -23.65359, 133.862439 -23.65396, 133.86241 -23.65418, 133.86238 -23.65449, 133.86232 -23.65487, 133.86223 -23.65538, 133.8621 -23.65597, 133.86191 -23.65661, 133.86167 -23.6573, 133.861359 -23.65815, 133.861079 -23.65892, 133.86083 -23.65957, 133.86066 -23.66014, 133.8606 -23.66046, 133.860549 -23.66078, 133.86053 -23.66109, 133.86053 -23.66137, 133.86057 -23.66179, 133.86061 -23.66205, 133.86071 -23.66244, 133.86086 -23.66285, 133.86093 -23.663, 133.86106 -23.66327, 133.861169 -23.66344, 133.86129 -23.66363, 133.86138 -23.66375, 133.86155 -23.66396, 133.8617 -23.66413, 133.86192 -23.66436, 133.86197 -23.66441, 133.862079 -23.66451, 133.86221 -23.66461, 133.862419 -23.66472, 133.86255 -23.66481, 133.86275 -23.66494, 133.863139 -23.66518, 133.86379 -23.66558, 133.864229 -23.66585, 133.864399 -23.66595, 133.864669 -23.66612, 133.865289 -23.6665, 133.865479 -23.66662, 133.86564 -23.66672, 133.865919 -23.6669, 133.866549 -23.66728, 133.866899 -23.66748, 133.86721 -23.66767, 133.867529 -23.66786, 133.86782 -23.66803, 133.86812 -23.6682, 133.868339 -23.66833, 133.86863 -23.66851, 133.868959 -23.66871, 133.86921 -23.66886, 133.86935 -23.66895, 133.86949 -23.66905, 133.86975 -23.66924, 133.86998 -23.66943, 133.87011 -23.66953, 133.870309 -23.66971, 133.87038 -23.66978, 133.87063 -23.67003, 133.87073 -23.67015, 133.87081 -23.67024, 133.87089 -23.67034, 133.87101 -23.67049, 133.87132 -23.67089, 133.87152 -23.67114, 133.87169 -23.67136, 133.872179 -23.67201, 133.87243 -23.67235, 133.87269 -23.6727, 133.87302 -23.67313, 133.873169 -23.67333, 133.87324 -23.67343, 133.87337 -23.6736, 133.87352 -23.6738, 133.87369 -23.67403, 133.87401 -23.67446, 133.87422 -23.67476, 133.87427 -23.67485, 133.874329 -23.67497, 133.87439 -23.67508, 133.87444 -23.67519, 133.87448 -23.67529, 133.87453 -23.67548, 133.87457 -23.67565, 133.874599 -23.67578, 133.87463 -23.67593, 133.87467 -23.67613, 133.874699 -23.67631, 133.87474 -23.67655, 133.87476 -23.67672, 133.874779 -23.67695, 133.874789 -23.67717, 133.874789 -23.67739, 133.874779 -23.6776, 133.87475 -23.67794, 133.87471 -23.67828, 133.87468 -23.67854, 133.87464 -23.67884, 133.87458 -23.67936, 133.87453 -23.67978, 133.87447 -23.68029, 133.87445 -23.68053, 133.874419 -23.68091, 133.8744 -23.68121, 133.87438 -23.68151, 133.87436 -23.68175, 133.87435 -23.68196, 133.87432 -23.68253, 133.87431 -23.68294, 133.874239 -23.68391, 133.87421 -23.68432, 133.87419 -23.68462, 133.874159 -23.6849, 133.87413 -23.68513, 133.87412 -23.68526, 133.87411 -23.68543, 133.87411 -23.68559, 133.87412 -23.68578, 133.87414 -23.686, 133.87418 -23.6863, 133.874239 -23.68663, 133.87428 -23.68681, 133.87431 -23.68696, 133.874339 -23.68709, 133.8744 -23.68733, 133.87448 -23.68759, 133.87454 -23.68776, 133.87462 -23.68796, 133.87468 -23.6881, 133.87475 -23.68825, 133.87485 -23.68844, 133.87489 -23.68852, 133.87498 -23.68867, 133.87512 -23.68889, 133.87521 -23.68902, 133.8753 -23.68914, 133.87553 -23.68943, 133.87579 -23.68977, 133.87598 -23.69001, 133.87611 -23.69019, 133.876219 -23.69034, 133.87662 -23.69087, 133.87699 -23.69133, 133.87727 -23.69169, 133.87758 -23.69208, 133.8777 -23.69223, 133.8778 -23.69236, 133.87791 -23.6925, 133.87805 -23.69265, 133.87817 -23.69277, 133.87831 -23.69289, 133.878459 -23.69302, 133.878989 -23.69341, 133.87914 -23.69353, 133.87925 -23.69365, 133.87938 -23.6938, 133.87946 -23.69391, 133.87952 -23.69401, 133.87958 -23.69415, 133.879629 -23.69429, 133.87966 -23.69442, 133.87968 -23.69453, 133.87968 -23.69472, 133.87968 -23.69484, 133.87967 -23.69492, 133.8796 -23.69515, 133.87952 -23.69536, 133.87941 -23.69557, 133.879269 -23.69586, 133.878989 -23.69641, 133.87886 -23.69668, 133.87868 -23.697, 133.87861 -23.69719, 133.87848 -23.69747, 133.87832 -23.69788, 133.87816 -23.69834, 133.87794 -23.69888, 133.87776 -23.69928, 133.877569 -23.69966, 133.87745 -23.69991, 133.87724 -23.70034, 133.87713 -23.70054, 133.87695 -23.70092, 133.87682 -23.70117, 133.87652 -23.70184, 133.87638 -23.70216, 133.87633 -23.7023, 133.87624 -23.70259, 133.87615 -23.70282, 133.87608 -23.70305, 133.87584 -23.70384, 133.87575 -23.70414, 133.87567 -23.70436, 133.87553 -23.7047, 133.87522 -23.70534, 133.8751 -23.70558, 133.875 -23.70579, 133.87489 -23.70601, 133.87476 -23.70628, 133.87466 -23.70648, 133.87453 -23.70675, 133.874329 -23.70715, 133.87521 -23.70753, 133.875689 -23.70773, 133.876839 -23.70822, 133.87734 -23.70841, 133.87752 -23.70846, 133.87786 -23.70859, 133.87778 -23.70874, 133.87761 -23.70905, 133.87745 -23.70934, 133.87735 -23.70952, 133.87718 -23.70983, 133.87709 -23.71, 133.87691 -23.71033, 133.87668 -23.71075, 133.87651 -23.71106, 133.87644 -23.71119, 133.87638 -23.7113, 133.87593 -23.7111, 133.875409 -23.71088, 133.87526 -23.71081, 133.8751569917 -23.7107670799)" +-19.6524855,134.1887752,-21.5313917,133.8888313,4,Tennant Creek,"LINESTRING (134.1888055916 -19.6524951901, 134.18882 -19.65245, 134.18902 -19.6518, 134.18915 -19.65184, 134.18894 -19.65247, 134.1885 -19.65386, 134.18807 -19.65519, 134.18769 -19.65638, 134.187639 -19.65653, 134.1875 -19.65697, 134.18736 -19.65737, 134.18731 -19.65749, 134.18727 -19.65762, 134.18723 -19.65773, 134.18717 -19.6578, 134.18715 -19.65787, 134.187099 -19.65801, 134.18694 -19.65847, 134.1868 -19.65898, 134.186559 -19.65979, 134.18636 -19.66052, 134.1861 -19.66144, 134.18564 -19.66294, 134.18561 -19.66303, 134.18544 -19.66357, 134.18539 -19.66373, 134.18534 -19.66389, 134.185219 -19.66427, 134.1851 -19.66464, 134.18475 -19.66575, 134.18456 -19.6663, 134.18449 -19.66652, 134.18403 -19.66796, 134.18385 -19.66853, 134.18364 -19.66919, 134.18337 -19.67003, 134.18297 -19.67127, 134.18199 -19.67429, 134.18178 -19.67493, 134.18114 -19.67694, 134.18094 -19.67755, 134.18087 -19.6778, 134.18079 -19.67806, 134.180579 -19.67865, 134.180309 -19.67956, 134.18 -19.68048, 134.17974 -19.68128, 134.17955 -19.68189, 134.179319 -19.6826, 134.178239 -19.686, 134.178159 -19.68624, 134.17787 -19.68716, 134.1776 -19.68795, 134.17727 -19.68897, 134.17718 -19.68925, 134.17706 -19.68962, 134.17693 -19.69008, 134.17686 -19.69039, 134.17679 -19.69082, 134.17675 -19.69114, 134.17671 -19.69197, 134.17671 -19.69214, 134.176719 -19.69234, 134.17674 -19.69253, 134.176809 -19.69318, 134.17684 -19.6934, 134.176889 -19.69368, 134.17705 -19.69427, 134.17712 -19.69448, 134.177429 -19.69529, 134.17747 -19.69539, 134.17765 -19.69581, 134.177979 -19.69659, 134.17859 -19.6981, 134.17918 -19.69955, 134.1792 -19.69959, 134.17938 -19.70003, 134.17965 -19.7007, 134.18 -19.70155, 134.18077 -19.70345, 134.18086 -19.70366, 134.181189 -19.70448, 134.18142 -19.70505, 134.18193 -19.70627, 134.18248 -19.70761, 134.182989 -19.70891, 134.1835 -19.71016, 134.18512 -19.71407, 134.18641 -19.71726, 134.1877 -19.72042, 134.188629 -19.7227, 134.18936 -19.72449, 134.18977 -19.72547, 134.19012 -19.72633, 134.190859 -19.72811, 134.19108 -19.7287, 134.19124 -19.72919, 134.191399 -19.72982, 134.19152 -19.73041, 134.1916 -19.73102, 134.191669 -19.73167, 134.1918 -19.7331, 134.19198 -19.73501, 134.192119 -19.73651, 134.192299 -19.73832, 134.19236 -19.73895, 134.192919 -19.74478, 134.19318 -19.74743, 134.19321 -19.74772, 134.19333 -19.74903, 134.19339 -19.74986, 134.1934 -19.75071, 134.1934 -19.75162, 134.1934 -19.75222, 134.19344 -19.75294, 134.19353 -19.7539, 134.193559 -19.75418, 134.193639 -19.75505, 134.19386 -19.75725, 134.19407 -19.75948, 134.194269 -19.76163, 134.1947 -19.76611, 134.19512 -19.7705, 134.19518 -19.77114, 134.19524 -19.77178, 134.19538 -19.77325, 134.19575 -19.77705, 134.19613 -19.78092, 134.19647 -19.78458, 134.196859 -19.7887, 134.19943 -19.81561, 134.20024 -19.82408, 134.200369 -19.82543, 134.20055 -19.82745, 134.20073 -19.82919, 134.200889 -19.83087, 134.20106 -19.83263, 134.20123 -19.83434, 134.201429 -19.83644, 134.201519 -19.83748, 134.20159 -19.8381, 134.20173 -19.83963, 134.2019 -19.8413, 134.202069 -19.84308, 134.20218 -19.84422, 134.20221 -19.84458, 134.202419 -19.84684, 134.202779 -19.85048, 134.203129 -19.85412, 134.20347 -19.85771, 134.20383 -19.86145, 134.20405 -19.86377, 134.20426 -19.86594, 134.20446 -19.86807, 134.20467 -19.87024, 134.20508 -19.87455, 134.20549 -19.87882, 134.20561 -19.87996, 134.20575 -19.88145, 134.20605 -19.88454, 134.20642 -19.88841, 134.206719 -19.89158, 134.20692 -19.89365, 134.207169 -19.89617, 134.20731 -19.89768, 134.20749 -19.89951, 134.20755 -19.90019, 134.20767 -19.90139, 134.208 -19.90482, 134.2084 -19.90898, 134.20848 -19.90983, 134.2087 -19.91204, 134.20892 -19.91437, 134.20937 -19.91894, 134.20969 -19.92231, 134.2099 -19.92445, 134.2101 -19.92647, 134.21018 -19.92731, 134.21045 -19.93009, 134.21073 -19.93299, 134.21094 -19.93519, 134.21125 -19.93837, 134.211549 -19.94154, 134.21189 -19.94495, 134.21224 -19.94856, 134.21264 -19.95265, 134.21306 -19.95687, 134.213159 -19.9579, 134.21341 -19.96063, 134.213609 -19.96261, 134.21368 -19.96334, 134.213869 -19.96532, 134.213969 -19.96603, 134.21402 -19.96627, 134.21411 -19.9666, 134.214319 -19.96716, 134.21458 -19.96778, 134.21479 -19.96838, 134.21492 -19.96895, 134.21498 -19.96946, 134.21508 -19.97043, 134.21509 -19.97052, 134.21526 -19.9724, 134.21536 -19.97336, 134.21565 -19.97637, 134.215949 -19.97948, 134.21624 -19.98254, 134.21653 -19.98555, 134.21663 -19.98648, 134.21677 -19.98805, 134.216839 -19.9887, 134.21695 -19.98996, 134.21716 -19.99199, 134.21735 -19.99401, 134.21748 -19.99536, 134.217559 -19.9962, 134.21775 -19.99809, 134.21795 -20.00029, 134.21822 -20.00301, 134.21853 -20.00622, 134.21881 -20.00915, 134.21893 -20.01041, 134.2191 -20.01216, 134.21914 -20.01278, 134.21914 -20.01332, 134.2191 -20.01373, 134.219 -20.01432, 134.21883 -20.01493, 134.21861 -20.01553, 134.21834 -20.01611, 134.21802 -20.01677, 134.21774 -20.01735, 134.21731 -20.01822, 134.216389 -20.02011, 134.215309 -20.02233, 134.214239 -20.02453, 134.212079 -20.02894, 134.20992 -20.03336, 134.20839 -20.03649, 134.20776 -20.03778, 134.20711 -20.0392, 134.20685 -20.03982, 134.20652 -20.04072, 134.20632 -20.04132, 134.20596 -20.04253, 134.2058 -20.04313, 134.20559 -20.04405, 134.205469 -20.04468, 134.20527 -20.04592, 134.205189 -20.04654, 134.205099 -20.04749, 134.20507 -20.04813, 134.20504 -20.04913, 134.20504 -20.05, 134.20508 -20.05094, 134.20515 -20.05188, 134.20531 -20.05313, 134.205459 -20.05406, 134.20558 -20.05468, 134.20579 -20.0556, 134.20607 -20.05664, 134.20692 -20.05956, 134.20782 -20.06268, 134.20818 -20.06392, 134.20839 -20.06466, 134.208499 -20.06505, 134.208949 -20.06653, 134.20945 -20.06833, 134.20983 -20.06965, 134.21058 -20.07227, 134.21189 -20.07676, 134.21282 -20.07999, 134.2133 -20.08166, 134.21409 -20.08438, 134.21434 -20.08529, 134.21506 -20.08773, 134.21575 -20.09013, 134.21608 -20.09126, 134.21709 -20.09479, 134.21812 -20.09833, 134.21862 -20.10006, 134.21918 -20.102, 134.21957 -20.10336, 134.22028 -20.10581, 134.22055 -20.10685, 134.22069 -20.10756, 134.22078 -20.10831, 134.22083 -20.10894, 134.22085 -20.10973, 134.22086 -20.11052, 134.22087 -20.11295, 134.22089 -20.11631, 134.2209 -20.11794, 134.22092 -20.12131, 134.22093 -20.12358, 134.22093 -20.12507, 134.22095 -20.1267, 134.22095 -20.12897, 134.22097 -20.13076, 134.22097 -20.13334, 134.22099 -20.13493, 134.221 -20.13714, 134.22102 -20.14063, 134.22103 -20.14379, 134.22104 -20.14563, 134.22106 -20.1479, 134.22106 -20.15007, 134.22109 -20.15329, 134.2211 -20.1563, 134.22111 -20.15785, 134.22112 -20.15953, 134.22113 -20.16064, 134.22113 -20.16256, 134.22114 -20.16346, 134.22115 -20.16465, 134.22117 -20.16678, 134.22117 -20.1682, 134.22119 -20.17131, 134.22119 -20.17298, 134.22121 -20.17563, 134.22121 -20.17699, 134.22124 -20.18173, 134.22125 -20.18332, 134.22125 -20.1839, 134.22125 -20.18457, 134.22127 -20.18683, 134.22127 -20.18791, 134.22128 -20.18907, 134.22131 -20.19488, 134.22132 -20.19613, 134.22133 -20.19814, 134.22133 -20.19998, 134.22134 -20.2014, 134.22135 -20.20205, 134.22136 -20.20349, 134.22137 -20.20492, 134.22138 -20.20619, 134.22138 -20.20755, 134.22139 -20.20839, 134.22139 -20.20998, 134.2214 -20.21087, 134.2214 -20.21267, 134.22141 -20.21351, 134.22142 -20.21482, 134.22143 -20.2168, 134.22144 -20.21972, 134.22144 -20.22161, 134.22145 -20.2233, 134.22146 -20.22497, 134.22146 -20.22587, 134.22148 -20.22671, 134.2215 -20.2271, 134.22153 -20.22743, 134.22172 -20.22907, 134.22188 -20.23033, 134.22201 -20.23135, 134.22215 -20.23245, 134.22236 -20.23409, 134.2225 -20.23504, 134.22265 -20.23597, 134.22281 -20.23697, 134.22291 -20.23765, 134.22317 -20.23937, 134.22333 -20.24038, 134.22356 -20.24188, 134.22382 -20.24392, 134.22402 -20.24545, 134.22432 -20.24786, 134.2256 -20.25803, 134.22582 -20.25977, 134.22709 -20.27005, 134.2274 -20.27253, 134.22833 -20.27985, 134.22863 -20.28227, 134.22887 -20.28426, 134.22902 -20.28565, 134.22915 -20.28681, 134.22919 -20.28745, 134.22923 -20.28805, 134.22929 -20.28907, 134.22942 -20.2909, 134.22952 -20.29227, 134.22963 -20.29368, 134.22976 -20.29503, 134.22981 -20.29549, 134.22993 -20.2966, 134.23012 -20.29817, 134.23067 -20.30259, 134.23117 -20.30674, 134.23168 -20.31081, 134.23219 -20.31506, 134.23284 -20.32035, 134.23311 -20.32255, 134.23331 -20.324, 134.2335 -20.32524, 134.23377 -20.32687, 134.23395 -20.32805, 134.2341 -20.32913, 134.23425 -20.33037, 134.23443 -20.33179, 134.23462 -20.33333, 134.23489 -20.33558, 134.23494 -20.33596, 134.23499 -20.33642, 134.23527 -20.33871, 134.23587 -20.34366, 134.23612 -20.34555, 134.23668 -20.34923, 134.23691 -20.35098, 134.23722 -20.35356, 134.23747 -20.35557, 134.23799 -20.35989, 134.23814 -20.36104, 134.23845 -20.36366, 134.23873 -20.36597, 134.23919 -20.36966, 134.23946 -20.37192, 134.23978 -20.37452, 134.24016 -20.37764, 134.24048 -20.38031, 134.24063 -20.38146, 134.24096 -20.38417, 134.24108 -20.38519, 134.24126 -20.38664, 134.24142 -20.38792, 134.24184 -20.39146, 134.24217 -20.39412, 134.24245 -20.39637, 134.24258 -20.3975, 134.24299 -20.40082, 134.24322 -20.4027, 134.24342 -20.40431, 134.24353 -20.40528, 134.24368 -20.40643, 134.24405 -20.40955, 134.24424 -20.411, 134.2444 -20.41235, 134.24478 -20.41549, 134.24515 -20.41854, 134.24573 -20.42326, 134.2458 -20.42381, 134.24591 -20.42477, 134.24594 -20.42501, 134.24608 -20.42615, 134.2462 -20.42713, 134.24636 -20.42836, 134.24642 -20.4288, 134.24646 -20.42911, 134.2465 -20.42939, 134.24659 -20.42996, 134.24666 -20.43042, 134.24681 -20.43136, 134.24684 -20.43154, 134.24702 -20.43275, 134.24717 -20.43372, 134.24775 -20.43747, 134.24808 -20.43984, 134.24824 -20.44105, 134.24827 -20.44125, 134.24829 -20.44143, 134.24847 -20.44271, 134.2487 -20.44448, 134.24873 -20.44472, 134.24883 -20.44555, 134.24912 -20.44799, 134.2493 -20.4495, 134.24957 -20.4517, 134.25 -20.45528, 134.25022 -20.45712, 134.25032 -20.45789, 134.25048 -20.45925, 134.25076 -20.46154, 134.25101 -20.46367, 134.2516 -20.46855, 134.25241 -20.47525, 134.25264 -20.47717, 134.25273 -20.47801, 134.25282 -20.47903, 134.25285 -20.4795, 134.25289 -20.4808, 134.25289 -20.48163, 134.25289 -20.48237, 134.25287 -20.48273, 134.25279 -20.48409, 134.25269 -20.4851, 134.25252 -20.48643, 134.25242 -20.48708, 134.25227 -20.48789, 134.25219 -20.4883, 134.25204 -20.489, 134.25182 -20.49, 134.25157 -20.49108, 134.25138 -20.49191, 134.25124 -20.49262, 134.25116 -20.49323, 134.25113 -20.49383, 134.25113 -20.49431, 134.25119 -20.49491, 134.25122 -20.49515, 134.25124 -20.49525, 134.25129 -20.49552, 134.25131 -20.49564, 134.25145 -20.49621, 134.25163 -20.49677, 134.25175 -20.49709, 134.252 -20.49767, 134.25223 -20.49812, 134.25245 -20.4985, 134.25264 -20.49879, 134.25287 -20.49911, 134.25343 -20.49979, 134.2542 -20.50061, 134.25465 -20.50108, 134.25547 -20.50196, 134.25693 -20.50351, 134.25854 -20.50523, 134.25951 -20.50626, 134.26057 -20.5074, 134.26139 -20.50834, 134.26219 -20.50931, 134.26277 -20.51003, 134.26332 -20.51077, 134.26375 -20.51136, 134.26405 -20.51175, 134.2646 -20.51251, 134.26513 -20.51322, 134.26563 -20.51388, 134.26615 -20.51461, 134.26652 -20.51519, 134.26698 -20.51602, 134.26754 -20.51703, 134.26873 -20.51916, 134.2696 -20.52071, 134.27007 -20.52154, 134.27081 -20.52288, 134.272 -20.525, 134.27236 -20.52563, 134.27311 -20.52698, 134.27342 -20.52752, 134.27371 -20.52805, 134.27382 -20.52825, 134.27398 -20.52856, 134.27419 -20.529, 134.27435 -20.52938, 134.2745 -20.52981, 134.27465 -20.53034, 134.27472 -20.53064, 134.27479 -20.531, 134.27486 -20.53154, 134.2749 -20.53233, 134.27489 -20.53287, 134.27485 -20.53342, 134.27481 -20.53373, 134.27472 -20.53416, 134.27462 -20.53458, 134.27453 -20.53492, 134.27435 -20.5355, 134.27406 -20.53639, 134.27377 -20.53733, 134.2737 -20.53756, 134.27362 -20.5379, 134.27352 -20.53847, 134.27346 -20.53898, 134.27343 -20.53939, 134.27343 -20.53988, 134.27345 -20.54036, 134.27351 -20.54088, 134.27361 -20.54156, 134.27368 -20.5421, 134.27371 -20.54263, 134.27372 -20.54309, 134.27371 -20.54337, 134.27369 -20.54367, 134.27363 -20.54413, 134.27356 -20.54457, 134.27346 -20.545, 134.27337 -20.54535, 134.27327 -20.54566, 134.27313 -20.54603, 134.27294 -20.54649, 134.27267 -20.54704, 134.27256 -20.54725, 134.27239 -20.54752, 134.27211 -20.54795, 134.27186 -20.54828, 134.27157 -20.54864, 134.27111 -20.54913, 134.27075 -20.54946, 134.27015 -20.54996, 134.26975 -20.55025, 134.26904 -20.55069, 134.26846 -20.55099, 134.26827 -20.55107, 134.26753 -20.55139, 134.26681 -20.55173, 134.26672 -20.55177, 134.26649 -20.55187, 134.26617 -20.55201, 134.26547 -20.5523, 134.2645 -20.55268, 134.26396 -20.55291, 134.26308 -20.55328, 134.26235 -20.55359, 134.26193 -20.5538, 134.26158 -20.55399, 134.26116 -20.55424, 134.26082 -20.55446, 134.26047 -20.55471, 134.26013 -20.55499, 134.25979 -20.55528, 134.2595 -20.55557, 134.25926 -20.55581, 134.25889 -20.55622, 134.25852 -20.5567, 134.25834 -20.55694, 134.25818 -20.55719, 134.25801 -20.55746, 134.25786 -20.55772, 134.25761 -20.55822, 134.25741 -20.55868, 134.25724 -20.55912, 134.25711 -20.55953, 134.25696 -20.56012, 134.25685 -20.56069, 134.25678 -20.56128, 134.25677 -20.56142, 134.25675 -20.56174, 134.25675 -20.56207, 134.25677 -20.56258, 134.25681 -20.56305, 134.25688 -20.56353, 134.25697 -20.56419, 134.25713 -20.56522, 134.25725 -20.56606, 134.2575 -20.56771, 134.25755 -20.56806, 134.25759 -20.56859, 134.25761 -20.56916, 134.25759 -20.56961, 134.25758 -20.56984, 134.25754 -20.57019, 134.25748 -20.57059, 134.25747 -20.57064, 134.25734 -20.57123, 134.2572 -20.57173, 134.25704 -20.57216, 134.2569 -20.57252, 134.25683 -20.57268, 134.25662 -20.5731, 134.25646 -20.57339, 134.25624 -20.57374, 134.25592 -20.57422, 134.25561 -20.57462, 134.25539 -20.57487, 134.25506 -20.57522, 134.25469 -20.57561, 134.25428 -20.576, 134.25385 -20.57643, 134.25304 -20.57724, 134.25242 -20.57784, 134.25109 -20.57916, 134.25035 -20.57989, 134.2498 -20.58042, 134.24927 -20.58098, 134.24911 -20.58116, 134.24891 -20.58141, 134.24871 -20.58167, 134.24854 -20.58191, 134.24835 -20.5822, 134.24818 -20.58249, 134.24804 -20.58274, 134.2479 -20.58301, 134.24774 -20.58334, 134.24749 -20.5839, 134.24688 -20.58527, 134.24654 -20.58602, 134.24551 -20.58832, 134.24518 -20.58908, 134.2448 -20.58991, 134.2444 -20.59075, 134.24419 -20.59114, 134.24399 -20.59145, 134.24369 -20.59188, 134.24337 -20.59229, 134.24308 -20.59262, 134.2428 -20.59293, 134.24254 -20.59318, 134.24209 -20.59356, 134.24146 -20.59412, 134.24093 -20.59459, 134.2395 -20.59585, 134.23936 -20.59597, 134.23874 -20.59651, 134.23801 -20.59716, 134.23629 -20.59868, 134.2345 -20.60025, 134.23295 -20.60162, 134.23098 -20.60335, 134.23041 -20.60384, 134.229 -20.60509, 134.22748 -20.60643, 134.22671 -20.60713, 134.22637 -20.60746, 134.22598 -20.60784, 134.22578 -20.60806, 134.22527 -20.6086, 134.22487 -20.60904, 134.22427 -20.60975, 134.22359 -20.61062, 134.22319 -20.61116, 134.2227 -20.61186, 134.22226 -20.61255, 134.22178 -20.61335, 134.2214 -20.61404, 134.22111 -20.61459, 134.22084 -20.61516, 134.22052 -20.61583, 134.22029 -20.61636, 134.22001 -20.61706, 134.21979 -20.61766, 134.21964 -20.6181, 134.21931 -20.61916, 134.21918 -20.6196, 134.21903 -20.62017, 134.21892 -20.62064, 134.21878 -20.62129, 134.21861 -20.62233, 134.21848 -20.62316, 134.21837 -20.6243, 134.21832 -20.62511, 134.2183 -20.62605, 134.2183 -20.62681, 134.21832 -20.62746, 134.21834 -20.62773, 134.21838 -20.6284, 134.21845 -20.62908, 134.21849 -20.62939, 134.21859 -20.63018, 134.21869 -20.63074, 134.21872 -20.6309, 134.21877 -20.63117, 134.21892 -20.63187, 134.219 -20.63223, 134.2192 -20.63302, 134.21939 -20.63367, 134.21984 -20.63517, 134.22014 -20.63619, 134.22043 -20.63719, 134.22094 -20.63887, 134.22115 -20.63959, 134.22116 -20.63962, 134.22145 -20.64058, 134.22191 -20.64212, 134.22205 -20.6426, 134.22269 -20.64477, 134.22338 -20.64709, 134.22365 -20.64799, 134.22398 -20.64912, 134.2245 -20.65085, 134.22471 -20.65155, 134.22522 -20.65323, 134.22615 -20.65638, 134.22724 -20.66006, 134.22772 -20.66173, 134.22792 -20.66253, 134.22817 -20.66361, 134.22831 -20.66425, 134.22856 -20.66548, 134.22917 -20.66857, 134.22987 -20.67206, 134.23027 -20.67409, 134.23056 -20.67556, 134.23082 -20.67683, 134.23113 -20.6784, 134.23189 -20.6822, 134.23237 -20.68464, 134.23304 -20.68804, 134.23347 -20.69016, 134.23405 -20.69311, 134.23486 -20.69711, 134.23523 -20.69899, 134.23565 -20.70112, 134.23589 -20.70229, 134.23633 -20.70451, 134.23706 -20.70816, 134.23751 -20.71038, 134.23778 -20.71175, 134.23848 -20.71525, 134.2385 -20.71535, 134.2386 -20.71586, 134.23869 -20.71631, 134.23973 -20.72155, 134.24073 -20.72651, 134.24105 -20.72814, 134.24171 -20.73144, 134.24205 -20.7331, 134.24227 -20.73427, 134.24245 -20.73513, 134.24276 -20.73667, 134.24323 -20.73903, 134.24373 -20.74152, 134.24403 -20.74303, 134.24422 -20.74409, 134.24433 -20.74473, 134.24441 -20.74525, 134.24453 -20.74617, 134.24463 -20.74717, 134.24475 -20.74878, 134.24481 -20.75045, 134.24481 -20.75129, 134.2448 -20.7521, 134.24475 -20.75347, 134.24472 -20.75404, 134.24464 -20.75497, 134.24453 -20.75607, 134.24441 -20.757, 134.24432 -20.75761, 134.24418 -20.75844, 134.24406 -20.75908, 134.24386 -20.76009, 134.24359 -20.7613, 134.2433 -20.76263, 134.24296 -20.76421, 134.24246 -20.76644, 134.24212 -20.76796, 134.24148 -20.77087, 134.24051 -20.77524, 134.23975 -20.77868, 134.23918 -20.78123, 134.23893 -20.78239, 134.2384 -20.78478, 134.23822 -20.7856, 134.23805 -20.78635, 134.23776 -20.78766, 134.23761 -20.78838, 134.23743 -20.78925, 134.2374 -20.7894, 134.23732 -20.78981, 134.23721 -20.79064, 134.23712 -20.7914, 134.23706 -20.7922, 134.23703 -20.79268, 134.23701 -20.79313, 134.237 -20.79327, 134.237 -20.79422, 134.237 -20.79461, 134.23703 -20.7952, 134.23705 -20.79559, 134.23707 -20.7959, 134.2371 -20.79632, 134.23722 -20.79745, 134.2374 -20.79903, 134.23744 -20.79935, 134.23756 -20.80044, 134.23777 -20.80245, 134.23783 -20.803, 134.23798 -20.8043, 134.23829 -20.80716, 134.23846 -20.80874, 134.23897 -20.8134, 134.23921 -20.8157, 134.23953 -20.81866, 134.24007 -20.82371, 134.24033 -20.82604, 134.24048 -20.8274, 134.24054 -20.82804, 134.24066 -20.8291, 134.24076 -20.83005, 134.24085 -20.83092, 134.24098 -20.83217, 134.24105 -20.83309, 134.24111 -20.83409, 134.24115 -20.83536, 134.24116 -20.83697, 134.24114 -20.83796, 134.24107 -20.83923, 134.24101 -20.84018, 134.2409 -20.8412, 134.24071 -20.84284, 134.24061 -20.84351, 134.24051 -20.84421, 134.24027 -20.84545, 134.23991 -20.84716, 134.23972 -20.84795, 134.23948 -20.8489, 134.2391 -20.85021, 134.23818 -20.85349, 134.2377 -20.85525, 134.23707 -20.85748, 134.23574 -20.86226, 134.23439 -20.86711, 134.23327 -20.87107, 134.23217 -20.875, 134.23146 -20.87752, 134.23101 -20.87913, 134.22928 -20.88529, 134.22751 -20.89162, 134.22655 -20.89503, 134.22463 -20.90183, 134.22407 -20.90385, 134.22359 -20.90558, 134.22321 -20.9069, 134.22303 -20.90754, 134.22263 -20.90892, 134.2224 -20.90969, 134.22213 -20.91063, 134.22181 -20.91178, 134.2215 -20.91305, 134.22106 -20.91455, 134.22069 -20.91586, 134.22037 -20.91704, 134.21984 -20.91888, 134.21921 -20.92115, 134.21903 -20.92179, 134.21862 -20.92324, 134.21717 -20.92842, 134.21703 -20.92893, 134.215849 -20.93311, 134.21467 -20.93732, 134.212269 -20.94582, 134.20864 -20.9587, 134.20819 -20.96031, 134.20785 -20.9615, 134.207789 -20.96171, 134.20774 -20.9619, 134.20767 -20.96214, 134.207619 -20.96234, 134.20754 -20.96265, 134.20727 -20.9636, 134.20684 -20.96508, 134.205999 -20.96807, 134.205099 -20.97123, 134.20472 -20.9726, 134.204299 -20.9741, 134.20418 -20.97453, 134.20325 -20.97779, 134.20279 -20.97944, 134.20196 -20.98242, 134.20147 -20.98415, 134.20138 -20.98447, 134.20073 -20.98668, 134.19995 -20.98949, 134.19944 -20.99125, 134.198569 -20.99429, 134.19801 -20.99625, 134.197759 -20.99716, 134.197309 -20.99875, 134.195709 -21.0044, 134.19252 -21.01571, 134.191499 -21.0193, 134.19117 -21.02045, 134.18969 -21.02566, 134.18948 -21.02638, 134.18924 -21.02724, 134.18762 -21.03297, 134.18704 -21.035, 134.18642 -21.03721, 134.185679 -21.03981, 134.18533 -21.04099, 134.18453 -21.04383, 134.18163 -21.05403, 134.18087 -21.05673, 134.18006 -21.05959, 134.1783 -21.0658, 134.17759 -21.06831, 134.176719 -21.07132, 134.17638 -21.07255, 134.176179 -21.07322, 134.1758 -21.07457, 134.1757 -21.07494, 134.17479 -21.07816, 134.1736 -21.08233, 134.17136 -21.09023, 134.16925 -21.09769, 134.167859 -21.10259, 134.16635 -21.10793, 134.164909 -21.113, 134.16363 -21.11754, 134.16253 -21.12142, 134.16146 -21.1252, 134.16064 -21.12808, 134.15947 -21.13222, 134.15776 -21.13825, 134.157209 -21.14016, 134.15669 -21.14201, 134.15654 -21.14252, 134.15625 -21.14355, 134.15565 -21.14568, 134.15538 -21.1466, 134.154869 -21.14842, 134.15418 -21.15082, 134.154 -21.15149, 134.15383 -21.15207, 134.15313 -21.15454, 134.15253 -21.15663, 134.15168 -21.15963, 134.14962 -21.16687, 134.14885 -21.1696, 134.14765 -21.17381, 134.146719 -21.17709, 134.14615 -21.17908, 134.145999 -21.17965, 134.14579 -21.18037, 134.14531 -21.18208, 134.14436 -21.18541, 134.14301 -21.19016, 134.1424 -21.19233, 134.14218 -21.19312, 134.14202 -21.19368, 134.14178 -21.19452, 134.14129 -21.19625, 134.14128 -21.1963, 134.141179 -21.19663, 134.14111 -21.19687, 134.14103 -21.19714, 134.14088 -21.19768, 134.1407 -21.19831, 134.13987 -21.20127, 134.13854 -21.20592, 134.13799 -21.20791, 134.13744 -21.20985, 134.1372 -21.2107, 134.13717 -21.21082, 134.13684 -21.21197, 134.136609 -21.21277, 134.13639 -21.21334, 134.136339 -21.21346, 134.136249 -21.21367, 134.13612 -21.21391, 134.1357 -21.2147, 134.13537 -21.2153, 134.13483 -21.21628, 134.132749 -21.22004, 134.13128 -21.22272, 134.13018 -21.22472, 134.12874 -21.22736, 134.12758 -21.22949, 134.127289 -21.23001, 134.126939 -21.23064, 134.12664 -21.23126, 134.12634 -21.2319, 134.12597 -21.23276, 134.12555 -21.2339, 134.12525 -21.23472, 134.124969 -21.23542, 134.12472 -21.23596, 134.124429 -21.23655, 134.124059 -21.23725, 134.12373 -21.23782, 134.12339 -21.23838, 134.12311 -21.23882, 134.12278 -21.2393, 134.12206 -21.24023, 134.1215 -21.2409, 134.12095 -21.24151, 134.12064 -21.24183, 134.12034 -21.24212, 134.11991 -21.24252, 134.119499 -21.2429, 134.11925 -21.24312, 134.11902 -21.24332, 134.11866 -21.24365, 134.11855 -21.24375, 134.118419 -21.24386, 134.11795 -21.24428, 134.117089 -21.24506, 134.11615 -21.24589, 134.11595 -21.24607, 134.11579 -21.24622, 134.11571 -21.2463, 134.11545 -21.24654, 134.11418 -21.24767, 134.11354 -21.24823, 134.11325 -21.24848, 134.112439 -21.24918, 134.112259 -21.24933, 134.11132 -21.25015, 134.10806 -21.25298, 134.10559 -21.25512, 134.10314 -21.25726, 134.096499 -21.26305, 134.09446 -21.26482, 134.092289 -21.26672, 134.08707 -21.27126, 134.0795 -21.27787, 134.074639 -21.28211, 134.0735 -21.2831, 134.07104 -21.28524, 134.06692 -21.28883, 134.061299 -21.29372, 134.06072 -21.29423, 134.058429 -21.29622, 134.05785 -21.29672, 134.05657 -21.29782, 134.055489 -21.29877, 134.054679 -21.29946, 134.05425 -21.29984, 134.05329 -21.30069, 134.052609 -21.30127, 134.051909 -21.30187, 134.05169 -21.30206, 134.05062 -21.303, 134.049569 -21.30394, 134.048679 -21.30476, 134.04816 -21.30523, 134.04729 -21.30608, 134.046609 -21.30676, 134.04577 -21.30758, 134.04499 -21.30839, 134.04386 -21.30956, 134.04297 -21.31048, 134.040789 -21.31273, 134.03924 -21.31434, 134.038379 -21.31523, 134.038 -21.31561, 134.036769 -21.31688, 134.034979 -21.31872, 134.03127 -21.32255, 134.02953 -21.32434, 134.02802 -21.32589, 134.02161 -21.33248, 134.01758 -21.33662, 134.012409 -21.34194, 134.011339 -21.34304, 134.008559 -21.3459, 134.00789 -21.34659, 134.00405 -21.35053, 134.00198 -21.35264, 133.99848 -21.35623, 133.99658 -21.35816, 133.99528 -21.3595, 133.993419 -21.3614, 133.99034 -21.36455, 133.989759 -21.36514, 133.9854 -21.36959, 133.9836 -21.37142, 133.98105 -21.37403, 133.98042 -21.37468, 133.97577 -21.37941, 133.97545 -21.37974, 133.97267 -21.38257, 133.96975 -21.38555, 133.96813 -21.38721, 133.96691 -21.38846, 133.96619 -21.38918, 133.9657 -21.38969, 133.964239 -21.39117, 133.96225 -21.39322, 133.96132 -21.39416, 133.9557 -21.39989, 133.95145 -21.40421, 133.9493 -21.40641, 133.94808 -21.40765, 133.94791 -21.40782, 133.94772 -21.40802, 133.94715 -21.40859, 133.94611 -21.40965, 133.94596 -21.4098, 133.94563 -21.41015, 133.945 -21.41083, 133.94469 -21.41123, 133.94429 -21.41174, 133.94397 -21.41218, 133.943739 -21.41252, 133.94344 -21.41298, 133.94313 -21.41348, 133.94282 -21.41404, 133.942479 -21.41471, 133.942129 -21.41547, 133.94201 -21.41577, 133.9418 -21.41631, 133.94162 -21.41675, 133.941489 -21.41708, 133.94067 -21.41912, 133.940339 -21.41996, 133.93946 -21.42216, 133.93776 -21.42645, 133.93476 -21.43399, 133.93204 -21.44082, 133.9317 -21.44168, 133.928869 -21.44877, 133.92659 -21.4545, 133.92623 -21.45541, 133.92587 -21.45633, 133.92535 -21.45762, 133.9247 -21.45926, 133.923319 -21.46278, 133.92031 -21.4703, 133.9179 -21.47641, 133.91492 -21.4839, 133.91375 -21.48685, 133.91307 -21.48857, 133.913019 -21.4887, 133.91297 -21.48887, 133.91292 -21.48901, 133.91235 -21.49045, 133.911399 -21.49283, 133.91066 -21.49467, 133.91031 -21.49555, 133.910059 -21.49614, 133.90951 -21.49735, 133.90929 -21.49781, 133.90898 -21.49845, 133.908639 -21.4991, 133.90822 -21.49993, 133.9075 -21.50122, 133.90655 -21.50285, 133.90504 -21.50542, 133.904329 -21.50663, 133.902989 -21.50892, 133.901999 -21.5106, 133.90196 -21.51067, 133.90152 -21.5114, 133.90113 -21.51204, 133.90056 -21.51287, 133.90023 -21.51334, 133.89988 -21.51378, 133.89979 -21.5139, 133.89927 -21.51456, 133.89872 -21.51521, 133.89803 -21.51599, 133.8974 -21.51672, 133.89576 -21.51858, 133.89507 -21.51938, 133.89459 -21.51994, 133.89409 -21.52051, 133.893589 -21.52108, 133.89329 -21.52142, 133.892419 -21.52242, 133.89222 -21.52265, 133.89208 -21.5228, 133.89182 -21.52311, 133.89146 -21.52358, 133.891269 -21.52386, 133.891089 -21.52414, 133.89077 -21.52473, 133.89051 -21.52529, 133.89034 -21.52574, 133.889739 -21.52734, 133.8896 -21.52773, 133.88946 -21.52812, 133.88926 -21.52867, 133.88913 -21.52901, 133.88901 -21.5293, 133.88879 -21.52973, 133.888569 -21.53013, 133.88826 -21.53064, 133.888029 -21.53098, 133.88774 -21.53137, 133.88809 -21.5314, 133.88843 -21.53145, 133.88883 -21.53148, 133.8888530034 -21.5314738657)" +-16.6800009,133.4125177,-19.6524855,134.1887752,3,Dunmarra,"LINESTRING (133.4123627564 -16.6800588341, 133.412389 -16.680129, 133.41246 -16.68056, 133.412389 -16.680869, 133.412299 -16.68092, 133.412389 -16.68133, 133.41245 -16.6816, 133.41255 -16.68208, 133.41262 -16.68243, 133.412659 -16.682649, 133.412669 -16.6827, 133.41318 -16.68525, 133.41361 -16.68742, 133.41387 -16.6887, 133.41435 -16.69115, 133.41604 -16.69969, 133.41655 -16.702259, 133.417149 -16.705269, 133.41755 -16.70731, 133.41792 -16.70915, 133.41838 -16.711459, 133.41872 -16.71319, 133.419019 -16.71472, 133.41944 -16.716809, 133.41987 -16.71901, 133.42024 -16.720939, 133.42119 -16.726019, 133.42182 -16.72941, 133.42192 -16.72997, 133.42256 -16.73338, 133.42479 -16.745239, 133.42523 -16.74758, 133.42661 -16.75494, 133.4274 -16.75916, 133.42773 -16.7609, 133.428159 -16.7632, 133.429589 -16.7708, 133.43017 -16.773869, 133.43044 -16.77532, 133.43053 -16.77582, 133.43064 -16.77645, 133.43071 -16.776969, 133.43077 -16.77759, 133.43079 -16.77793, 133.43079 -16.77799, 133.4308 -16.77835, 133.4308 -16.77892, 133.43078 -16.77963, 133.43077 -16.77976, 133.430749 -16.78022, 133.43069 -16.78121, 133.430489 -16.78473, 133.43034 -16.7874, 133.430209 -16.78973, 133.430029 -16.7928, 133.42972 -16.7982, 133.42964 -16.79952, 133.429499 -16.80206, 133.42906 -16.80971, 133.42884 -16.81353, 133.428519 -16.81917, 133.42811 -16.82635, 133.42784 -16.83103, 133.42775 -16.83265, 133.42732 -16.84024, 133.42714 -16.84336, 133.42692 -16.84729, 133.42653 -16.85402, 133.42622 -16.85925, 133.42607 -16.86175, 133.425919 -16.86432, 133.42581 -16.86628, 133.42548 -16.87207, 133.42513 -16.87811, 133.425009 -16.88024, 133.42454 -16.88838, 133.424219 -16.89402, 133.42392 -16.89935, 133.42373 -16.90287, 133.42334 -16.90967, 133.42316 -16.91271, 133.42294 -16.91654, 133.422869 -16.91771, 133.422789 -16.91907, 133.42276 -16.9195, 133.42272 -16.92025, 133.42271 -16.92047, 133.422699 -16.92073, 133.422689 -16.92103, 133.422699 -16.92133, 133.422699 -16.92152, 133.42272 -16.92188, 133.42275 -16.92236, 133.422779 -16.92263, 133.42283 -16.92304, 133.42299 -16.924, 133.423059 -16.9244, 133.42324 -16.92546, 133.42369 -16.92809, 133.4239 -16.92934, 133.42398 -16.92979, 133.42424 -16.9313, 133.424929 -16.93534, 133.42552 -16.93878, 133.42635 -16.94363, 133.42746 -16.95009, 133.42794 -16.95285, 133.428599 -16.95667, 133.4289 -16.95844, 133.429139 -16.95981, 133.42945 -16.96164, 133.4299 -16.96427, 133.430219 -16.96612, 133.430489 -16.96767, 133.43116 -16.97159, 133.43144 -16.9732, 133.43172 -16.97481, 133.432269 -16.97797, 133.43331 -16.98401, 133.43418 -16.98918, 133.43508 -16.99437, 133.436489 -17.00263, 133.43655 -17.00297, 133.43671 -17.00388, 133.43721 -17.00681, 133.43733 -17.00749, 133.43739 -17.00782, 133.43743 -17.00806, 133.43789 -17.0107, 133.43869 -17.0154, 133.438989 -17.01711, 133.439519 -17.0202, 133.44001 -17.02305, 133.440329 -17.02493, 133.44053 -17.02608, 133.44089 -17.02818, 133.441309 -17.03062, 133.441409 -17.03118, 133.44152 -17.03187, 133.44163 -17.0325, 133.44206 -17.03501, 133.4422 -17.03583, 133.44228 -17.03628, 133.44259 -17.03806, 133.44306 -17.04078, 133.44353 -17.04355, 133.44387 -17.04551, 133.44449 -17.04914, 133.44482 -17.05103, 133.44636 -17.06002, 133.44697 -17.06359, 133.44748 -17.06657, 133.44779 -17.06832, 133.44833 -17.07148, 133.44977 -17.07982, 133.45043 -17.08362, 133.45131 -17.08872, 133.452339 -17.09471, 133.45324 -17.09997, 133.45374 -17.10286, 133.45455 -17.10749, 133.455369 -17.11233, 133.45586 -17.11521, 133.45667 -17.11994, 133.45715 -17.1227, 133.457249 -17.12324, 133.457609 -17.12532, 133.45808 -17.12809, 133.458589 -17.13106, 133.459049 -17.13372, 133.459229 -17.13479, 133.45999 -17.13918, 133.46024 -17.14061, 133.46042 -17.14169, 133.46064 -17.14295, 133.46109 -17.14557, 133.46178 -17.14956, 133.46268 -17.15482, 133.462809 -17.15555, 133.46312 -17.15739, 133.463879 -17.16177, 133.46473 -17.16671, 133.465 -17.16828, 133.46615 -17.175, 133.46642 -17.17655, 133.46673 -17.17836, 133.467369 -17.18212, 133.4676 -17.18342, 133.46813 -17.18652, 133.46909 -17.19207, 133.46947 -17.19432, 133.469889 -17.19673, 133.47038 -17.19966, 133.47065 -17.20132, 133.4708 -17.20242, 133.47091 -17.20333, 133.47101 -17.20435, 133.47107 -17.20501, 133.471129 -17.20567, 133.47117 -17.20681, 133.4712 -17.20753, 133.471219 -17.2091, 133.4712 -17.21037, 133.47118 -17.21102, 133.471129 -17.21204, 133.47103 -17.21338, 133.47091 -17.21466, 133.470769 -17.21578, 133.470599 -17.217, 133.470409 -17.21814, 133.47017 -17.21943, 133.4699 -17.22065, 133.46948 -17.22235, 133.46915 -17.22353, 133.46876 -17.2248, 133.46847 -17.2257, 133.46812 -17.22671, 133.467739 -17.22774, 133.46752 -17.2283, 133.46731 -17.22883, 133.466839 -17.22995, 133.46628 -17.23118, 133.465939 -17.2319, 133.46556 -17.23266, 133.46517 -17.23344, 133.46464 -17.2344, 133.46337 -17.2366, 133.46205 -17.23897, 133.4614 -17.24012, 133.4605 -17.24169, 133.460029 -17.24255, 133.45944 -17.24367, 133.45875 -17.24506, 133.45844 -17.24572, 133.45819 -17.24628, 133.457969 -17.24678, 133.45738 -17.2482, 133.45695 -17.24932, 133.45664 -17.25018, 133.45646 -17.25069, 133.45606 -17.25193, 133.45578 -17.25284, 133.455649 -17.25332, 133.45544 -17.25407, 133.455189 -17.25503, 133.45504 -17.25569, 133.45499 -17.25591, 133.4546 -17.2577, 133.45454 -17.25796, 133.45442 -17.25855, 133.45424 -17.25937, 133.45407 -17.26019, 133.454039 -17.26033, 133.45372 -17.26181, 133.45364 -17.26216, 133.453589 -17.26239, 133.45352 -17.26271, 133.4532 -17.26423, 133.45311 -17.26465, 133.45271 -17.26653, 133.45261 -17.26698, 133.452159 -17.26909, 133.45174 -17.27107, 133.45172 -17.27117, 133.45122 -17.27351, 133.45091 -17.27498, 133.45073 -17.27581, 133.45012 -17.27865, 133.44977 -17.28029, 133.44932 -17.28242, 133.448839 -17.28467, 133.448219 -17.28757, 133.44814 -17.28792, 133.44797 -17.28875, 133.44762 -17.29036, 133.44738 -17.2915, 133.44715 -17.29256, 133.44679 -17.29425, 133.44587 -17.29855, 133.44556 -17.30004, 133.4454 -17.30075, 133.44501 -17.30262, 133.444709 -17.30433, 133.444549 -17.30541, 133.444439 -17.30625, 133.44429 -17.30745, 133.44403 -17.30962, 133.44384 -17.31112, 133.44369 -17.31238, 133.4436 -17.3131, 133.44348 -17.31413, 133.44326 -17.31585, 133.44305 -17.31758, 133.442829 -17.31939, 133.44267 -17.3207, 133.44227 -17.32393, 133.44201 -17.32613, 133.44181 -17.32769, 133.44169 -17.32868, 133.44148 -17.33033, 133.44135 -17.33135, 133.44097 -17.33435, 133.440689 -17.33679, 133.440249 -17.34032, 133.43977 -17.3442, 133.43927 -17.34825, 133.43904 -17.3501, 133.438719 -17.3527, 133.43832 -17.35594, 133.43821 -17.35687, 133.43811 -17.35789, 133.43804 -17.35889, 133.43796 -17.36001, 133.437919 -17.3608, 133.43789 -17.36186, 133.43788 -17.36315, 133.43788 -17.36386, 133.4379 -17.3645, 133.43794 -17.36563, 133.43797 -17.36629, 133.437999 -17.36672, 133.43803 -17.3671, 133.438099 -17.36798, 133.43824 -17.36933, 133.43834 -17.37018, 133.438459 -17.37106, 133.43865 -17.37225, 133.438799 -17.37315, 133.43894 -17.37387, 133.43896 -17.37396, 133.43903 -17.3743, 133.43915 -17.3749, 133.43922 -17.3752, 133.43932 -17.37565, 133.439429 -17.3761, 133.43956 -17.37664, 133.43976 -17.37744, 133.43995 -17.37813, 133.440329 -17.37945, 133.440859 -17.38109, 133.44128 -17.38227, 133.44155 -17.38302, 133.44191 -17.38395, 133.442559 -17.38551, 133.44298 -17.38646, 133.44349 -17.38754, 133.44397 -17.38853, 133.44461 -17.38975, 133.44464 -17.38981, 133.44505 -17.39056, 133.44569 -17.39168, 133.446689 -17.3934, 133.44721 -17.3943, 133.4477 -17.39513, 133.44858 -17.39664, 133.44981 -17.39876, 133.45128 -17.40127, 133.45205 -17.4026, 133.45271 -17.40372, 133.453579 -17.40522, 133.45449 -17.40677, 133.45687 -17.41085, 133.45793 -17.41267, 133.458509 -17.41366, 133.45943 -17.41525, 133.45999 -17.41621, 133.46103 -17.41801, 133.46185 -17.4194, 133.46292 -17.42122, 133.4692 -17.43197, 133.47276 -17.43806, 133.47607 -17.44374, 133.47737 -17.44597, 133.47769 -17.44651, 133.479899 -17.4503, 133.48023 -17.45086, 133.48078 -17.45181, 133.48284 -17.45533, 133.487779 -17.46377, 133.48952 -17.46676, 133.49362 -17.47377, 133.49419 -17.47474, 133.498979 -17.48291, 133.5 -17.48466, 133.50098 -17.48633, 133.50168 -17.48752, 133.50231 -17.4886, 133.50236 -17.48868, 133.50289 -17.4896, 133.50421 -17.49186, 133.505869 -17.49468, 133.507849 -17.49804, 133.50933 -17.50056, 133.509719 -17.50124, 133.51028 -17.50218, 133.51221 -17.50546, 133.51702 -17.51366, 133.51953 -17.51796, 133.5216 -17.52149, 133.52678 -17.53038, 133.52914 -17.53441, 133.52922 -17.53455, 133.529419 -17.53489, 133.53074 -17.53714, 133.53173 -17.53884, 133.53186 -17.53907, 133.53349 -17.54185, 133.533629 -17.54209, 133.534339 -17.5433, 133.53463 -17.5438, 133.53496 -17.54436, 133.53513 -17.54465, 133.53638 -17.54678, 133.536589 -17.54714, 133.5367 -17.54731, 133.53699 -17.54772, 133.53714 -17.54792, 133.53728 -17.54809, 133.53752 -17.54836, 133.53782 -17.54867, 133.53801 -17.54886, 133.53833 -17.54914, 133.53848 -17.54926, 133.53869 -17.54942, 133.53895 -17.5496, 133.53974 -17.55011, 133.54037 -17.55052, 133.54066 -17.5507, 133.54164 -17.55132, 133.5418 -17.55142, 133.54203 -17.55157, 133.542219 -17.55169, 133.54263 -17.55195, 133.54279 -17.55205, 133.54301 -17.55219, 133.54342 -17.55245, 133.544379 -17.55306, 133.544829 -17.55334, 133.54489 -17.55338, 133.54505 -17.55348, 133.54522 -17.55359, 133.54532 -17.55365, 133.54548 -17.55375, 133.54586 -17.554, 133.54612 -17.55417, 133.546979 -17.55471, 133.547869 -17.55527, 133.54843 -17.55563, 133.548679 -17.5558, 133.548859 -17.55591, 133.549659 -17.55641, 133.55085 -17.55717, 133.55107 -17.55731, 133.55114 -17.55735, 133.55248 -17.55821, 133.55472 -17.55964, 133.554949 -17.55979, 133.557539 -17.56143, 133.55796 -17.5617, 133.558699 -17.56217, 133.55875 -17.5622, 133.55896 -17.56234, 133.559519 -17.56269, 133.561 -17.56364, 133.56182 -17.56416, 133.56257 -17.56464, 133.563269 -17.56511, 133.56405 -17.56566, 133.56504 -17.56642, 133.567129 -17.56803, 133.568199 -17.56887, 133.57202 -17.57182, 133.57247 -17.57217, 133.57318 -17.57272, 133.57389 -17.57327, 133.57638 -17.57519, 133.57683 -17.57554, 133.57739 -17.57598, 133.57818 -17.57661, 133.5789 -17.57722, 133.57933 -17.57762, 133.579479 -17.57776, 133.57995 -17.57822, 133.58044 -17.57873, 133.58084 -17.57916, 133.58088 -17.5792, 133.581349 -17.57974, 133.581809 -17.58031, 133.58228 -17.58092, 133.58277 -17.58156, 133.584499 -17.58387, 133.585389 -17.58505, 133.58632 -17.58629, 133.58689 -17.58705, 133.587439 -17.58777, 133.58849 -17.58917, 133.590129 -17.59135, 133.59253 -17.59454, 133.59355 -17.5959, 133.59409 -17.59662, 133.59495 -17.59776, 133.59763 -17.60132, 133.59932 -17.60357, 133.60021 -17.60478, 133.60072 -17.60555, 133.60103 -17.60606, 133.60125 -17.60645, 133.60154 -17.60698, 133.60185 -17.60762, 133.602229 -17.60847, 133.60238 -17.60884, 133.60256 -17.60933, 133.60288 -17.61027, 133.60328 -17.61153, 133.60409 -17.61404, 133.6053 -17.61781, 133.60549 -17.6184, 133.60588 -17.6196, 133.60721 -17.62375, 133.608129 -17.62662, 133.60837 -17.62738, 133.608929 -17.6291, 133.609569 -17.63108, 133.610999 -17.63555, 133.61139 -17.63676, 133.61159 -17.63736, 133.61204 -17.63874, 133.6122 -17.63925, 133.61237 -17.63977, 133.61285 -17.64125, 133.613149 -17.64217, 133.61411 -17.64517, 133.61507 -17.64812, 133.61573 -17.65017, 133.61666 -17.65302, 133.61748 -17.65555, 133.61911 -17.66058, 133.62068 -17.66541, 133.62092 -17.66616, 133.62128 -17.6673, 133.62144 -17.66787, 133.621569 -17.66841, 133.62172 -17.66909, 133.622 -17.67043, 133.62259 -17.67323, 133.62286 -17.67451, 133.62312 -17.67575, 133.623799 -17.67898, 133.624329 -17.68148, 133.62458 -17.68268, 133.62503 -17.68483, 133.62549 -17.687, 133.62567 -17.68784, 133.62607 -17.68975, 133.626209 -17.69041, 133.62643 -17.69147, 133.62692 -17.69379, 133.6275 -17.69655, 133.62778 -17.69788, 133.628729 -17.7024, 133.628899 -17.7032, 133.6292 -17.70462, 133.62928 -17.70501, 133.62951 -17.70611, 133.629799 -17.70746, 133.630149 -17.70912, 133.63046 -17.71059, 133.63066 -17.71155, 133.63084 -17.71243, 133.63117 -17.71396, 133.63128 -17.71451, 133.63145 -17.7153, 133.631589 -17.71598, 133.6317 -17.71648, 133.6318 -17.71696, 133.63189 -17.71742, 133.63234 -17.71953, 133.63236 -17.71964, 133.63241 -17.71986, 133.632569 -17.72053, 133.632669 -17.72094, 133.632749 -17.72127, 133.63315 -17.72274, 133.63333 -17.72336, 133.6335 -17.72393, 133.63388 -17.72517, 133.63395 -17.72539, 133.63406 -17.72575, 133.63415 -17.72602, 133.634359 -17.72673, 133.6344 -17.72687, 133.63465 -17.72771, 133.63501 -17.72893, 133.63519 -17.72953, 133.635709 -17.73126, 133.635899 -17.7319, 133.63596 -17.73208, 133.636059 -17.7324, 133.63629 -17.73318, 133.6364 -17.73351, 133.63655 -17.734, 133.63673 -17.73464, 133.63681 -17.73488, 133.63686 -17.73508, 133.63704 -17.73568, 133.63735 -17.73671, 133.637499 -17.73722, 133.63771 -17.7379, 133.63783 -17.73827, 133.637949 -17.73869, 133.6381 -17.73918, 133.63825 -17.73968, 133.638849 -17.74169, 133.63906 -17.7424, 133.63945 -17.74369, 133.63987 -17.74509, 133.64023 -17.74629, 133.64047 -17.74711, 133.64079 -17.74815, 133.641169 -17.74941, 133.64182 -17.75158, 133.64248 -17.75376, 133.64291 -17.75521, 133.6437 -17.75776, 133.643939 -17.75851, 133.64417 -17.75917, 133.64462 -17.7603, 133.645 -17.76116, 133.64534 -17.76185, 133.645729 -17.7626, 133.64599 -17.76306, 133.6465 -17.76392, 133.647089 -17.76483, 133.647529 -17.76546, 133.648159 -17.7663, 133.648969 -17.76728, 133.649589 -17.76798, 133.65024 -17.76866, 133.650669 -17.7691, 133.651119 -17.76952, 133.65172 -17.77007, 133.65421 -17.77225, 133.65536 -17.77326, 133.656489 -17.77424, 133.65719 -17.77486, 133.6587 -17.77618, 133.6595 -17.77691, 133.66014 -17.77752, 133.66062 -17.77801, 133.661329 -17.77878, 133.6621 -17.77969, 133.662669 -17.78042, 133.66339 -17.78142, 133.6639 -17.78219, 133.66452 -17.78321, 133.664899 -17.78389, 133.665249 -17.78457, 133.66564 -17.78539, 133.66608 -17.7864, 133.6663 -17.78695, 133.666519 -17.78755, 133.66676 -17.78825, 133.667039 -17.78913, 133.66744 -17.79051, 133.667679 -17.79131, 133.66782 -17.79179, 133.66856 -17.79429, 133.67013 -17.79964, 133.67097 -17.80248, 133.67137 -17.80383, 133.67175 -17.80511, 133.67193 -17.80574, 133.67267 -17.80824, 133.67343 -17.81081, 133.6738 -17.81206, 133.67384 -17.81221, 133.67405 -17.81289, 133.67437 -17.81395, 133.67559 -17.81793, 133.67677 -17.82179, 133.67775 -17.82501, 133.67865 -17.82792, 133.6789 -17.82876, 133.67933 -17.83017, 133.67973 -17.83147, 133.680029 -17.83246, 133.68026 -17.83322, 133.68043 -17.83376, 133.68063 -17.83445, 133.68097 -17.83555, 133.68123 -17.83642, 133.68167 -17.83785, 133.68205 -17.83909, 133.68229 -17.83989, 133.68276 -17.84143, 133.683349 -17.84336, 133.68378 -17.84477, 133.683879 -17.84511, 133.68454 -17.84726, 133.68527 -17.84964, 133.686119 -17.85243, 133.68732 -17.85636, 133.68798 -17.8585, 133.688459 -17.8601, 133.68911 -17.86223, 133.68968 -17.86409, 133.690069 -17.86539, 133.69074 -17.86758, 133.69134 -17.86952, 133.69156 -17.87024, 133.69179 -17.87096, 133.69209 -17.87183, 133.692299 -17.8724, 133.6925 -17.87291, 133.6928 -17.87365, 133.69299 -17.87408, 133.693379 -17.87494, 133.693729 -17.87565, 133.6942 -17.87656, 133.69449 -17.87709, 133.69496 -17.87791, 133.69546 -17.87876, 133.69575 -17.87925, 133.69637 -17.88029, 133.69684 -17.8811, 133.69742 -17.88209, 133.69792 -17.88295, 133.698469 -17.88393, 133.69879 -17.88454, 133.69896 -17.88487, 133.69927 -17.88547, 133.69962 -17.88618, 133.699909 -17.88678, 133.70014 -17.88729, 133.70095 -17.88916, 133.70169 -17.89104, 133.70291 -17.89417, 133.70321 -17.89496, 133.70346 -17.89563, 133.70369 -17.8962, 133.70382 -17.89655, 133.70417 -17.89743, 133.704559 -17.89844, 133.705999 -17.90214, 133.706279 -17.90288, 133.70758 -17.90622, 133.70778 -17.90673, 133.708139 -17.90767, 133.709219 -17.91044, 133.71073 -17.91434, 133.71139 -17.91603, 133.71181 -17.91715, 133.712099 -17.91794, 133.71234 -17.91867, 133.71259 -17.91953, 133.7127 -17.91992, 133.71282 -17.92039, 133.71305 -17.92131, 133.71322 -17.92208, 133.71333 -17.92265, 133.71338 -17.92289, 133.71348 -17.92349, 133.71357 -17.92405, 133.713699 -17.925, 133.71378 -17.92566, 133.71384 -17.9265, 133.713869 -17.92692, 133.713889 -17.92719, 133.713889 -17.92737, 133.71392 -17.92791, 133.71394 -17.92878, 133.71394 -17.92983, 133.71393 -17.93047, 133.71392 -17.93084, 133.71393 -17.93103, 133.71392 -17.93146, 133.713889 -17.93229, 133.713889 -17.93344, 133.713889 -17.93574, 133.713869 -17.93849, 133.71386 -17.93979, 133.71385 -17.94051, 133.71385 -17.94101, 133.71384 -17.9421, 133.71383 -17.94349, 133.71381 -17.94535, 133.713789 -17.94723, 133.71378 -17.94818, 133.71377 -17.95, 133.71375 -17.95184, 133.71374 -17.95401, 133.71373 -17.95511, 133.71372 -17.95615, 133.71368 -17.96035, 133.7136 -17.96382, 133.71348 -17.96948, 133.71346 -17.97012, 133.713429 -17.97134, 133.71336 -17.97266, 133.71329 -17.97337, 133.71319 -17.97416, 133.713159 -17.9744, 133.71309 -17.97485, 133.71296 -17.97556, 133.71282 -17.97626, 133.71259 -17.97724, 133.71223 -17.97872, 133.71198 -17.97974, 133.71171 -17.98083, 133.71153 -17.98164, 133.71139 -17.98236, 133.71132 -17.9828, 133.71127 -17.98308, 133.711199 -17.98363, 133.71113 -17.98426, 133.71104 -17.98537, 133.711009 -17.98631, 133.711 -17.98722, 133.711 -17.98777, 133.711 -17.99146, 133.711009 -17.99479, 133.711009 -17.99749, 133.711009 -17.9991, 133.711019 -18.00399, 133.711019 -18.00509, 133.711019 -18.01053, 133.71103 -18.01184, 133.71103 -18.01294, 133.711019 -18.01371, 133.71103 -18.01409, 133.711019 -18.01466, 133.71103 -18.01479, 133.71103 -18.01524, 133.71103 -18.01572, 133.71103 -18.01595, 133.71103 -18.01618, 133.71103 -18.01651, 133.711019 -18.01684, 133.711019 -18.01746, 133.71103 -18.01846, 133.71103 -18.02075, 133.71104 -18.02418, 133.71104 -18.02705, 133.71106 -18.02792, 133.71112 -18.02872, 133.71123 -18.02981, 133.71141 -18.03116, 133.711829 -18.03406, 133.712169 -18.03645, 133.71219 -18.03661, 133.712629 -18.03971, 133.71282 -18.04108, 133.712979 -18.04221, 133.71322 -18.04387, 133.71355 -18.04624, 133.71382 -18.0481, 133.713969 -18.04908, 133.714059 -18.04976, 133.71413 -18.05028, 133.714589 -18.05351, 133.71482 -18.05507, 133.7149 -18.05565, 133.715309 -18.0586, 133.715409 -18.05931, 133.71548 -18.05983, 133.71601 -18.06354, 133.71634 -18.06584, 133.71643 -18.06651, 133.71663 -18.06789, 133.71691 -18.06983, 133.71712 -18.07126, 133.7173 -18.07252, 133.71742 -18.0734, 133.717739 -18.07558, 133.71796 -18.0772, 133.71829 -18.07946, 133.718539 -18.08119, 133.71869 -18.08224, 133.71884 -18.08336, 133.71887 -18.08356, 133.71906 -18.08485, 133.71919 -18.08573, 133.71936 -18.08696, 133.71954 -18.08818, 133.719709 -18.08938, 133.71975 -18.08966, 133.719969 -18.09117, 133.7202 -18.09279, 133.72045 -18.09455, 133.72064 -18.09587, 133.72102 -18.09856, 133.72137 -18.101, 133.72151 -18.10199, 133.721669 -18.10309, 133.721939 -18.105, 133.72207 -18.10592, 133.72222 -18.10692, 133.72253 -18.10914, 133.72282 -18.11115, 133.72305 -18.11277, 133.72322 -18.11399, 133.72363 -18.11686, 133.723899 -18.11877, 133.7241 -18.12015, 133.724269 -18.12131, 133.72449 -18.12292, 133.72473 -18.12459, 133.724979 -18.12634, 133.72515 -18.12756, 133.72548 -18.12985, 133.72576 -18.13185, 133.72595 -18.1332, 133.726059 -18.13404, 133.726149 -18.1348, 133.72621 -18.13555, 133.726229 -18.13627, 133.72621 -18.13701, 133.72618 -18.13763, 133.72608 -18.13851, 133.7255 -18.14237, 133.72523 -18.14416, 133.72491 -18.14652, 133.72473 -18.1479, 133.724719 -18.14797, 133.7247 -18.14815, 133.72458 -18.14895, 133.72446 -18.14977, 133.72439 -18.15027, 133.724259 -18.1512, 133.72421 -18.15153, 133.72396 -18.1533, 133.72395 -18.15338, 133.72394 -18.15345, 133.72378 -18.15458, 133.72368 -18.15524, 133.72348 -18.15665, 133.72333 -18.15774, 133.72322 -18.15855, 133.72306 -18.16017, 133.723009 -18.16086, 133.72297 -18.16149, 133.72294 -18.1621, 133.7229 -18.16377, 133.7229 -18.1649, 133.7229 -18.1652, 133.72291 -18.16568, 133.722919 -18.16603, 133.72295 -18.16685, 133.72305 -18.16823, 133.723099 -18.16882, 133.723199 -18.17, 133.72342 -18.17212, 133.723559 -18.17353, 133.72363 -18.17417, 133.723739 -18.17519, 133.72401 -18.17777, 133.72416 -18.17917, 133.72421 -18.17972, 133.72422 -18.1798, 133.72431 -18.18065, 133.72441 -18.18157, 133.72461 -18.18309, 133.72476 -18.18401, 133.72478 -18.18412, 133.724809 -18.18431, 133.72496 -18.18505, 133.72503 -18.18543, 133.72527 -18.18661, 133.72532 -18.18686, 133.726229 -18.19143, 133.72648 -18.19264, 133.72667 -18.19361, 133.72688 -18.19467, 133.727049 -18.1955, 133.72724 -18.19647, 133.72742 -18.19737, 133.72753 -18.19791, 133.72755 -18.19801, 133.72765 -18.19852, 133.72792 -18.1999, 133.72837 -18.2021, 133.72859 -18.2031, 133.7289 -18.2043, 133.72905 -18.20486, 133.73022 -18.20928, 133.730529 -18.21047, 133.731079 -18.21256, 133.73124 -18.21315, 133.73207 -18.21628, 133.73237 -18.21733, 133.73255 -18.21788, 133.732869 -18.21878, 133.73312 -18.21939, 133.733319 -18.21986, 133.733589 -18.22043, 133.734 -18.22122, 133.734199 -18.22159, 133.73444 -18.222, 133.73489 -18.22272, 133.73524 -18.22324, 133.735909 -18.22418, 133.73638 -18.22478, 133.73705 -18.22556, 133.73771 -18.22626, 133.73844 -18.22698, 133.73979 -18.22823, 133.74027 -18.22866, 133.74174 -18.23001, 133.74338 -18.23151, 133.7444 -18.23245, 133.74553 -18.23348, 133.74671 -18.23455, 133.748349 -18.23605, 133.74928 -18.2369, 133.751219 -18.23868, 133.75231 -18.23968, 133.753189 -18.24048, 133.75465 -18.24182, 133.75523 -18.24239, 133.755689 -18.24288, 133.75609 -18.24335, 133.756319 -18.24365, 133.756599 -18.24402, 133.7568 -18.24432, 133.757049 -18.2447, 133.757489 -18.24547, 133.75786 -18.2462, 133.75904 -18.24854, 133.7614 -18.25324, 133.76177 -18.25397, 133.76192 -18.25427, 133.762329 -18.25507, 133.76297 -18.25636, 133.76368 -18.25776, 133.76505 -18.26048, 133.76522 -18.26082, 133.76585 -18.26207, 133.76722 -18.26478, 133.768319 -18.26696, 133.76897 -18.26825, 133.7699 -18.2701, 133.77058 -18.27145, 133.77143 -18.27314, 133.77211 -18.27448, 133.77277 -18.2758, 133.77362 -18.27748, 133.77475 -18.27973, 133.77537 -18.28095, 133.77577 -18.28176, 133.776389 -18.28297, 133.77695 -18.28409, 133.77733 -18.28483, 133.777369 -18.28491, 133.77749 -18.28516, 133.778539 -18.28724, 133.77954 -18.28923, 133.78008 -18.29029, 133.780419 -18.29098, 133.781209 -18.29253, 133.78186 -18.29382, 133.782019 -18.29415, 133.782369 -18.29483, 133.78288 -18.29585, 133.78368 -18.29744, 133.785329 -18.30071, 133.78591 -18.30186, 133.78737 -18.30474, 133.78795 -18.30588, 133.78835 -18.30667, 133.78925 -18.30846, 133.78997 -18.30989, 133.79051 -18.31095, 133.79112 -18.31217, 133.79155 -18.31301, 133.79212 -18.31413, 133.79252 -18.31485, 133.793029 -18.31566, 133.79352 -18.3164, 133.79359 -18.3165, 133.79397 -18.31707, 133.79444 -18.31779, 133.7946 -18.31802, 133.79478 -18.31828, 133.79526 -18.31901, 133.795639 -18.31957, 133.79571 -18.31968, 133.796069 -18.32023, 133.79678 -18.3213, 133.79713 -18.32182, 133.79738 -18.32219, 133.79803 -18.32316, 133.79828 -18.32353, 133.79833 -18.3236, 133.79854 -18.32392, 133.79866 -18.3241, 133.79891 -18.32447, 133.798949 -18.32453, 133.79954 -18.32542, 133.800099 -18.32625, 133.800819 -18.32733, 133.80135 -18.32812, 133.801909 -18.32895, 133.802249 -18.32946, 133.80293 -18.33047, 133.80337 -18.33112, 133.803859 -18.33186, 133.80417 -18.33232, 133.80448 -18.33279, 133.80573 -18.33464, 133.80689 -18.33638, 133.8075 -18.33729, 133.80778 -18.3377, 133.80885 -18.33929, 133.809779 -18.34067, 133.81038 -18.34156, 133.81132 -18.34297, 133.81152 -18.34326, 133.8117 -18.34353, 133.811749 -18.34361, 133.81257 -18.34483, 133.81307 -18.34557, 133.814519 -18.34774, 133.815159 -18.34869, 133.815419 -18.34906, 133.816039 -18.35, 133.81682 -18.35116, 133.816939 -18.35134, 133.8172 -18.35174, 133.81798 -18.35291, 133.81849 -18.35367, 133.81917 -18.35468, 133.819709 -18.35549, 133.81996 -18.35587, 133.8203 -18.35638, 133.82048 -18.35665, 133.82073 -18.357, 133.821 -18.35733, 133.82128 -18.35761, 133.821499 -18.35782, 133.82174 -18.35802, 133.82203 -18.35824, 133.82233 -18.35844, 133.82257 -18.35858, 133.823029 -18.3588, 133.82368 -18.35908, 133.82396 -18.3592, 133.82485 -18.35958, 133.82515 -18.35971, 133.82549 -18.35986, 133.826259 -18.36019, 133.82691 -18.36047, 133.82731 -18.36064, 133.82836 -18.36109, 133.82891 -18.36135, 133.82934 -18.36158, 133.8298 -18.36189, 133.83023 -18.36225, 133.83043 -18.36244, 133.83067 -18.36269, 133.83103 -18.36313, 133.83143 -18.36362, 133.83268 -18.36518, 133.833049 -18.36564, 133.833589 -18.36631, 133.834039 -18.36686, 133.83455 -18.36752, 133.83479 -18.36787, 133.835029 -18.36828, 133.83518 -18.36862, 133.8354 -18.36922, 133.83561 -18.36985, 133.8357 -18.37014, 133.8359 -18.37075, 133.83652 -18.37265, 133.836919 -18.37385, 133.83759 -18.37587, 133.838429 -18.3784, 133.83875 -18.37937, 133.83922 -18.38079, 133.83945 -18.38149, 133.83988 -18.38278, 133.84036 -18.38422, 133.840679 -18.38518, 133.840759 -18.38544, 133.84096 -18.38604, 133.84122 -18.38682, 133.84151 -18.3877, 133.84199 -18.38913, 133.84278 -18.39155, 133.84314 -18.39262, 133.84343 -18.39352, 133.84369 -18.3943, 133.84392 -18.39499, 133.84432 -18.3962, 133.844699 -18.39736, 133.84494 -18.39812, 133.84521 -18.39891, 133.84549 -18.39977, 133.846309 -18.40221, 133.84655 -18.40295, 133.84681 -18.40372, 133.84764 -18.40619, 133.84869 -18.40932, 133.850609 -18.4151, 133.85121 -18.41694, 133.85148 -18.41777, 133.85163 -18.41823, 133.85185 -18.4189, 133.85216 -18.41988, 133.85243 -18.42079, 133.85251 -18.42105, 133.852669 -18.42162, 133.85287 -18.42235, 133.85297 -18.42272, 133.85319 -18.42354, 133.853389 -18.42431, 133.85352 -18.42484, 133.85359 -18.42525, 133.853659 -18.42589, 133.8537 -18.4264, 133.85376 -18.42749, 133.85379 -18.42807, 133.85382 -18.42848, 133.85387 -18.42946, 133.85396 -18.43102, 133.85408 -18.43316, 133.85423 -18.43593, 133.854369 -18.43871, 133.85441 -18.43932, 133.85448 -18.4406, 133.854559 -18.44209, 133.854629 -18.44339, 133.854719 -18.4451, 133.85475 -18.44595, 133.85478 -18.44658, 133.854819 -18.4471, 133.854899 -18.44757, 133.854989 -18.44798, 133.855079 -18.4483, 133.855179 -18.44859, 133.85531 -18.44891, 133.855439 -18.44921, 133.855629 -18.44957, 133.85623 -18.4506, 133.85667 -18.45135, 133.85693 -18.45179, 133.85717 -18.45213, 133.85722 -18.45221, 133.85736 -18.45238, 133.85754 -18.45258, 133.857769 -18.45282, 133.8581 -18.45312, 133.85829 -18.45328, 133.858569 -18.45348, 133.85879 -18.45362, 133.859749 -18.45415, 133.86027 -18.45445, 133.86052 -18.45462, 133.86075 -18.4548, 133.861079 -18.45509, 133.86129 -18.4553, 133.86157 -18.45562, 133.861719 -18.45581, 133.86184 -18.45598, 133.862069 -18.45632, 133.86238 -18.45681, 133.862779 -18.45745, 133.86282 -18.45752, 133.86285 -18.45757, 133.86293 -18.45769, 133.863329 -18.45832, 133.86382 -18.45911, 133.863869 -18.45919, 133.864299 -18.45989, 133.86462 -18.46042, 133.864839 -18.4608, 133.86498 -18.46105, 133.86507 -18.4612, 133.8651 -18.46126, 133.865209 -18.46145, 133.865299 -18.46161, 133.865559 -18.46206, 133.865839 -18.46254, 133.86641 -18.46353, 133.86662 -18.4639, 133.86666 -18.46397, 133.86676 -18.46415, 133.86716 -18.46488, 133.86738 -18.46534, 133.867539 -18.46573, 133.867619 -18.46596, 133.86773 -18.46634, 133.86784 -18.46669, 133.86793 -18.46716, 133.868 -18.46761, 133.86802 -18.46785, 133.86804 -18.4683, 133.86804 -18.46847, 133.86804 -18.46862, 133.86804 -18.46878, 133.86804 -18.46887, 133.86803 -18.46904, 133.86797 -18.47006, 133.867899 -18.4711, 133.86773 -18.47374, 133.86765 -18.47493, 133.86764 -18.4751, 133.86759 -18.47596, 133.86756 -18.47664, 133.86757 -18.477, 133.8676 -18.47756, 133.8677 -18.47817, 133.867809 -18.47872, 133.86806 -18.4798, 133.86821 -18.48043, 133.868339 -18.48106, 133.86841 -18.48159, 133.86845 -18.48219, 133.86845 -18.48256, 133.868419 -18.48312, 133.868329 -18.48433, 133.8683 -18.48473, 133.86828 -18.48539, 133.86832 -18.48602, 133.86839 -18.48656, 133.86853 -18.4872, 133.86866 -18.48765, 133.868789 -18.48803, 133.86893 -18.48837, 133.8691 -18.48874, 133.86925 -18.48903, 133.86957 -18.48957, 133.86984 -18.48999, 133.87025 -18.49062, 133.87038 -18.49083, 133.87069 -18.49135, 133.87098 -18.49193, 133.87107 -18.49215, 133.8711 -18.49222, 133.87123 -18.49259, 133.87134 -18.49294, 133.8715 -18.49359, 133.8718 -18.49501, 133.87189 -18.49543, 133.87208 -18.49633, 133.87221 -18.49693, 133.872549 -18.49829, 133.87275 -18.49897, 133.87301 -18.49975, 133.87328 -18.5005, 133.873539 -18.50117, 133.874059 -18.50234, 133.87427 -18.50278, 133.87455 -18.50334, 133.87493 -18.50404, 133.87529 -18.50467, 133.87546 -18.50496, 133.87589 -18.50565, 133.876309 -18.50627, 133.87638 -18.50637, 133.87668 -18.50679, 133.877029 -18.50726, 133.877299 -18.50761, 133.87755 -18.50793, 133.87813 -18.50863, 133.87897 -18.50958, 133.87937 -18.51002, 133.87965 -18.51034, 133.88029 -18.51105, 133.88147 -18.51237, 133.881769 -18.5127, 133.88214 -18.51312, 133.88281 -18.51386, 133.88511 -18.51643, 133.887 -18.51855, 133.88749 -18.51912, 133.887769 -18.51947, 133.888659 -18.52065, 133.88928 -18.52155, 133.88968 -18.52218, 133.889839 -18.52245, 133.88986 -18.52248, 133.88994 -18.52262, 133.88998 -18.52269, 133.89034 -18.52332, 133.89057 -18.52375, 133.89142 -18.52541, 133.89402 -18.53049, 133.89532 -18.53305, 133.89542 -18.53324, 133.89612 -18.53462, 133.89687 -18.53608, 133.897089 -18.53651, 133.89713 -18.53658, 133.8973 -18.53692, 133.89737 -18.53706, 133.897609 -18.53753, 133.89776 -18.53782, 133.897799 -18.5379, 133.89791 -18.53811, 133.89796 -18.53821, 133.89854 -18.53928, 133.898689 -18.53957, 133.898959 -18.54004, 133.89929 -18.54063, 133.89954 -18.54109, 133.9 -18.54191, 133.90042 -18.54266, 133.900749 -18.54324, 133.90096 -18.54363, 133.901369 -18.54436, 133.9017 -18.54495, 133.90213 -18.54572, 133.90256 -18.54649, 133.90296 -18.54721, 133.90319 -18.54761, 133.90375 -18.5486, 133.904599 -18.55015, 133.9052 -18.55122, 133.905589 -18.55193, 133.90591 -18.5525, 133.90599 -18.55265, 133.90643 -18.55344, 133.90668 -18.55389, 133.90697 -18.55441, 133.90714 -18.55473, 133.907459 -18.55535, 133.90802 -18.55655, 133.908359 -18.5573, 133.90853 -18.55767, 133.90888 -18.55843, 133.909079 -18.55887, 133.90949 -18.55969, 133.909609 -18.55991, 133.90982 -18.56032, 133.91029 -18.56116, 133.910869 -18.56213, 133.911059 -18.56243, 133.91153 -18.56318, 133.91178 -18.56356, 133.91214 -18.56407, 133.91299 -18.56524, 133.91393 -18.56644, 133.91439 -18.567, 133.91477 -18.56746, 133.91528 -18.56809, 133.91582 -18.56875, 133.91644 -18.56951, 133.91658 -18.56969, 133.91746 -18.57075, 133.918129 -18.57155, 133.91853 -18.57202, 133.91872 -18.57225, 133.91925 -18.57291, 133.919739 -18.57358, 133.92017 -18.57426, 133.92048 -18.57481, 133.92071 -18.57525, 133.92093 -18.57572, 133.920999 -18.57588, 133.92112 -18.57614, 133.921439 -18.57685, 133.92149 -18.57697, 133.92164 -18.57732, 133.92183 -18.57773, 133.921889 -18.57788, 133.92232 -18.57887, 133.92247 -18.5792, 133.92274 -18.57981, 133.92289 -18.58016, 133.92379 -18.5822, 133.923939 -18.58254, 133.92426 -18.58326, 133.924939 -18.58481, 133.92578 -18.58672, 133.92613 -18.58751, 133.92651 -18.58838, 133.92703 -18.58956, 133.92756 -18.59076, 133.92809 -18.59197, 133.92928 -18.59468, 133.930219 -18.59682, 133.93087 -18.5983, 133.93139 -18.59949, 133.9319 -18.60064, 133.93221 -18.60134, 133.93235 -18.60167, 133.93285 -18.6028, 133.9331 -18.60336, 133.93386 -18.6051, 133.9342 -18.60588, 133.93457 -18.60671, 133.93474 -18.60711, 133.93508 -18.60788, 133.935589 -18.60903, 133.93615 -18.61019, 133.93699 -18.61179, 133.93709 -18.61198, 133.93742 -18.61261, 133.938359 -18.61438, 133.94242 -18.62204, 133.943469 -18.62405, 133.944279 -18.62563, 133.94523 -18.62755, 133.9461 -18.6293, 133.94743 -18.632, 133.94959 -18.63636, 133.950459 -18.63811, 133.951789 -18.64077, 133.95271 -18.64264, 133.95397 -18.64518, 133.957619 -18.65255, 133.95951 -18.65636, 133.96359 -18.66458, 133.96425 -18.66592, 133.96512 -18.66765, 133.96775 -18.67297, 133.972739 -18.68302, 133.97477 -18.6871, 133.97546 -18.68849, 133.97625 -18.69009, 133.97716 -18.69192, 133.97787 -18.69336, 133.97833 -18.69425, 133.97853 -18.69465, 133.97898 -18.69553, 133.97943 -18.69641, 133.979549 -18.69665, 133.97992 -18.69736, 133.97996 -18.69744, 133.98006 -18.69764, 133.98055 -18.69858, 133.98147 -18.70037, 133.98308 -18.70349, 133.98544 -18.70804, 133.98643 -18.70995, 133.986989 -18.71105, 133.98774 -18.71249, 133.98845 -18.71387, 133.98999 -18.71685, 133.99098 -18.71876, 133.9918 -18.72036, 133.99229 -18.7213, 133.99292 -18.72253, 133.99354 -18.72372, 133.994589 -18.72575, 133.994949 -18.72645, 133.99534 -18.72722, 133.99582 -18.72819, 133.99631 -18.72922, 133.99704 -18.73076, 133.997459 -18.73164, 133.99825 -18.73331, 133.99912 -18.73514, 134.00018 -18.73737, 134.001669 -18.74051, 134.00325 -18.74383, 134.0037 -18.74477, 134.00388 -18.74514, 134.00407 -18.7455, 134.004359 -18.74602, 134.00447 -18.7462, 134.00473 -18.74662, 134.00477 -18.74668, 134.00485 -18.7468, 134.00505 -18.74708, 134.005239 -18.74734, 134.005599 -18.74779, 134.005869 -18.74811, 134.006139 -18.74841, 134.006409 -18.7487, 134.006599 -18.74888, 134.0069 -18.74919, 134.00737 -18.74961, 134.007759 -18.74994, 134.00809 -18.7502, 134.0086 -18.75058, 134.0093 -18.75108, 134.00979 -18.75143, 134.01023 -18.75174, 134.01162 -18.75274, 134.01355 -18.75412, 134.01479 -18.75501, 134.01541 -18.75545, 134.01596 -18.75585, 134.01649 -18.75627, 134.01675 -18.7565, 134.01721 -18.75693, 134.0175 -18.75721, 134.017959 -18.75771, 134.01829 -18.7581, 134.01861 -18.7585, 134.01893 -18.75894, 134.01911 -18.7592, 134.01933 -18.75954, 134.019489 -18.7598, 134.019659 -18.7601, 134.01981 -18.76038, 134.01999 -18.76073, 134.020299 -18.76141, 134.02114 -18.76332, 134.02139 -18.76388, 134.02161 -18.76439, 134.02303 -18.76761, 134.02384 -18.76946, 134.02426 -18.77042, 134.0243 -18.77051, 134.024949 -18.77197, 134.02533 -18.77283, 134.02559 -18.77341, 134.02582 -18.77395, 134.02586 -18.77404, 134.02624 -18.7749, 134.02662 -18.77577, 134.02684 -18.77631, 134.02707 -18.77689, 134.027179 -18.77719, 134.02729 -18.77749, 134.027549 -18.7783, 134.02765 -18.77863, 134.02774 -18.77895, 134.02786 -18.77937, 134.02793 -18.77964, 134.028079 -18.78023, 134.02823 -18.78087, 134.0283 -18.78113, 134.02837 -18.78142, 134.02885 -18.78338, 134.02911 -18.78441, 134.02937 -18.78549, 134.0303 -18.78928, 134.03062 -18.79059, 134.03072 -18.79098, 134.030769 -18.79117, 134.0309 -18.79167, 134.03101 -18.79201, 134.03105 -18.79211, 134.03114 -18.79236, 134.03126 -18.79265, 134.03136 -18.79286, 134.03152 -18.79319, 134.03168 -18.79351, 134.03196 -18.79403, 134.03243 -18.79487, 134.03339 -18.79665, 134.03446 -18.79861, 134.034519 -18.79872, 134.03474 -18.79911, 134.03592 -18.80127, 134.03723 -18.80367, 134.03912 -18.80715, 134.04068 -18.81, 134.0419 -18.81223, 134.04269 -18.81368, 134.043569 -18.8153, 134.0471 -18.82177, 134.04785 -18.82313, 134.04935 -18.82588, 134.05214 -18.83105, 134.05354 -18.83365, 134.053959 -18.83444, 134.05499 -18.83634, 134.05523 -18.83677, 134.056019 -18.83824, 134.05671 -18.83953, 134.05687 -18.83982, 134.05698 -18.84002, 134.058079 -18.84207, 134.059699 -18.84507, 134.0608 -18.8471, 134.06107 -18.84761, 134.06405 -18.85313, 134.06454 -18.85404, 134.065059 -18.85501, 134.06772 -18.85994, 134.068189 -18.86082, 134.06914 -18.86257, 134.06948 -18.8632, 134.06964 -18.8635, 134.07049 -18.86508, 134.07194 -18.86777, 134.073479 -18.87063, 134.074199 -18.87195, 134.07462 -18.87274, 134.07523 -18.87387, 134.07714 -18.8774, 134.07743 -18.87794, 134.077779 -18.87859, 134.0786 -18.8801, 134.07933 -18.8814, 134.079659 -18.88196, 134.080469 -18.88332, 134.08089 -18.88401, 134.08141 -18.88483, 134.081619 -18.88516, 134.081899 -18.88559, 134.08221 -18.88606, 134.08257 -18.8866, 134.08311 -18.8874, 134.083419 -18.88784, 134.08375 -18.88831, 134.083859 -18.88847, 134.08434 -18.88914, 134.08456 -18.88945, 134.08545 -18.89066, 134.08586 -18.8912, 134.08661 -18.89216, 134.08719 -18.89289, 134.08777 -18.89361, 134.088349 -18.89431, 134.088979 -18.89505, 134.08957 -18.89574, 134.09016 -18.8964, 134.090579 -18.89687, 134.09117 -18.89752, 134.09206 -18.89848, 134.0927 -18.89914, 134.092909 -18.89937, 134.09314 -18.8996, 134.09359 -18.90005, 134.09397 -18.90044, 134.09432 -18.90078, 134.09492 -18.90136, 134.09583 -18.90225, 134.09625 -18.90266, 134.09665 -18.90302, 134.09674 -18.90309, 134.097 -18.9033, 134.09744 -18.90363, 134.097749 -18.90383, 134.098009 -18.90399, 134.098379 -18.90421, 134.09877 -18.90441, 134.09914 -18.90458, 134.099449 -18.90471, 134.09978 -18.90483, 134.10032 -18.90501, 134.10056 -18.90508, 134.10093 -18.90518, 134.10218 -18.90551, 134.10511 -18.90628, 134.106699 -18.90671, 134.1077 -18.90697, 134.10846 -18.90717, 134.10871 -18.90725, 134.10926 -18.90742, 134.10946 -18.90749, 134.10979 -18.90762, 134.110359 -18.90788, 134.11089 -18.90816, 134.11125 -18.90837, 134.111539 -18.90856, 134.111979 -18.90887, 134.11224 -18.90907, 134.1125 -18.90929, 134.11281 -18.90957, 134.11319 -18.90994, 134.1134 -18.91018, 134.11354 -18.91033, 134.11374 -18.91057, 134.114139 -18.9111, 134.114399 -18.91152, 134.114669 -18.91199, 134.11489 -18.91242, 134.115029 -18.91273, 134.11515 -18.91303, 134.115289 -18.9134, 134.11541 -18.91378, 134.11551 -18.91416, 134.11558 -18.91446, 134.115659 -18.91491, 134.115739 -18.91549, 134.11588 -18.91666, 134.11614 -18.91836, 134.11631 -18.91961, 134.11649 -18.92085, 134.11661 -18.92152, 134.11667 -18.92182, 134.1168 -18.92239, 134.116999 -18.92316, 134.117179 -18.92377, 134.117439 -18.92457, 134.11815 -18.92667, 134.11823 -18.9269, 134.118259 -18.92698, 134.11858 -18.92795, 134.11875 -18.92847, 134.11895 -18.92915, 134.11917 -18.92995, 134.11929 -18.93046, 134.11946 -18.93128, 134.11958 -18.93193, 134.11961 -18.93209, 134.119769 -18.93311, 134.119959 -18.93434, 134.12006 -18.93497, 134.12029 -18.93643, 134.120389 -18.93707, 134.12054 -18.93795, 134.120659 -18.93855, 134.120849 -18.93931, 134.12107 -18.94003, 134.12119 -18.94042, 134.12155 -18.94138, 134.12178 -18.94199, 134.12189 -18.94227, 134.12223 -18.94318, 134.122359 -18.94349, 134.12258 -18.94398, 134.12278 -18.94436, 134.12306 -18.94483, 134.12332 -18.94522, 134.12347 -18.94542, 134.12374 -18.94575, 134.12402 -18.94607, 134.124239 -18.9463, 134.12464 -18.94669, 134.12508 -18.94706, 134.12553 -18.94744, 134.1266 -18.94833, 134.12697 -18.94866, 134.12734 -18.94902, 134.12768 -18.94938, 134.12789 -18.94963, 134.12812 -18.9499, 134.12842 -18.95031, 134.12866 -18.95066, 134.12895 -18.95114, 134.12912 -18.95145, 134.12941 -18.95203, 134.129969 -18.95323, 134.13032 -18.95399, 134.13082 -18.95508, 134.13086 -18.95517, 134.13116 -18.95582, 134.13152 -18.95658, 134.131599 -18.95676, 134.13161 -18.95678, 134.131869 -18.95735, 134.13191 -18.95744, 134.131959 -18.95756, 134.13206 -18.95777, 134.1321 -18.95786, 134.132119 -18.9579, 134.13215 -18.95797, 134.13223 -18.95814, 134.13232 -18.95833, 134.132399 -18.95852, 134.13241 -18.95854, 134.132579 -18.95891, 134.1327 -18.95917, 134.13279 -18.95936, 134.13292 -18.95963, 134.13297 -18.95974, 134.133 -18.95981, 134.13301 -18.95984, 134.13306 -18.95993, 134.13316 -18.96015, 134.133379 -18.96062, 134.13361 -18.96112, 134.13378 -18.96148, 134.13397 -18.9619, 134.13435 -18.96273, 134.13513 -18.96441, 134.13702 -18.96851, 134.13757 -18.9697, 134.13784 -18.9703, 134.13826 -18.97113, 134.13853 -18.97162, 134.13889 -18.97224, 134.13925 -18.97278, 134.13971 -18.97343, 134.140009 -18.97383, 134.14089 -18.97491, 134.14107 -18.97514, 134.141269 -18.9754, 134.14151 -18.97575, 134.14174 -18.97612, 134.14203 -18.97663, 134.14209 -18.97676, 134.142239 -18.97709, 134.142339 -18.97733, 134.14245 -18.97763, 134.14255 -18.97792, 134.14263 -18.97817, 134.14271 -18.97847, 134.142789 -18.97882, 134.14286 -18.97922, 134.14293 -18.97977, 134.14295 -18.98022, 134.142959 -18.98058, 134.142959 -18.9808, 134.14294 -18.98111, 134.1429 -18.98155, 134.142789 -18.98234, 134.142609 -18.9835, 134.14247 -18.98445, 134.14223 -18.98594, 134.14212 -18.98668, 134.14201 -18.98744, 134.141969 -18.98768, 134.14192 -18.98798, 134.141809 -18.98876, 134.14165 -18.98976, 134.141439 -18.99114, 134.14132 -18.99194, 134.14114 -18.99309, 134.14105 -18.99358, 134.14092 -18.99425, 134.14066 -18.99522, 134.14039 -18.99609, 134.14029 -18.99637, 134.14006 -18.99696, 134.1398 -18.99758, 134.138579 -19.00041, 134.13805 -19.00163, 134.137319 -19.00332, 134.13677 -19.0046, 134.13659 -19.00507, 134.13649 -19.00541, 134.136329 -19.00602, 134.136249 -19.00645, 134.1362 -19.00678, 134.13617 -19.00705, 134.136159 -19.00717, 134.13614 -19.00746, 134.13613 -19.00794, 134.13613 -19.00823, 134.13617 -19.00877, 134.13627 -19.00946, 134.13658 -19.01148, 134.13672 -19.01234, 134.13707 -19.0146, 134.13713 -19.01493, 134.13725 -19.01553, 134.13729 -19.01568, 134.13743 -19.0162, 134.13761 -19.01676, 134.13773 -19.01709, 134.13789 -19.01751, 134.1381 -19.018, 134.13842 -19.01865, 134.13877 -19.01928, 134.138929 -19.01956, 134.1395 -19.0206, 134.140009 -19.02151, 134.14042 -19.02225, 134.14058 -19.02253, 134.14078 -19.02289, 134.14111 -19.02348, 134.1413 -19.02382, 134.141619 -19.02439, 134.141889 -19.02488, 134.14222 -19.02548, 134.14241 -19.02582, 134.14415 -19.02894, 134.144759 -19.03003, 134.14536 -19.03111, 134.14587 -19.03202, 134.1463 -19.03279, 134.146989 -19.03403, 134.1473 -19.03458, 134.1476 -19.03512, 134.14802 -19.03589, 134.14835 -19.03649, 134.14863 -19.03701, 134.14929 -19.03831, 134.14978 -19.03927, 134.150839 -19.04136, 134.15222 -19.04407, 134.15305 -19.0457, 134.15329 -19.04619, 134.15357 -19.04685, 134.153709 -19.0472, 134.15382 -19.0475, 134.15422 -19.04864, 134.15453 -19.0495, 134.15482 -19.05033, 134.155059 -19.051, 134.15521 -19.05138, 134.15537 -19.05176, 134.15552 -19.05209, 134.155859 -19.05281, 134.15665 -19.0545, 134.15776 -19.05686, 134.158369 -19.05816, 134.159169 -19.05986, 134.15958 -19.06074, 134.15999 -19.06162, 134.160239 -19.06213, 134.16074 -19.0632, 134.161489 -19.06479, 134.162839 -19.06768, 134.16317 -19.06837, 134.16344 -19.06895, 134.16368 -19.06944, 134.16408 -19.07029, 134.16422 -19.07057, 134.16439 -19.07087, 134.16457 -19.07116, 134.16469 -19.07133, 134.1651 -19.0719, 134.165519 -19.07239, 134.16592 -19.07281, 134.16635 -19.07319, 134.16677 -19.07352, 134.167399 -19.07397, 134.16791 -19.07433, 134.168389 -19.07471, 134.16878 -19.07507, 134.16904 -19.07533, 134.16948 -19.07583, 134.16967 -19.07606, 134.16984 -19.07629, 134.17004 -19.07658, 134.17026 -19.07692, 134.17053 -19.07739, 134.17071 -19.07776, 134.17088 -19.07815, 134.17104 -19.07856, 134.17113 -19.07883, 134.17127 -19.07929, 134.17138 -19.0797, 134.17149 -19.08009, 134.171799 -19.0812, 134.17212 -19.08236, 134.17223 -19.08272, 134.17237 -19.08316, 134.17249 -19.08346, 134.172689 -19.08394, 134.17293 -19.08442, 134.17339 -19.08532, 134.17375 -19.08609, 134.17399 -19.08663, 134.17423 -19.08722, 134.17434 -19.08749, 134.17453 -19.088, 134.17471 -19.08851, 134.1748 -19.08876, 134.17498 -19.08933, 134.175109 -19.08977, 134.175199 -19.09012, 134.17544 -19.0911, 134.17558 -19.09171, 134.17566 -19.09211, 134.17576 -19.09273, 134.17587 -19.09348, 134.17593 -19.094, 134.17597 -19.09444, 134.17603 -19.09512, 134.17606 -19.09568, 134.17608 -19.09625, 134.17608 -19.09707, 134.17607 -19.09778, 134.17603 -19.09863, 134.17595 -19.09944, 134.1759 -19.09992, 134.17581 -19.1006, 134.175739 -19.10105, 134.1756 -19.10178, 134.17535 -19.10295, 134.175109 -19.10386, 134.17445 -19.10598, 134.17419 -19.10682, 134.17327 -19.10977, 134.17284 -19.11114, 134.17267 -19.11165, 134.172419 -19.11241, 134.17202 -19.11355, 134.17181 -19.11413, 134.17118 -19.11593, 134.17058 -19.11762, 134.16987 -19.11965, 134.16958 -19.12052, 134.16954 -19.12064, 134.16939 -19.12113, 134.16918 -19.12186, 134.169019 -19.12242, 134.16888 -19.12298, 134.16863 -19.12409, 134.16852 -19.12467, 134.16837 -19.12546, 134.16827 -19.12609, 134.16826 -19.12619, 134.16824 -19.12637, 134.16819 -19.12674, 134.168119 -19.12732, 134.168029 -19.12827, 134.16797 -19.12912, 134.167939 -19.12974, 134.16793 -19.12991, 134.16784 -19.13227, 134.16781 -19.13307, 134.16773 -19.13531, 134.16771 -19.13577, 134.1677 -19.13605, 134.1676 -19.13853, 134.16757 -19.13928, 134.16754 -19.14024, 134.16752 -19.14065, 134.16748 -19.14188, 134.16745 -19.14261, 134.167409 -19.14369, 134.16738 -19.1443, 134.167309 -19.14624, 134.16729 -19.14671, 134.16728 -19.1469, 134.16727 -19.14717, 134.16718 -19.14968, 134.16709 -19.15204, 134.16699 -19.15482, 134.1669 -19.15718, 134.1668 -19.15969, 134.16675 -19.16126, 134.166699 -19.16255, 134.16666 -19.16319, 134.16659 -19.16539, 134.166509 -19.1676, 134.16645 -19.16896, 134.166429 -19.16971, 134.16639 -19.17081, 134.16632 -19.17257, 134.16621 -19.17557, 134.16618 -19.17642, 134.166149 -19.17714, 134.166149 -19.17727, 134.16614 -19.17772, 134.166149 -19.17814, 134.16617 -19.17844, 134.16619 -19.17878, 134.16628 -19.17963, 134.16649 -19.18157, 134.16689 -19.18533, 134.166969 -19.18607, 134.16711 -19.18739, 134.16719 -19.18812, 134.16721 -19.18826, 134.16737 -19.18964, 134.16754 -19.19116, 134.16764 -19.19205, 134.167769 -19.19326, 134.16801 -19.1954, 134.168129 -19.19652, 134.16834 -19.19848, 134.168579 -19.20067, 134.16861 -19.20091, 134.16865 -19.20132, 134.168759 -19.20232, 134.16898 -19.20432, 134.169189 -19.20622, 134.16925 -19.20675, 134.16931 -19.20707, 134.16942 -19.20756, 134.16951 -19.2079, 134.16999 -19.20965, 134.17059 -19.21178, 134.17195 -19.21667, 134.1729 -19.22005, 134.17345 -19.22202, 134.173949 -19.22382, 134.17443 -19.22554, 134.17512 -19.22801, 134.17569 -19.23006, 134.17623 -19.23199, 134.17733 -19.23593, 134.177699 -19.23724, 134.17809 -19.23863, 134.178419 -19.23983, 134.178969 -19.2418, 134.1791 -19.24226, 134.17957 -19.24394, 134.18 -19.24548, 134.18118 -19.24966, 134.18159 -19.25111, 134.181819 -19.2519, 134.18199 -19.25253, 134.18215 -19.25311, 134.18225 -19.25357, 134.18231 -19.25393, 134.18234 -19.25415, 134.1824 -19.25474, 134.18248 -19.25591, 134.182619 -19.25801, 134.182729 -19.25971, 134.18283 -19.26118, 134.182899 -19.26219, 134.18304 -19.26437, 134.18333 -19.26873, 134.183519 -19.2717, 134.183619 -19.27308, 134.18363 -19.27322, 134.18366 -19.2737, 134.18374 -19.27491, 134.18382 -19.27599, 134.183969 -19.27829, 134.1841 -19.28012, 134.18432 -19.28342, 134.18449 -19.28581, 134.1849 -19.2919, 134.185039 -19.29391, 134.18533 -19.2982, 134.18543 -19.29961, 134.18551 -19.30043, 134.18565 -19.30139, 134.18582 -19.30255, 134.186399 -19.30648, 134.18641 -19.30658, 134.18758 -19.31452, 134.18787 -19.31654, 134.18826 -19.3192, 134.188449 -19.32047, 134.188799 -19.32286, 134.18896 -19.32397, 134.18919 -19.32554, 134.18932 -19.32639, 134.1895 -19.32764, 134.18993 -19.33055, 134.18999 -19.33098, 134.190149 -19.33202, 134.19039 -19.33354, 134.19056 -19.33462, 134.19072 -19.33559, 134.190859 -19.33642, 134.191039 -19.33754, 134.19115 -19.3382, 134.19135 -19.33941, 134.191849 -19.34246, 134.19305 -19.34982, 134.1937 -19.35376, 134.19388 -19.35487, 134.19425 -19.35716, 134.19439 -19.35798, 134.19449 -19.35858, 134.19477 -19.36032, 134.19514 -19.36259, 134.19536 -19.3639, 134.195439 -19.36441, 134.195619 -19.36548, 134.19572 -19.36608, 134.196159 -19.3688, 134.19638 -19.37014, 134.19689 -19.37327, 134.197129 -19.37469, 134.197319 -19.37586, 134.19756 -19.37736, 134.197769 -19.3786, 134.198379 -19.38227, 134.19841 -19.38246, 134.19931 -19.38782, 134.19975 -19.39047, 134.20007 -19.39224, 134.20032 -19.39378, 134.2006 -19.39551, 134.20074 -19.39638, 134.201529 -19.40109, 134.20192 -19.40345, 134.20274 -19.40837, 134.20276 -19.40848, 134.20321 -19.41113, 134.203319 -19.4118, 134.20352 -19.41302, 134.203669 -19.41389, 134.20432 -19.41774, 134.20461 -19.41946, 134.204649 -19.41969, 134.20482 -19.42071, 134.20522 -19.42308, 134.205469 -19.42456, 134.205909 -19.42713, 134.20623 -19.42906, 134.20652 -19.43079, 134.20655 -19.43094, 134.20678 -19.43228, 134.20692 -19.43312, 134.206989 -19.43353, 134.2071 -19.43414, 134.207159 -19.43444, 134.20719 -19.43462, 134.207249 -19.43498, 134.20733 -19.43555, 134.20736 -19.43578, 134.20763 -19.4375, 134.20764 -19.43754, 134.207709 -19.43794, 134.207789 -19.43843, 134.20782 -19.43859, 134.2079 -19.43902, 134.2081 -19.44024, 134.208239 -19.44104, 134.20826 -19.4412, 134.208319 -19.44154, 134.20857 -19.44306, 134.208599 -19.44323, 134.20876 -19.44415, 134.20884 -19.44462, 134.20918 -19.44668, 134.20933 -19.44757, 134.20963 -19.44936, 134.20998 -19.4515, 134.21026 -19.45316, 134.21061 -19.45531, 134.211459 -19.46042, 134.21167 -19.46172, 134.212079 -19.46414, 134.21257 -19.46721, 134.21282 -19.46865, 134.21333 -19.47174, 134.21345 -19.47243, 134.21365 -19.47368, 134.21403 -19.47603, 134.214419 -19.4785, 134.21503 -19.48234, 134.215129 -19.48301, 134.21529 -19.48399, 134.21543 -19.4849, 134.21601 -19.48863, 134.21682 -19.49376, 134.21721 -19.49626, 134.217549 -19.49842, 134.21768 -19.49931, 134.21814 -19.5022, 134.21871 -19.50588, 134.2189 -19.50708, 134.21905 -19.50809, 134.21937 -19.51012, 134.2196 -19.51156, 134.21974 -19.51249, 134.21982 -19.513, 134.21988 -19.51337, 134.2199 -19.51347, 134.21993 -19.5137, 134.22 -19.51412, 134.22014 -19.51496, 134.22018 -19.51524, 134.2202 -19.51535, 134.22035 -19.51618, 134.22047 -19.51688, 134.22054 -19.51733, 134.22058 -19.51758, 134.22094 -19.51961, 134.22129 -19.52162, 134.22203 -19.52596, 134.22321 -19.53285, 134.22347 -19.53436, 134.22398 -19.53734, 134.22419 -19.53853, 134.2247 -19.54154, 134.22496 -19.54302, 134.22568 -19.54727, 134.22574 -19.54762, 134.22604 -19.54937, 134.22615 -19.54998, 134.22624 -19.55058, 134.22631 -19.55116, 134.22634 -19.55137, 134.22641 -19.55183, 134.22638 -19.55247, 134.22636 -19.55295, 134.22632 -19.55343, 134.22627 -19.5539, 134.22621 -19.55427, 134.22615 -19.55463, 134.2261 -19.55487, 134.22606 -19.55504, 134.22597 -19.5554, 134.22589 -19.55569, 134.22578 -19.55602, 134.22555 -19.55666, 134.22534 -19.55716, 134.22508 -19.55771, 134.22481 -19.55821, 134.22455 -19.55864, 134.2243 -19.55902, 134.22414 -19.55926, 134.22391 -19.55957, 134.22351 -19.56007, 134.22322 -19.5604, 134.22302 -19.56061, 134.22279 -19.56085, 134.22251 -19.56112, 134.22209 -19.5615, 134.22135 -19.56211, 134.2204 -19.56288, 134.22032 -19.56295, 134.22016 -19.56308, 134.21907 -19.56398, 134.21865 -19.56433, 134.21818 -19.56475, 134.21784 -19.56508, 134.21754 -19.5654, 134.21714 -19.56585, 134.21652 -19.56655, 134.21597 -19.56718, 134.21592 -19.56724, 134.21492 -19.5684, 134.21408 -19.56936, 134.213519 -19.57, 134.212899 -19.5707, 134.212449 -19.57118, 134.21206 -19.57156, 134.211739 -19.57186, 134.21134 -19.5722, 134.21096 -19.57252, 134.21061 -19.57279, 134.21017 -19.57311, 134.20969 -19.57344, 134.2091 -19.57381, 134.208689 -19.57405, 134.208149 -19.57433, 134.20733 -19.57475, 134.20571 -19.57556, 134.20508 -19.57591, 134.20458 -19.57621, 134.20387 -19.57667, 134.20338 -19.57703, 134.203 -19.57733, 134.202679 -19.57759, 134.20238 -19.57785, 134.20186 -19.57832, 134.201429 -19.57875, 134.20114 -19.57906, 134.20082 -19.57941, 134.2005 -19.57979, 134.20004 -19.58037, 134.19962 -19.58095, 134.19927 -19.58149, 134.19896 -19.582, 134.1985 -19.58286, 134.19817 -19.58358, 134.19796 -19.58408, 134.19782 -19.58446, 134.19763 -19.58503, 134.19742 -19.5857, 134.19728 -19.5863, 134.197129 -19.58703, 134.197039 -19.58759, 134.196959 -19.58826, 134.1969 -19.58903, 134.19689 -19.58953, 134.19689 -19.59014, 134.19692 -19.59075, 134.19697 -19.59152, 134.19706 -19.59285, 134.19708 -19.59369, 134.19708 -19.5944, 134.197049 -19.59513, 134.197039 -19.59542, 134.19699 -19.59604, 134.1969 -19.59694, 134.19673 -19.5985, 134.19645 -19.60106, 134.19628 -19.60253, 134.19621 -19.60316, 134.19611 -19.60405, 134.19601 -19.60479, 134.19595 -19.60514, 134.19592 -19.60536, 134.195799 -19.60606, 134.195609 -19.60709, 134.1955 -19.60762, 134.19538 -19.60819, 134.19519 -19.60898, 134.19491 -19.61007, 134.19449 -19.61164, 134.19416 -19.61288, 134.193739 -19.61451, 134.19343 -19.61576, 134.19323 -19.61674, 134.19318 -19.61707, 134.19307 -19.61771, 134.19288 -19.61889, 134.192749 -19.61988, 134.19263 -19.62094, 134.192579 -19.62148, 134.19253 -19.62219, 134.192469 -19.62329, 134.19246 -19.62367, 134.19245 -19.62404, 134.19244 -19.62517, 134.19245 -19.6267, 134.19246 -19.62728, 134.192469 -19.62769, 134.192469 -19.62799, 134.192489 -19.62948, 134.192489 -19.63071, 134.19246 -19.63183, 134.19245 -19.63227, 134.19241 -19.63314, 134.19237 -19.63378, 134.19233 -19.6343, 134.192309 -19.63462, 134.19224 -19.63535, 134.19218 -19.63602, 134.19217 -19.63614, 134.192119 -19.63659, 134.19211 -19.63669, 134.19208 -19.63697, 134.19206 -19.63719, 134.19198 -19.63788, 134.19196 -19.63813, 134.191939 -19.63828, 134.19193 -19.63842, 134.19192 -19.6385, 134.19198 -19.63861, 134.19197 -19.63869, 134.19196 -19.63879, 134.191949 -19.63899, 134.19182 -19.64028, 134.19171 -19.64142, 134.19163 -19.64216, 134.19139 -19.64461, 134.19136 -19.64481, 134.191309 -19.64505, 134.191219 -19.64537, 134.191049 -19.64594, 134.1908 -19.64669, 134.190429 -19.64784, 134.19036 -19.64806, 134.18977 -19.64989, 134.18915 -19.65184, 134.18894 -19.65247, 134.1885 -19.65386, 134.18807 -19.65519, 134.18795 -19.65515, 134.18838 -19.65383, 134.1888055916 -19.6524951901)" +-14.4697108,132.2728948,-16.6800009,133.4125177,2,Katherine,"LINESTRING (132.2728986177 -14.4696846157, 132.27273 -14.46966, 132.27138 -14.46945, 132.27086 -14.46936, 132.27093 -14.46901, 132.27125 -14.46907, 132.27186 -14.46916, 132.273329 -14.46938, 132.274229 -14.46953, 132.27471 -14.46961, 132.2756 -14.46981, 132.27577 -14.46985, 132.27599 -14.46991, 132.276209 -14.46996, 132.27697 -14.47015, 132.277459 -14.47027, 132.27785 -14.47036, 132.27873 -14.47058, 132.279339 -14.47073, 132.2794 -14.47075, 132.280139 -14.47093, 132.281309 -14.47122, 132.28222 -14.47145, 132.28284 -14.4716, 132.28342 -14.47174, 132.284619 -14.47204, 132.2849 -14.47212, 132.28518 -14.47219, 132.28591 -14.4724, 132.28627 -14.47249, 132.2866 -14.47258, 132.28715 -14.47271, 132.28756 -14.47282, 132.28804 -14.47292, 132.28832 -14.47298, 132.28868 -14.47308, 132.28896 -14.47315, 132.289279 -14.47323, 132.29004 -14.47341, 132.29057 -14.47355, 132.29074 -14.47359, 132.2909 -14.47363, 132.29195 -14.47389, 132.292859 -14.47412, 132.294119 -14.47443, 132.29432 -14.47448, 132.29463 -14.47457, 132.29506 -14.47467, 132.29538 -14.47475, 132.29595 -14.47489, 132.29645 -14.475, 132.296979 -14.47514, 132.29728 -14.47521, 132.29777 -14.47531, 132.297869 -14.47533, 132.298489 -14.47549, 132.29945 -14.47573, 132.29998 -14.47586, 132.300549 -14.476, 132.30153 -14.47623, 132.301799 -14.4763, 132.301979 -14.47635, 132.30223 -14.47641, 132.302439 -14.47646, 132.30282 -14.47657, 132.303869 -14.47683, 132.304039 -14.47687, 132.30419 -14.47691, 132.30448 -14.47698, 132.30507 -14.47711, 132.307549 -14.47773, 132.30893 -14.47807, 132.30982 -14.47829, 132.309949 -14.47832, 132.310219 -14.47839, 132.31151 -14.47871, 132.31286 -14.47904, 132.31465 -14.47949, 132.315589 -14.47972, 132.316669 -14.47999, 132.31788 -14.48028, 132.31885 -14.48052, 132.31912 -14.48059, 132.31975 -14.48073, 132.3203 -14.48086, 132.321149 -14.48107, 132.321599 -14.48119, 132.322 -14.4813, 132.32251 -14.48144, 132.32284 -14.48152, 132.32293 -14.48154, 132.323749 -14.48174, 132.32498 -14.48204, 132.325809 -14.48225, 132.32603 -14.48231, 132.32632 -14.48238, 132.32712 -14.48257, 132.3281 -14.48282, 132.328669 -14.48296, 132.32888 -14.48301, 132.32918 -14.48308, 132.32941 -14.48314, 132.33085 -14.4835, 132.33143 -14.48365, 132.33263 -14.48393, 132.333419 -14.48411, 132.334489 -14.48437, 132.33508 -14.48452, 132.33551 -14.48463, 132.335749 -14.48469, 132.336009 -14.48475, 132.33632 -14.48482, 132.33671 -14.4849, 132.337009 -14.48495, 132.33716 -14.48497, 132.33738 -14.485, 132.33767 -14.48503, 132.33806 -14.48507, 132.33855 -14.4851, 132.33903 -14.48512, 132.339239 -14.48512, 132.33944 -14.48511, 132.339859 -14.48507, 132.34028 -14.48502, 132.34069 -14.48496, 132.34101 -14.4849, 132.34114 -14.48488, 132.341559 -14.48478, 132.34205 -14.48464, 132.34231 -14.48456, 132.3426 -14.48446, 132.342899 -14.48435, 132.343359 -14.48416, 132.34393 -14.48389, 132.344439 -14.48361, 132.34481 -14.48338, 132.34521 -14.48312, 132.345509 -14.48291, 132.345769 -14.48271, 132.346039 -14.48249, 132.34642 -14.48216, 132.34661 -14.48198, 132.34687 -14.48172, 132.347289 -14.48126, 132.347839 -14.4806, 132.34853 -14.47977, 132.348829 -14.4794, 132.349359 -14.4788, 132.349719 -14.47841, 132.35 -14.47813, 132.35028 -14.47787, 132.35067 -14.47755, 132.35098 -14.47731, 132.3513 -14.47708, 132.351689 -14.47682, 132.351949 -14.47666, 132.352229 -14.4765, 132.35255 -14.47633, 132.352849 -14.47618, 132.35313 -14.47605, 132.35351 -14.47589, 132.35415 -14.47566, 132.35486 -14.47545, 132.35532 -14.47534, 132.355619 -14.47528, 132.35593 -14.47523, 132.35655 -14.47515, 132.35711 -14.4751, 132.35767 -14.47508, 132.35821 -14.47509, 132.358839 -14.47513, 132.35955 -14.47523, 132.359739 -14.47527, 132.36058 -14.47542, 132.361259 -14.47558, 132.36152 -14.47564, 132.361629 -14.47567, 132.36229 -14.47582, 132.362969 -14.47598, 132.36406 -14.47623, 132.36416 -14.47625, 132.36478 -14.47639, 132.365119 -14.47647, 132.3672 -14.47695, 132.36769 -14.47706, 132.369679 -14.4775, 132.3717 -14.47797, 132.37301 -14.47827, 132.37393 -14.47847, 132.37705 -14.47918, 132.38039 -14.47994, 132.38215 -14.48034, 132.38325 -14.48059, 132.385539 -14.48111, 132.38745 -14.48154, 132.389909 -14.4821, 132.3911 -14.48237, 132.39219 -14.48261, 132.39227 -14.48263, 132.3931 -14.48279, 132.39384 -14.48295, 132.3945 -14.48313, 132.39474 -14.48319, 132.39516 -14.48331, 132.395639 -14.48344, 132.39621 -14.48361, 132.396549 -14.48371, 132.39749 -14.48403, 132.39765 -14.48409, 132.39829 -14.48433, 132.39872 -14.4845, 132.399 -14.48461, 132.40028 -14.48512, 132.40099 -14.48543, 132.40181 -14.48581, 132.402629 -14.48622, 132.4036 -14.48672, 132.40504 -14.48752, 132.40591 -14.48804, 132.40668 -14.48853, 132.407289 -14.48893, 132.408449 -14.48974, 132.409259 -14.49034, 132.41014 -14.49101, 132.41071 -14.49148, 132.41139 -14.49206, 132.41244 -14.493, 132.41322 -14.49374, 132.41388 -14.49441, 132.41456 -14.49512, 132.41487 -14.49546, 132.41533 -14.49597, 132.41584 -14.49657, 132.41702 -14.49802, 132.41781 -14.49908, 132.41802 -14.49936, 132.418119 -14.49949, 132.42014 -14.50217, 132.420819 -14.50308, 132.421709 -14.50428, 132.421889 -14.50451, 132.42335 -14.50646, 132.42469 -14.50823, 132.42631 -14.5104, 132.42687 -14.51119, 132.42714 -14.51163, 132.42719 -14.51171, 132.42739 -14.51203, 132.42746 -14.51215, 132.42775 -14.51267, 132.42793 -14.51302, 132.42799 -14.51314, 132.428149 -14.51347, 132.42829 -14.51379, 132.42853 -14.51434, 132.42884 -14.51516, 132.42907 -14.51588, 132.42916 -14.51615, 132.42933 -14.5168, 132.4296 -14.51802, 132.42973 -14.51866, 132.43 -14.51987, 132.43043 -14.5219, 132.43106 -14.52482, 132.4326 -14.53201, 132.432979 -14.53376, 132.433259 -14.53494, 132.433529 -14.53588, 132.43383 -14.53679, 132.434249 -14.53788, 132.43456 -14.53862, 132.434869 -14.53927, 132.435399 -14.54029, 132.43575 -14.54091, 132.43608 -14.54146, 132.43651 -14.54213, 132.43673 -14.54246, 132.436839 -14.54262, 132.437099 -14.54298, 132.43724 -14.54317, 132.4374 -14.54338, 132.43745 -14.54345, 132.43803 -14.54417, 132.438179 -14.54435, 132.43842 -14.54462, 132.438709 -14.54496, 132.43906 -14.54534, 132.439529 -14.54582, 132.440059 -14.54635, 132.440339 -14.54659, 132.44058 -14.54681, 132.44093 -14.54712, 132.441309 -14.54744, 132.44196 -14.54796, 132.442579 -14.54843, 132.44333 -14.54894, 132.443919 -14.54933, 132.4447 -14.5498, 132.44581 -14.55044, 132.450089 -14.55293, 132.454119 -14.55527, 132.458499 -14.55781, 132.45992 -14.55863, 132.46651 -14.56245, 132.46993 -14.56445, 132.47121 -14.5652, 132.47216 -14.56576, 132.47465 -14.56716, 132.47495 -14.56734, 132.475429 -14.56762, 132.47584 -14.56786, 132.47589 -14.56789, 132.47625 -14.56812, 132.47688 -14.56849, 132.47813 -14.56921, 132.48079 -14.57076, 132.48264 -14.57183, 132.48454 -14.57293, 132.48561 -14.57355, 132.48579 -14.57366, 132.486719 -14.57416, 132.48677 -14.57419, 132.48706 -14.57438, 132.487249 -14.57449, 132.48775 -14.57478, 132.4883 -14.57511, 132.48847 -14.57521, 132.48879 -14.5754, 132.4889 -14.57546, 132.48999 -14.57609, 132.490739 -14.57653, 132.491469 -14.57694, 132.49207 -14.57725, 132.49284 -14.57759, 132.49353 -14.57786, 132.49395 -14.57799, 132.49443 -14.57813, 132.49524 -14.57834, 132.49589 -14.57848, 132.496829 -14.57869, 132.49859 -14.57908, 132.49939 -14.57925, 132.50003 -14.57939, 132.50119 -14.57965, 132.50397 -14.58025, 132.5043 -14.58033, 132.50547 -14.58059, 132.50602 -14.5807, 132.50627 -14.58076, 132.5067 -14.58086, 132.50729 -14.58099, 132.50783 -14.58111, 132.50825 -14.5812, 132.50923 -14.58142, 132.510269 -14.58165, 132.51455 -14.58259, 132.51745 -14.58322, 132.52113 -14.58403, 132.52392 -14.58466, 132.52678 -14.58527, 132.52977 -14.58593, 132.53272 -14.58658, 132.53394 -14.58685, 132.535689 -14.58724, 132.53642 -14.58743, 132.53691 -14.58758, 132.53761 -14.58783, 132.53813 -14.58804, 132.538739 -14.58831, 132.53962 -14.58878, 132.541059 -14.58964, 132.54329 -14.59096, 132.54865 -14.59417, 132.556019 -14.59858, 132.55846 -14.60005, 132.55982 -14.60087, 132.56284 -14.60268, 132.567649 -14.60555, 132.56932 -14.60655, 132.57287 -14.60867, 132.57445 -14.60962, 132.57567 -14.61034, 132.575979 -14.61053, 132.577149 -14.61123, 132.57906 -14.61237, 132.58182 -14.61403, 132.58741 -14.61739, 132.588869 -14.61827, 132.591299 -14.61973, 132.5949 -14.6219, 132.59549 -14.62225, 132.5971 -14.62321, 132.597559 -14.62348, 132.597649 -14.62354, 132.59982 -14.62484, 132.603659 -14.62714, 132.60683 -14.62904, 132.60779 -14.62962, 132.6081 -14.6298, 132.60883 -14.63024, 132.608929 -14.6303, 132.61101 -14.63154, 132.61131 -14.63172, 132.61213 -14.63221, 132.61239 -14.63237, 132.61365 -14.63312, 132.615019 -14.63394, 132.62071 -14.63735, 132.62293 -14.63868, 132.62522 -14.64005, 132.626929 -14.64107, 132.62789 -14.64165, 132.62868 -14.64212, 132.628899 -14.64225, 132.62949 -14.64261, 132.63013 -14.64299, 132.63065 -14.6433, 132.63148 -14.6438, 132.631779 -14.64398, 132.6319 -14.64405, 132.63256 -14.64445, 132.632659 -14.64451, 132.63371 -14.64514, 132.63385 -14.64522, 132.63433 -14.64551, 132.63476 -14.64577, 132.63497 -14.6459, 132.63537 -14.64613, 132.636249 -14.64666, 132.63735 -14.64732, 132.63833 -14.6479, 132.64132 -14.64968, 132.64418 -14.65138, 132.646279 -14.65262, 132.648 -14.65364, 132.649849 -14.65476, 132.651739 -14.65589, 132.652279 -14.65619, 132.65293 -14.65651, 132.653699 -14.65684, 132.65435 -14.65708, 132.65503 -14.65728, 132.65545 -14.65739, 132.65599 -14.65752, 132.65663 -14.65764, 132.657209 -14.65773, 132.65771 -14.65779, 132.658539 -14.65783, 132.65898 -14.65784, 132.65973 -14.65782, 132.66118 -14.65778, 132.66169 -14.65776, 132.66223 -14.65774, 132.66288 -14.6578, 132.663559 -14.6579, 132.66402 -14.658, 132.66438 -14.65809, 132.66493 -14.65827, 132.6652 -14.65837, 132.66547 -14.65848, 132.66582 -14.65863, 132.66602 -14.65872, 132.66627 -14.65885, 132.666689 -14.65915, 132.66703 -14.65939, 132.667309 -14.65961, 132.66747 -14.65973, 132.66774 -14.65997, 132.66792 -14.66013, 132.668029 -14.66025, 132.66823 -14.66046, 132.66859 -14.66086, 132.66877 -14.6611, 132.66898 -14.66138, 132.66926 -14.6618, 132.66949 -14.66222, 132.66968 -14.66259, 132.669829 -14.66294, 132.670009 -14.66339, 132.6702 -14.66405, 132.67033 -14.66467, 132.67041 -14.66532, 132.67044 -14.66592, 132.67043 -14.66646, 132.67042 -14.66694, 132.67034 -14.669, 132.67034 -14.66964, 132.67038 -14.67011, 132.67044 -14.6706, 132.67056 -14.67119, 132.670719 -14.67175, 132.67092 -14.67229, 132.67112 -14.67275, 132.671429 -14.67333, 132.67186 -14.67401, 132.672149 -14.67439, 132.67248 -14.67478, 132.67293 -14.67522, 132.67348 -14.6757, 132.67408 -14.67613, 132.6747 -14.6765, 132.674919 -14.67662, 132.67534 -14.67681, 132.67557 -14.67691, 132.67606 -14.67709, 132.67702 -14.67739, 132.68001 -14.67832, 132.68222 -14.679, 132.686479 -14.68033, 132.68852 -14.68096, 132.696329 -14.68338, 132.70248 -14.68527, 132.70427 -14.68583, 132.70576 -14.68627, 132.70751 -14.68682, 132.70972 -14.6875, 132.71 -14.68759, 132.710219 -14.68766, 132.71032 -14.68769, 132.71125 -14.68798, 132.71181 -14.68815, 132.71385 -14.68877, 132.71484 -14.68908, 132.71508 -14.68915, 132.71524 -14.6892, 132.71713 -14.68979, 132.71946 -14.69053, 132.72541 -14.69245, 132.728649 -14.69348, 132.73106 -14.69421, 132.734199 -14.69515, 132.73667 -14.69589, 132.738409 -14.69645, 132.7449 -14.69858, 132.74756 -14.69945, 132.74888 -14.69987, 132.750769 -14.70043, 132.75253 -14.70097, 132.754449 -14.70154, 132.75895 -14.70288, 132.76221 -14.70386, 132.76398 -14.70439, 132.76584 -14.70495, 132.76728 -14.70541, 132.77394 -14.70757, 132.77553 -14.70809, 132.777279 -14.70863, 132.77795 -14.70881, 132.7789 -14.70904, 132.78281 -14.70992, 132.78661 -14.71076, 132.79454 -14.71253, 132.798859 -14.7135, 132.80122 -14.71403, 132.80228 -14.71426, 132.80319 -14.71448, 132.80376 -14.71464, 132.804219 -14.71479, 132.80462 -14.71493, 132.80496 -14.71506, 132.80559 -14.71534, 132.80599 -14.71555, 132.80695 -14.71603, 132.8084 -14.71676, 132.81163 -14.71838, 132.813539 -14.71933, 132.814439 -14.71979, 132.816319 -14.72072, 132.81759 -14.72135, 132.81861 -14.72186, 132.81959 -14.72237, 132.8203 -14.72276, 132.820969 -14.72316, 132.8214 -14.72343, 132.821869 -14.72374, 132.82244 -14.72413, 132.82323 -14.7247, 132.82406 -14.72535, 132.82452 -14.72574, 132.825099 -14.72625, 132.8255 -14.72662, 132.82593 -14.72703, 132.82668 -14.7278, 132.82731 -14.72849, 132.82785 -14.72914, 132.82847 -14.72991, 132.8288 -14.73034, 132.82914 -14.73083, 132.82961 -14.73151, 132.83021 -14.73248, 132.83211 -14.73565, 132.833949 -14.73873, 132.83652 -14.74305, 132.83696 -14.74377, 132.8374 -14.7445, 132.83934 -14.74776, 132.839679 -14.74831, 132.840219 -14.74911, 132.84089 -14.75005, 132.84155 -14.75091, 132.84207 -14.75154, 132.84248 -14.75202, 132.84287 -14.75245, 132.84364 -14.75327, 132.84411 -14.75374, 132.84494 -14.75453, 132.84544 -14.75498, 132.84624 -14.75566, 132.84672 -14.75605, 132.84727 -14.75648, 132.84782 -14.75688, 132.84834 -14.75725, 132.848739 -14.75752, 132.84957 -14.75806, 132.850079 -14.75837, 132.850879 -14.75884, 132.851779 -14.75933, 132.85408 -14.76058, 132.85748 -14.76242, 132.86183 -14.76476, 132.863949 -14.76591, 132.86652 -14.76731, 132.87118 -14.76982, 132.87231 -14.77043, 132.87349 -14.77106, 132.87445 -14.7716, 132.87546 -14.77213, 132.87642 -14.77264, 132.87768 -14.77333, 132.87885 -14.77397, 132.88001 -14.77459, 132.88104 -14.77509, 132.882 -14.77548, 132.882839 -14.77578, 132.88371 -14.77604, 132.8846 -14.77627, 132.885259 -14.7764, 132.88605 -14.77653, 132.8869 -14.77663, 132.88764 -14.77672, 132.88958 -14.77693, 132.89392 -14.77742, 132.895389 -14.77758, 132.89755 -14.77782, 132.89844 -14.77794, 132.898869 -14.77801, 132.89927 -14.77809, 132.899939 -14.77824, 132.9007 -14.77844, 132.901199 -14.7786, 132.90168 -14.77877, 132.90253 -14.7791, 132.90312 -14.77937, 132.9039 -14.77976, 132.90444 -14.78006, 132.90504 -14.78043, 132.90571 -14.78088, 132.90625 -14.78128, 132.90674 -14.78168, 132.90732 -14.78219, 132.90786 -14.7827, 132.90803 -14.78288, 132.908459 -14.78335, 132.90892 -14.7839, 132.90938 -14.78449, 132.91014 -14.78547, 132.91102 -14.78662, 132.913559 -14.78993, 132.915709 -14.79275, 132.917499 -14.79509, 132.918299 -14.79614, 132.91935 -14.7975, 132.92041 -14.7989, 132.92238 -14.80147, 132.92463 -14.80442, 132.92522 -14.80518, 132.92685 -14.80733, 132.92883 -14.8099, 132.93009 -14.81155, 132.93121 -14.813, 132.93194 -14.81395, 132.93248 -14.81462, 132.93306 -14.81531, 132.93349 -14.81579, 132.93404 -14.81638, 132.93454 -14.81688, 132.935229 -14.81755, 132.9356 -14.81789, 132.93617 -14.8184, 132.9367 -14.81885, 132.93715 -14.81922, 132.93776 -14.81969, 132.93832 -14.82011, 132.93886 -14.82049, 132.93945 -14.8209, 132.94027 -14.82142, 132.940779 -14.82173, 132.94136 -14.82207, 132.94237 -14.82262, 132.94294 -14.82292, 132.943919 -14.82339, 132.94432 -14.82358, 132.944889 -14.82382, 132.94558 -14.8241, 132.94649 -14.82444, 132.947309 -14.82472, 132.94921 -14.82535, 132.95131 -14.82603, 132.952689 -14.82647, 132.95293 -14.82655, 132.95387 -14.82686, 132.95419 -14.82696, 132.95648 -14.82771, 132.95739 -14.82801, 132.95802 -14.82824, 132.95898 -14.82861, 132.95953 -14.82883, 132.96034 -14.82918, 132.96077 -14.82937, 132.961109 -14.82953, 132.96168 -14.82982, 132.962439 -14.83021, 132.96314 -14.83059, 132.96413 -14.83117, 132.96464 -14.83148, 132.965 -14.83172, 132.96515 -14.83182, 132.96566 -14.83216, 132.96588 -14.83231, 132.966039 -14.83242, 132.966659 -14.83286, 132.96718 -14.83325, 132.967919 -14.83384, 132.96858 -14.83438, 132.968809 -14.83458, 132.96924 -14.83496, 132.969699 -14.83539, 132.97034 -14.836, 132.970769 -14.83643, 132.97117 -14.83684, 132.97165 -14.83736, 132.97207 -14.83783, 132.972649 -14.8385, 132.973199 -14.83917, 132.97354 -14.83959, 132.97407 -14.84025, 132.97538 -14.84187, 132.977659 -14.8447, 132.97885 -14.84618, 132.98076 -14.84854, 132.98234 -14.85051, 132.98334 -14.85174, 132.98571 -14.85467, 132.98865 -14.85831, 132.98907 -14.85883, 132.989409 -14.85924, 132.9897 -14.85955, 132.98997 -14.85984, 132.99027 -14.86014, 132.99076 -14.86061, 132.99105 -14.86087, 132.991359 -14.86114, 132.99169 -14.86141, 132.99203 -14.86168, 132.992359 -14.86192, 132.99269 -14.86217, 132.99312 -14.86246, 132.993519 -14.86273, 132.99413 -14.86309, 132.99463 -14.86337, 132.99655 -14.86443, 132.99928 -14.86593, 133.001129 -14.86695, 133.00832 -14.87091, 133.01113 -14.87246, 133.0122 -14.87305, 133.01279 -14.87338, 133.0132 -14.87361, 133.01372 -14.87394, 133.0141 -14.8742, 133.01415 -14.87424, 133.01454 -14.87452, 133.01489 -14.87479, 133.0152 -14.87504, 133.01567 -14.87544, 133.016169 -14.8759, 133.01683 -14.8765, 133.01772 -14.87733, 133.020209 -14.87965, 133.02195 -14.88127, 133.02749 -14.88642, 133.03378 -14.89227, 133.038019 -14.89621, 133.04055 -14.89856, 133.04156 -14.89951, 133.04342 -14.90124, 133.04408 -14.90186, 133.0454 -14.90308, 133.04892 -14.90635, 133.05157 -14.90882, 133.054309 -14.91138, 133.054859 -14.91188, 133.056819 -14.9137, 133.05812 -14.91491, 133.05854 -14.91531, 133.058799 -14.91561, 133.06 -14.91666, 133.06071 -14.91732, 133.06129 -14.91786, 133.06269 -14.91916, 133.06409 -14.92047, 133.064349 -14.92071, 133.064799 -14.92113, 133.06541 -14.92168, 133.065509 -14.92179, 133.0658 -14.92205, 133.0661 -14.92234, 133.06624 -14.92247, 133.06672 -14.92291, 133.06689 -14.92307, 133.06708 -14.92324, 133.06726 -14.92342, 133.067559 -14.9237, 133.06768 -14.92381, 133.06794 -14.92405, 133.06812 -14.92422, 133.068279 -14.92437, 133.06851 -14.92458, 133.069009 -14.92505, 133.069099 -14.92513, 133.06951 -14.92552, 133.06974 -14.92575, 133.069799 -14.92582, 133.06996 -14.92599, 133.07018 -14.92626, 133.07029 -14.92642, 133.070519 -14.92673, 133.07067 -14.92695, 133.07075 -14.92708, 133.070879 -14.9273, 133.07102 -14.92756, 133.07112 -14.92776, 133.071329 -14.92821, 133.07149 -14.92864, 133.07163 -14.92909, 133.07167 -14.92922, 133.07173 -14.92945, 133.071769 -14.92963, 133.071859 -14.93016, 133.07194 -14.9309, 133.07202 -14.93209, 133.07216 -14.934, 133.07221 -14.93477, 133.072489 -14.93868, 133.072499 -14.93885, 133.07272 -14.94202, 133.07281 -14.94335, 133.07282 -14.9435, 133.07283 -14.94365, 133.07288 -14.94412, 133.07297 -14.94486, 133.0731 -14.94565, 133.073749 -14.94932, 133.075189 -14.95751, 133.075369 -14.95852, 133.0756 -14.95983, 133.07561 -14.95989, 133.07632 -14.96394, 133.07738 -14.96996, 133.078039 -14.97375, 133.07872 -14.97759, 133.07893 -14.97875, 133.07896 -14.97894, 133.079129 -14.97991, 133.07918 -14.98025, 133.079219 -14.98048, 133.07926 -14.98071, 133.07932 -14.98108, 133.079389 -14.9815, 133.07945 -14.98186, 133.079649 -14.98295, 133.0797 -14.98324, 133.07994 -14.98461, 133.08 -14.98492, 133.08021 -14.98614, 133.08061 -14.9884, 133.081449 -14.99318, 133.082439 -14.99881, 133.08382 -15.0067, 133.08466 -15.01149, 133.08523 -15.01473, 133.085389 -15.01569, 133.08551 -15.01642, 133.085659 -15.01756, 133.0857 -15.01796, 133.08586 -15.01955, 133.08591 -15.0203, 133.08597 -15.02132, 133.086 -15.02248, 133.086009 -15.02355, 133.08597 -15.02509, 133.085919 -15.02625, 133.08581 -15.02755, 133.0858 -15.02771, 133.0857 -15.02867, 133.085649 -15.02907, 133.08562 -15.0293, 133.08558 -15.02966, 133.08555 -15.02987, 133.085479 -15.03038, 133.08534 -15.03122, 133.08527 -15.03162, 133.08518 -15.03215, 133.08508 -15.03266, 133.08481 -15.03391, 133.08461 -15.03474, 133.08434 -15.03577, 133.08406 -15.03678, 133.08385 -15.03744, 133.08354 -15.03842, 133.083229 -15.03932, 133.08273 -15.04066, 133.082169 -15.04202, 133.081449 -15.04362, 133.08085 -15.04486, 133.08033 -15.04585, 133.07861 -15.04896, 133.07801 -15.05003, 133.07757 -15.05086, 133.07681 -15.05239, 133.0763 -15.05352, 133.07564 -15.05512, 133.07524 -15.05616, 133.07481 -15.05739, 133.074729 -15.05762, 133.07433 -15.0589, 133.07386 -15.06054, 133.07351 -15.06197, 133.07325 -15.06318, 133.07305 -15.06431, 133.072939 -15.06491, 133.07279 -15.06584, 133.072669 -15.06673, 133.07254 -15.06787, 133.07248 -15.06854, 133.072409 -15.06961, 133.07236 -15.07039, 133.072309 -15.07182, 133.072309 -15.07296, 133.07234 -15.07439, 133.07242 -15.07582, 133.07253 -15.07724, 133.07265 -15.07832, 133.07284 -15.07976, 133.072949 -15.08042, 133.073219 -15.08191, 133.073469 -15.08308, 133.07368 -15.084, 133.07397 -15.08509, 133.07421 -15.08596, 133.074469 -15.0868, 133.07531 -15.08947, 133.075629 -15.09061, 133.07584 -15.09147, 133.07611 -15.0927, 133.07622 -15.09329, 133.076439 -15.09471, 133.07656 -15.09569, 133.07665 -15.09649, 133.076699 -15.09724, 133.07674 -15.09801, 133.07677 -15.09879, 133.07678 -15.09998, 133.07674 -15.10115, 133.076609 -15.10389, 133.07657 -15.1047, 133.076529 -15.10552, 133.0764 -15.10814, 133.07621 -15.11184, 133.07604 -15.11532, 133.075989 -15.11723, 133.076 -15.11818, 133.07604 -15.11943, 133.07611 -15.12077, 133.076249 -15.12227, 133.07637 -15.12336, 133.0765 -15.12434, 133.07668 -15.12542, 133.07691 -15.12665, 133.07717 -15.12788, 133.07752 -15.12931, 133.077769 -15.13023, 133.07811 -15.13141, 133.078579 -15.13283, 133.079199 -15.13453, 133.0795 -15.13529, 133.07988 -15.13621, 133.080639 -15.13788, 133.08195 -15.14072, 133.08264 -15.14221, 133.08344 -15.14399, 133.08388 -15.14501, 133.08426 -15.14594, 133.08482 -15.14734, 133.08541 -15.14892, 133.08597 -15.1505, 133.08653 -15.15215, 133.08657 -15.15228, 133.08678 -15.15293, 133.086999 -15.15359, 133.08737 -15.1547, 133.0884 -15.15776, 133.09015 -15.16301, 133.09045 -15.1639, 133.092019 -15.16861, 133.09357 -15.17324, 133.09397 -15.17443, 133.09442 -15.17579, 133.0945 -15.17602, 133.09465 -15.17647, 133.094979 -15.17746, 133.09572 -15.17969, 133.09606 -15.1807, 133.09626 -15.18129, 133.09633 -15.1815, 133.09672 -15.18269, 133.09725 -15.18426, 133.09816 -15.18696, 133.09937 -15.19057, 133.09996 -15.19233, 133.100159 -15.19294, 133.10057 -15.19418, 133.101409 -15.19671, 133.10224 -15.19923, 133.103379 -15.20264, 133.10409 -15.20477, 133.1057 -15.20958, 133.106709 -15.21263, 133.10829 -15.21736, 133.10895 -15.21935, 133.11031 -15.2234, 133.11089 -15.22515, 133.11173 -15.22768, 133.11221 -15.2291, 133.11259 -15.23026, 133.11268 -15.23052, 133.112959 -15.23136, 133.113239 -15.23225, 133.11337 -15.23271, 133.113409 -15.23286, 133.11354 -15.23329, 133.11367 -15.23371, 133.11392 -15.2346, 133.11418 -15.23579, 133.114299 -15.23634, 133.114389 -15.23674, 133.114409 -15.23685, 133.114489 -15.23718, 133.11459 -15.23763, 133.114749 -15.23851, 133.11478 -15.23867, 133.11505 -15.24024, 133.11568 -15.24387, 133.1168 -15.25024, 133.117079 -15.25185, 133.117439 -15.25395, 133.117619 -15.25484, 133.11775 -15.25547, 133.11796 -15.2563, 133.1183 -15.25754, 133.11864 -15.25864, 133.11901 -15.2597, 133.11927 -15.26041, 133.11949 -15.26095, 133.11981 -15.2617, 133.120119 -15.26241, 133.12045 -15.2631, 133.120759 -15.26372, 133.12116 -15.26444, 133.12253 -15.26697, 133.1234 -15.26854, 133.12385 -15.26932, 133.1245 -15.27051, 133.12528 -15.2719, 133.12599 -15.27317, 133.12651 -15.27412, 133.127209 -15.27539, 133.1283 -15.27735, 133.12883 -15.27829, 133.12956 -15.27962, 133.13055 -15.28139, 133.1328 -15.28543, 133.13376 -15.28716, 133.13695 -15.2929, 133.13859 -15.29587, 133.139469 -15.29746, 133.14113 -15.30046, 133.14157 -15.30129, 133.14187 -15.30188, 133.14213 -15.30249, 133.142249 -15.3028, 133.1424 -15.30321, 133.142779 -15.30434, 133.14356 -15.3067, 133.14491 -15.31082, 133.145549 -15.31275, 133.14884 -15.32275, 133.14893 -15.32304, 133.14899 -15.32321, 133.14913 -15.32363, 133.150119 -15.32665, 133.150389 -15.32747, 133.15071 -15.32843, 133.15287 -15.33497, 133.15393 -15.3382, 133.15569 -15.3435, 133.15822 -15.35125, 133.1595 -15.35515, 133.160869 -15.3593, 133.162119 -15.36309, 133.16393 -15.36858, 133.165249 -15.37259, 133.16778 -15.3803, 133.16984 -15.38656, 133.1712 -15.3907, 133.17227 -15.39395, 133.17447 -15.40064, 133.17661 -15.40713, 133.17876 -15.41364, 133.17981 -15.41684, 133.18016 -15.41789, 133.18053 -15.41904, 133.1808 -15.41991, 133.180929 -15.4204, 133.18107 -15.42108, 133.181829 -15.42472, 133.18287 -15.42974, 133.18336 -15.4321, 133.18356 -15.43305, 133.183979 -15.43512, 133.18453 -15.43773, 133.18483 -15.43921, 133.185139 -15.44069, 133.185489 -15.44236, 133.18598 -15.44473, 133.1862 -15.44581, 133.18691 -15.44926, 133.18796 -15.45428, 133.188189 -15.45542, 133.18833 -15.45609, 133.18918 -15.4602, 133.18964 -15.46241, 133.190149 -15.46483, 133.19094 -15.46868, 133.19154 -15.47154, 133.19181 -15.47288, 133.19192 -15.47341, 133.192399 -15.47572, 133.193 -15.47859, 133.193289 -15.47996, 133.19372 -15.48208, 133.194269 -15.48469, 133.194719 -15.48691, 133.19542 -15.49027, 133.19546 -15.49046, 133.19656 -15.49578, 133.198129 -15.50331, 133.19914 -15.50814, 133.19963 -15.51051, 133.19993 -15.51193, 133.20029 -15.51365, 133.20058 -15.51508, 133.2016 -15.51996, 133.201699 -15.52047, 133.20204 -15.52212, 133.20235 -15.52361, 133.20265 -15.52503, 133.202949 -15.52651, 133.203309 -15.52823, 133.20419 -15.53244, 133.20454 -15.53414, 133.20524 -15.5375, 133.205729 -15.53986, 133.20602 -15.5412, 133.206359 -15.54292, 133.20731 -15.5475, 133.20759 -15.54883, 133.208249 -15.55203, 133.208419 -15.55281, 133.208509 -15.5532, 133.2092 -15.55656, 133.20971 -15.55903, 133.21006 -15.56055, 133.21032 -15.5615, 133.21055 -15.56224, 133.21073 -15.5628, 133.210919 -15.5633, 133.21112 -15.56382, 133.21134 -15.56435, 133.21162 -15.56498, 133.2119 -15.56558, 133.2123 -15.56641, 133.21232 -15.56645, 133.21242 -15.56665, 133.21267 -15.56715, 133.21305 -15.56791, 133.21354 -15.56888, 133.213959 -15.56974, 133.2147 -15.57121, 133.2153 -15.57239, 133.21533 -15.57245, 133.21536 -15.57251, 133.21547 -15.57273, 133.21553 -15.57285, 133.215669 -15.57314, 133.21605 -15.57388, 133.2164 -15.57459, 133.216559 -15.57491, 133.21659 -15.57497, 133.21676 -15.5753, 133.21698 -15.57574, 133.21725 -15.57628, 133.21812 -15.57803, 133.21894 -15.57966, 133.21897 -15.57972, 133.21942 -15.58061, 133.21949 -15.58075, 133.22048 -15.58273, 133.22097 -15.58372, 133.22102 -15.58383, 133.22135 -15.58449, 133.22189 -15.58558, 133.222829 -15.58746, 133.2243 -15.59042, 133.22575 -15.59335, 133.226589 -15.59506, 133.22781 -15.59753, 133.22912 -15.60018, 133.23051 -15.60299, 133.23078 -15.60351, 133.23109 -15.60404, 133.231339 -15.60443, 133.231429 -15.60456, 133.23157 -15.60476, 133.23185 -15.60514, 133.2319 -15.6052, 133.23218 -15.60556, 133.23253 -15.60595, 133.23299 -15.60643, 133.23401 -15.60746, 133.23508 -15.60853, 133.236629 -15.61009, 133.23817 -15.61163, 133.23977 -15.61324, 133.24064 -15.61412, 133.241109 -15.61459, 133.24121 -15.6147, 133.24139 -15.61488, 133.24176 -15.61525, 133.24376 -15.61729, 133.246479 -15.62005, 133.24753 -15.62113, 133.24874 -15.62237, 133.24935 -15.62298, 133.250229 -15.62389, 133.250689 -15.62435, 133.25081 -15.62448, 133.251389 -15.62507, 133.25226 -15.62597, 133.25278 -15.62649, 133.25383 -15.62757, 133.25571 -15.62952, 133.25789 -15.63177, 133.260079 -15.63404, 133.26171 -15.63572, 133.26305 -15.63711, 133.264029 -15.63812, 133.26419 -15.63829, 133.2657 -15.63986, 133.267599 -15.64185, 133.26992 -15.64428, 133.27087 -15.64527, 133.27186 -15.64628, 133.273 -15.64741, 133.27386 -15.64826, 133.27462 -15.64902, 133.275929 -15.65031, 133.27741 -15.65179, 133.27909 -15.65345, 133.280059 -15.65442, 133.28111 -15.65545, 133.28218 -15.65651, 133.28341 -15.65773, 133.28535 -15.65965, 133.286319 -15.66061, 133.28693 -15.66121, 133.28747 -15.66174, 133.28789 -15.66217, 133.28835 -15.66263, 133.28878 -15.66309, 133.2892 -15.66358, 133.28942 -15.66386, 133.28949 -15.66396, 133.28974 -15.66428, 133.29013 -15.66484, 133.29042 -15.6653, 133.29067 -15.66573, 133.29095 -15.66624, 133.29127 -15.66683, 133.29131 -15.6669, 133.29192 -15.66803, 133.292409 -15.66896, 133.29288 -15.66982, 133.29459 -15.67298, 133.295549 -15.67476, 133.29621 -15.67597, 133.29668 -15.67684, 133.29719 -15.6778, 133.297779 -15.6789, 133.298219 -15.6797, 133.298319 -15.67989, 133.298669 -15.68046, 133.299119 -15.68111, 133.29956 -15.68167, 133.299839 -15.68201, 133.30013 -15.68234, 133.30045 -15.68266, 133.30085 -15.68306, 133.30125 -15.68341, 133.301539 -15.68365, 133.30197 -15.68399, 133.30206 -15.68406, 133.30242 -15.68432, 133.30301 -15.6847, 133.30381 -15.68518, 133.30508 -15.6859, 133.305759 -15.6863, 133.307099 -15.68707, 133.30801 -15.68759, 133.30941 -15.68839, 133.31012 -15.6888, 133.31082 -15.68923, 133.31127 -15.68953, 133.31168 -15.68982, 133.31177 -15.68989, 133.31213 -15.69018, 133.31254 -15.69053, 133.31296 -15.69092, 133.313269 -15.69123, 133.313629 -15.69161, 133.313899 -15.69192, 133.31428 -15.69239, 133.314529 -15.69272, 133.31481 -15.69312, 133.31518 -15.69371, 133.31541 -15.6941, 133.31564 -15.69453, 133.31601 -15.69532, 133.31629 -15.69597, 133.31662 -15.69674, 133.31702 -15.6977, 133.31741 -15.69862, 133.31821 -15.70046, 133.31853 -15.70114, 133.31868 -15.70142, 133.318729 -15.70151, 133.31893 -15.70186, 133.319189 -15.70229, 133.31949 -15.70273, 133.31978 -15.70314, 133.32015 -15.70361, 133.320439 -15.70396, 133.32087 -15.70442, 133.32127 -15.70483, 133.32156 -15.70509, 133.32202 -15.70549, 133.32236 -15.70576, 133.32261 -15.70595, 133.32284 -15.70611, 133.323289 -15.70642, 133.32395 -15.70683, 133.324369 -15.70706, 133.32498 -15.70736, 133.325369 -15.70754, 133.32605 -15.70785, 133.32691 -15.70824, 133.32799 -15.70873, 133.33075 -15.70999, 133.33214 -15.71061, 133.33328 -15.71113, 133.33389 -15.71143, 133.33451 -15.71176, 133.335109 -15.71212, 133.335469 -15.71236, 133.33613 -15.71282, 133.33703 -15.71349, 133.33751 -15.71383, 133.338069 -15.71425, 133.33971 -15.71546, 133.341389 -15.7167, 133.34288 -15.71778, 133.34421 -15.71878, 133.34579 -15.71995, 133.34727 -15.72104, 133.348019 -15.7216, 133.34957 -15.72273, 133.350249 -15.72324, 133.35153 -15.72418, 133.35234 -15.72478, 133.35322 -15.72543, 133.35354 -15.72569, 133.353919 -15.72601, 133.35425 -15.72634, 133.35475 -15.72687, 133.3551 -15.72729, 133.35619 -15.72861, 133.35713 -15.72975, 133.35809 -15.73092, 133.35934 -15.73243, 133.359839 -15.73304, 133.36131 -15.73482, 133.363319 -15.73726, 133.36451 -15.7387, 133.36561 -15.74003, 133.36713 -15.74187, 133.36827 -15.74325, 133.36931 -15.7445, 133.369869 -15.74519, 133.37035 -15.74576, 133.371 -15.74656, 133.37188 -15.74763, 133.372359 -15.74821, 133.37275 -15.74868, 133.37367 -15.74978, 133.37431 -15.75056, 133.37535 -15.75181, 133.37591 -15.75249, 133.37616 -15.75281, 133.37644 -15.75317, 133.37663 -15.75345, 133.37673 -15.75362, 133.37677 -15.7537, 133.376929 -15.75398, 133.37713 -15.7544, 133.377299 -15.75483, 133.37746 -15.75532, 133.37755 -15.75566, 133.37763 -15.75605, 133.37771 -15.75661, 133.37772 -15.75674, 133.377739 -15.75695, 133.377749 -15.75724, 133.377739 -15.75752, 133.37771 -15.75798, 133.37762 -15.75902, 133.3774 -15.76118, 133.37719 -15.76334, 133.37705 -15.76475, 133.37691 -15.76619, 133.3768 -15.7674, 133.37656 -15.76978, 133.37651 -15.7704, 133.376489 -15.77073, 133.37647 -15.77133, 133.37647 -15.77143, 133.37647 -15.77164, 133.376479 -15.77211, 133.37651 -15.77268, 133.37651 -15.77275, 133.37653 -15.77296, 133.3766 -15.77364, 133.37672 -15.77483, 133.37689 -15.77633, 133.377029 -15.77772, 133.37724 -15.77962, 133.37755 -15.78247, 133.3778 -15.7847, 133.377929 -15.7859, 133.37813 -15.7877, 133.37835 -15.78969, 133.37849 -15.79099, 133.37859 -15.79189, 133.37877 -15.79352, 133.37894 -15.79506, 133.379079 -15.79631, 133.3792 -15.79743, 133.37937 -15.79897, 133.3796 -15.80105, 133.379809 -15.80295, 133.38003 -15.80496, 133.3801 -15.8055, 133.38017 -15.80595, 133.3803 -15.80654, 133.38046 -15.80713, 133.380599 -15.80757, 133.38077 -15.80801, 133.38134 -15.80938, 133.38183 -15.81056, 133.38226 -15.81157, 133.382839 -15.81299, 133.38325 -15.81397, 133.383839 -15.81539, 133.38456 -15.81713, 133.385179 -15.81863, 133.38568 -15.81982, 133.38665 -15.82217, 133.38749 -15.82419, 133.38788 -15.82512, 133.388399 -15.82638, 133.38872 -15.82715, 133.389 -15.82782, 133.38926 -15.82842, 133.3895 -15.82892, 133.38976 -15.82941, 133.39008 -15.82995, 133.39056 -15.83071, 133.39137 -15.83198, 133.392059 -15.83305, 133.39254 -15.8338, 133.39292 -15.83439, 133.393579 -15.83544, 133.39364 -15.83553, 133.39501 -15.83767, 133.39611 -15.8394, 133.39694 -15.8407, 133.39854 -15.84321, 133.39907 -15.84404, 133.399579 -15.84484, 133.400119 -15.84571, 133.400309 -15.84601, 133.40053 -15.84639, 133.400659 -15.84662, 133.40081 -15.84693, 133.40089 -15.84709, 133.400929 -15.84718, 133.401029 -15.84741, 133.401199 -15.84781, 133.401299 -15.84807, 133.401379 -15.8483, 133.4015 -15.84866, 133.40178 -15.84961, 133.40204 -15.8505, 133.40211 -15.85074, 133.40261 -15.8525, 133.40313 -15.85432, 133.40357 -15.85584, 133.40378 -15.85654, 133.40409 -15.8575, 133.40427 -15.85805, 133.40456 -15.85891, 133.40458 -15.85897, 133.40484 -15.85977, 133.405 -15.86025, 133.40513 -15.86063, 133.405149 -15.86069, 133.405419 -15.86152, 133.40555 -15.86193, 133.405859 -15.86285, 133.40619 -15.86386, 133.40732 -15.86728, 133.40781 -15.86878, 133.40805 -15.86951, 133.40814 -15.86978, 133.40857 -15.8711, 133.40879 -15.87182, 133.40888 -15.87215, 133.40898 -15.87259, 133.409079 -15.87308, 133.40924 -15.87398, 133.409449 -15.87517, 133.40972 -15.87678, 133.40995 -15.87814, 133.41008 -15.87897, 133.41028 -15.88015, 133.41044 -15.88105, 133.41058 -15.88164, 133.41075 -15.88223, 133.41118 -15.88356, 133.41138 -15.88421, 133.411579 -15.88484, 133.411769 -15.88539, 133.41189 -15.88569, 133.41214 -15.88621, 133.41228 -15.88646, 133.41237 -15.88661, 133.41256 -15.88691, 133.41281 -15.88727, 133.41305 -15.88758, 133.41341 -15.888, 133.41371 -15.8883, 133.41405 -15.88862, 133.414279 -15.88881, 133.41452 -15.889, 133.41492 -15.88929, 133.41577 -15.88988, 133.41658 -15.89044, 133.41699 -15.89076, 133.41721 -15.89094, 133.41747 -15.89116, 133.417679 -15.89137, 133.41792 -15.89162, 133.41816 -15.8919, 133.418399 -15.8922, 133.41868 -15.89258, 133.41896 -15.89302, 133.419189 -15.89345, 133.4194 -15.89388, 133.41952 -15.89416, 133.41966 -15.89454, 133.41979 -15.89496, 133.41988 -15.89532, 133.41996 -15.89575, 133.42002 -15.89615, 133.42006 -15.89658, 133.420089 -15.89701, 133.42014 -15.89795, 133.42025 -15.89998, 133.42029 -15.90066, 133.42035 -15.90126, 133.4204 -15.90156, 133.42047 -15.90191, 133.42049 -15.90199, 133.42065 -15.90254, 133.4208 -15.90299, 133.42094 -15.90333, 133.42104 -15.90356, 133.42118 -15.90385, 133.42139 -15.90424, 133.42163 -15.90461, 133.42192 -15.90504, 133.42238 -15.90562, 133.422859 -15.90623, 133.4231 -15.90655, 133.423219 -15.90674, 133.42337 -15.90699, 133.423579 -15.90736, 133.423679 -15.90756, 133.423759 -15.90773, 133.42396 -15.90822, 133.424 -15.90832, 133.42414 -15.90873, 133.42446 -15.90973, 133.425199 -15.91205, 133.42581 -15.914, 133.42616 -15.91508, 133.42632 -15.91558, 133.42685 -15.91724, 133.42714 -15.91817, 133.42739 -15.91887, 133.42766 -15.91958, 133.42782 -15.91997, 133.427979 -15.92036, 133.42802 -15.92045, 133.42864 -15.92189, 133.4293 -15.92342, 133.430489 -15.92616, 133.430659 -15.92655, 133.431189 -15.92779, 133.431649 -15.92883, 133.43232 -15.93039, 133.43275 -15.9314, 133.43287 -15.93169, 133.43297 -15.93192, 133.43306 -15.93212, 133.43331 -15.93273, 133.43345 -15.9331, 133.43375 -15.93397, 133.43386 -15.93433, 133.43413 -15.93522, 133.4343 -15.93587, 133.43444 -15.93645, 133.43454 -15.93692, 133.43457 -15.93705, 133.43462 -15.93734, 133.43475 -15.93811, 133.43476 -15.9382, 133.43483 -15.93865, 133.43493 -15.9394, 133.43497 -15.93981, 133.435049 -15.94089, 133.43509 -15.94179, 133.4351 -15.94232, 133.43506 -15.94375, 133.43498 -15.94599, 133.43493 -15.94734, 133.43484 -15.94983, 133.43454 -15.95789, 133.434509 -15.95867, 133.43439 -15.96174, 133.43404 -15.97109, 133.43384 -15.97655, 133.433799 -15.97772, 133.43376 -15.97865, 133.43372 -15.97983, 133.43368 -15.98072, 133.43363 -15.98223, 133.43359 -15.98325, 133.433519 -15.9852, 133.43348 -15.98606, 133.43346 -15.98633, 133.433439 -15.98655, 133.43342 -15.98668, 133.4334 -15.98677, 133.43337 -15.98691, 133.43331 -15.9872, 133.43321 -15.98755, 133.433159 -15.98767, 133.43305 -15.98794, 133.43288 -15.98831, 133.43275 -15.98855, 133.43261 -15.98876, 133.43242 -15.98902, 133.43223 -15.98928, 133.43203 -15.98951, 133.431819 -15.98971, 133.4316 -15.98992, 133.43136 -15.99013, 133.43112 -15.9903, 133.43088 -15.99046, 133.43062 -15.99061, 133.430489 -15.99068, 133.43029 -15.99078, 133.429769 -15.99099, 133.428959 -15.99127, 133.42853 -15.99141, 133.42793 -15.99162, 133.42733 -15.99182, 133.42685 -15.992, 133.4264 -15.99219, 133.42616 -15.99231, 133.42602 -15.99238, 133.425649 -15.99261, 133.425379 -15.9928, 133.42512 -15.99301, 133.42471 -15.99341, 133.42433 -15.99383, 133.42408 -15.9942, 133.42387 -15.99455, 133.4237 -15.99489, 133.42357 -15.9952, 133.42336 -15.99578, 133.42317 -15.9963, 133.423049 -15.9966, 133.42291 -15.99692, 133.422859 -15.99702, 133.422789 -15.99715, 133.42265 -15.9974, 133.42232 -15.99791, 133.420999 -15.9998, 133.42056 -16.00044, 133.4202 -16.00095, 133.42006 -16.001169, 133.41987 -16.00149, 133.41981 -16.00161, 133.41975 -16.001719, 133.41963 -16.002009, 133.41958 -16.00214, 133.41953 -16.00227, 133.41943 -16.00259, 133.41935 -16.00288, 133.41922 -16.00343, 133.41859 -16.00621, 133.41775 -16.00985, 133.41752 -16.01086, 133.41734 -16.01161, 133.417229 -16.01201, 133.41701 -16.012709, 133.416869 -16.01313, 133.41662 -16.013819, 133.41619 -16.01491, 133.415799 -16.01588, 133.41506 -16.01775, 133.41411 -16.02017, 133.41369 -16.02122, 133.41331 -16.022189, 133.41292 -16.02318, 133.41247 -16.0243, 133.41215 -16.02514, 133.41205 -16.02543, 133.41199 -16.02562, 133.41196 -16.025739, 133.41189 -16.026039, 133.411849 -16.026319, 133.41181 -16.02664, 133.4118 -16.02693, 133.4118 -16.027239, 133.41181 -16.02751, 133.411849 -16.027819, 133.4119 -16.02811, 133.41206 -16.0287, 133.41225 -16.02921, 133.412479 -16.029779, 133.41398 -16.03338, 133.41519 -16.03632, 133.4156 -16.03732, 133.415979 -16.038229, 133.41619 -16.03882, 133.416329 -16.03938, 133.41645 -16.03988, 133.41665 -16.04082, 133.417039 -16.04258, 133.417309 -16.04381, 133.41797 -16.04682, 133.41814 -16.047529, 133.41829 -16.04803, 133.418479 -16.0485, 133.41872 -16.04901, 133.419009 -16.04951, 133.419469 -16.05023, 133.42137 -16.053159, 133.42201 -16.05413, 133.42353 -16.05651, 133.42451 -16.058029, 133.42544 -16.05947, 133.425549 -16.05964, 133.42566 -16.0598, 133.42585 -16.060099, 133.42651 -16.06111, 133.42661 -16.06127, 133.42676 -16.061499, 133.42738 -16.06247, 133.42765 -16.06288, 133.42777 -16.06306, 133.42823 -16.06377, 133.42827 -16.06383, 133.42857 -16.06429, 133.43002 -16.06653, 133.43046 -16.06721, 133.43089 -16.067889, 133.43107 -16.06821, 133.431199 -16.06847, 133.4313 -16.0687, 133.43139 -16.06895, 133.431559 -16.06952, 133.43162 -16.06982, 133.43171 -16.07039, 133.431999 -16.07256, 133.43248 -16.07616, 133.43276 -16.078209, 133.4334 -16.08296, 133.433799 -16.08594, 133.43417 -16.08866, 133.4343 -16.08968, 133.434329 -16.0899, 133.43441 -16.09052, 133.43447 -16.09101, 133.43449 -16.091339, 133.4345 -16.091629, 133.43449 -16.09193, 133.43449 -16.09198, 133.43447 -16.09225, 133.43445 -16.09239, 133.4344 -16.0927, 133.43431 -16.09321, 133.43421 -16.093599, 133.434059 -16.094159, 133.43304 -16.09784, 133.43163 -16.10303, 133.43017 -16.10836, 133.42863 -16.113959, 133.42848 -16.1145, 133.42837 -16.11497, 133.428339 -16.11514, 133.42826 -16.11562, 133.42821 -16.116119, 133.4282 -16.11628, 133.4282 -16.11684, 133.42821 -16.117439, 133.42822 -16.11935, 133.42822 -16.12068, 133.42821 -16.122409, 133.4282 -16.126449, 133.42818 -16.13177, 133.428159 -16.13728, 133.42813 -16.14253, 133.4281 -16.14777, 133.428069 -16.154879, 133.42805 -16.15921, 133.42805 -16.16048, 133.428059 -16.1616, 133.4281 -16.16272, 133.42819 -16.165659, 133.42822 -16.16664, 133.4283 -16.16911, 133.42835 -16.17088, 133.42838 -16.17172, 133.42846 -16.174109, 133.428509 -16.17566, 133.428509 -16.17643, 133.4285 -16.17678, 133.42846 -16.17727, 133.42839 -16.17781, 133.42829 -16.17864, 133.42804 -16.180599, 133.427889 -16.18176, 133.42763 -16.18386, 133.42747 -16.18508, 133.42722 -16.18712, 133.426899 -16.189689, 133.42644 -16.19334, 133.426179 -16.19538, 133.42593 -16.19731, 133.4257 -16.199179, 133.42561 -16.1999, 133.425549 -16.20051, 133.42552 -16.200869, 133.42549 -16.20136, 133.42539 -16.203579, 133.42526 -16.20635, 133.42516 -16.208739, 133.42509 -16.210239, 133.42495 -16.213069, 133.42489 -16.214469, 133.42488 -16.21463, 133.42487 -16.214839, 133.424849 -16.21519, 133.424839 -16.21547, 133.424829 -16.21563, 133.4248 -16.216249, 133.42472 -16.21781, 133.42462 -16.21993, 133.42456 -16.2212, 133.424489 -16.22252, 133.42446 -16.22296, 133.424389 -16.22345, 133.42429 -16.22389, 133.42414 -16.2244, 133.424029 -16.224699, 133.42391 -16.224979, 133.4238 -16.22521, 133.42363 -16.22551, 133.42345 -16.225819, 133.4233 -16.22606, 133.42317 -16.22624, 133.4231 -16.22633, 133.423 -16.22645, 133.42273 -16.226769, 133.422149 -16.22739, 133.421529 -16.22806, 133.42043 -16.22924, 133.41837 -16.231459, 133.417039 -16.23288, 133.41618 -16.233809, 133.41532 -16.234739, 133.4144 -16.23573, 133.41393 -16.23622, 133.41318 -16.236989, 133.41261 -16.23754, 133.410779 -16.23928, 133.40856 -16.241399, 133.40699 -16.242899, 133.40537 -16.24445, 133.40315 -16.24658, 133.40179 -16.24789, 133.40036 -16.24926, 133.39876 -16.250789, 133.39794 -16.25158, 133.39729 -16.252199, 133.39621 -16.253229, 133.395639 -16.253789, 133.395289 -16.254159, 133.395029 -16.25448, 133.39488 -16.25468, 133.39477 -16.25484, 133.39455 -16.25517, 133.394389 -16.25546, 133.39414 -16.25599, 133.39406 -16.25619, 133.394029 -16.25627, 133.39393 -16.25655, 133.39384 -16.25684, 133.393759 -16.257169, 133.39366 -16.25767, 133.39349 -16.25862, 133.3933 -16.25974, 133.393059 -16.261109, 133.39282 -16.2625, 133.39264 -16.26347, 133.39235 -16.265149, 133.39209 -16.26666, 133.39194 -16.26756, 133.39176 -16.26855, 133.39165 -16.269189, 133.39156 -16.269749, 133.39139 -16.2707, 133.39129 -16.27121, 133.3912 -16.271799, 133.39106 -16.27261, 133.39101 -16.27289, 133.39092 -16.27336, 133.390809 -16.27403, 133.39077 -16.2743, 133.39069 -16.27476, 133.39057 -16.275459, 133.39029 -16.27702, 133.39008 -16.278199, 133.389299 -16.282599, 133.38816 -16.28903, 133.38702 -16.29538, 133.38644 -16.2986, 133.38608 -16.30057, 133.38575 -16.30235, 133.38566 -16.302859, 133.38555 -16.30345, 133.38547 -16.30388, 133.385359 -16.30452, 133.38523 -16.30518, 133.3852 -16.30536, 133.38513 -16.30576, 133.38501 -16.30646, 133.38496 -16.30678, 133.384899 -16.307089, 133.38487 -16.307279, 133.38486 -16.30733, 133.38483 -16.30751, 133.38469 -16.308209, 133.384629 -16.30855, 133.38456 -16.30895, 133.384449 -16.30965, 133.38441 -16.30986, 133.384369 -16.31008, 133.38431 -16.31041, 133.384179 -16.31118, 133.38413 -16.31145, 133.38404 -16.31196, 133.38399 -16.312259, 133.383739 -16.31369, 133.38343 -16.31546, 133.383379 -16.315729, 133.38317 -16.316939, 133.38291 -16.31839, 133.38236 -16.32153, 133.38199 -16.323609, 133.38122 -16.32799, 133.38083 -16.3302, 133.380689 -16.33101, 133.38058 -16.33175, 133.38049 -16.33263, 133.38046 -16.3335, 133.38046 -16.33438, 133.38046 -16.33635, 133.38048 -16.34269, 133.38049 -16.3468, 133.380519 -16.35287, 133.38053 -16.35526, 133.38054 -16.357679, 133.38053 -16.35952, 133.38053 -16.36053, 133.380519 -16.36242, 133.38049 -16.36634, 133.38047 -16.369489, 133.38045 -16.37186, 133.38044 -16.37348, 133.380419 -16.375779, 133.38041 -16.37762, 133.38039 -16.379639, 133.38036 -16.38436, 133.380339 -16.385349, 133.3803 -16.38605, 133.380239 -16.386759, 133.38017 -16.3875, 133.3801 -16.38803, 133.37992 -16.38928, 133.37959 -16.39151, 133.37888 -16.39631, 133.3784 -16.39958, 133.378089 -16.4017, 133.377929 -16.402909, 133.37786 -16.4036, 133.37779 -16.40436, 133.377739 -16.40505, 133.3777 -16.40577, 133.37767 -16.4066, 133.377659 -16.40744, 133.377659 -16.40832, 133.37769 -16.40906, 133.377739 -16.40992, 133.37779 -16.41066, 133.37785 -16.41138, 133.37804 -16.413609, 133.37824 -16.41594, 133.378459 -16.418579, 133.3786 -16.42025, 133.37874 -16.4219, 133.37897 -16.42461, 133.37916 -16.42682, 133.37928 -16.42826, 133.37952 -16.43094, 133.37958 -16.431529, 133.37973 -16.43261, 133.37988 -16.43354, 133.38002 -16.434339, 133.380249 -16.43546, 133.38044 -16.43627, 133.380609 -16.43693, 133.38083 -16.437729, 133.381049 -16.438469, 133.38128 -16.4392, 133.38174 -16.44055, 133.382049 -16.44135, 133.38244 -16.442319, 133.382759 -16.44305, 133.38351 -16.44472, 133.3843 -16.44648, 133.38584 -16.44988, 133.38699 -16.45243, 133.38739 -16.45333, 133.38752 -16.45363, 133.38764 -16.453959, 133.387769 -16.45436, 133.38779 -16.45446, 133.387849 -16.454709, 133.38792 -16.4551, 133.38798 -16.45558, 133.38805 -16.456299, 133.38817 -16.4573, 133.38825 -16.45802, 133.38827 -16.45825, 133.38829 -16.45843, 133.388389 -16.45944, 133.38859 -16.46129, 133.38861 -16.46144, 133.38874 -16.46263, 133.388749 -16.46271, 133.38886 -16.463809, 133.38895 -16.46462, 133.38901 -16.4653, 133.38906 -16.46614, 133.38908 -16.46716, 133.3891 -16.46899, 133.38915 -16.47256, 133.38918 -16.47474, 133.38919 -16.475349, 133.38917 -16.47596, 133.38915 -16.47634, 133.389109 -16.4768, 133.38905 -16.477229, 133.38897 -16.47774, 133.388839 -16.47837, 133.38872 -16.47885, 133.388569 -16.47935, 133.38841 -16.4798, 133.38837 -16.4799, 133.38823 -16.48027, 133.38793 -16.480989, 133.3871 -16.48292, 133.38604 -16.48537, 133.38477 -16.48829, 133.3842 -16.4896, 133.38261 -16.493269, 133.3796 -16.50019, 133.377659 -16.50466, 133.37695 -16.50629, 133.37554 -16.509509, 133.37342 -16.51436, 133.37131 -16.51916, 133.370049 -16.52203, 133.36931 -16.5237, 133.36705 -16.52881, 133.36632 -16.53048, 133.36465 -16.53426, 133.36223 -16.53975, 133.36131 -16.54184, 133.35982 -16.54521, 133.35873 -16.54767, 133.356699 -16.55226, 133.35561 -16.55473, 133.35522 -16.555599, 133.35475 -16.55668, 133.35453 -16.55724, 133.35439 -16.55762, 133.354189 -16.558219, 133.35397 -16.558969, 133.35381 -16.5596, 133.35373 -16.55998, 133.35363 -16.560469, 133.35355 -16.561, 133.35346 -16.561699, 133.35341 -16.56231, 133.353379 -16.562909, 133.35337 -16.563569, 133.3534 -16.56445, 133.35344 -16.56505, 133.35353 -16.565809, 133.35362 -16.56642, 133.35382 -16.56749, 133.354019 -16.56856, 133.354289 -16.56992, 133.35469 -16.572, 133.35505 -16.573889, 133.3556 -16.57673, 133.35654 -16.581589, 133.35668 -16.58228, 133.3573 -16.58548, 133.35785 -16.58832, 133.35835 -16.5909, 133.35899 -16.594159, 133.35953 -16.59696, 133.35991 -16.5989, 133.36027 -16.60078, 133.36071 -16.60301, 133.36092 -16.60408, 133.36107 -16.60481, 133.361259 -16.605509, 133.36156 -16.6064, 133.36221 -16.60808, 133.36268 -16.6093, 133.363869 -16.612369, 133.36496 -16.61516, 133.365739 -16.61719, 133.36679 -16.61991, 133.36713 -16.62079, 133.367169 -16.62088, 133.36748 -16.62169, 133.36757 -16.62191, 133.36793 -16.62282, 133.36815 -16.62332, 133.3684 -16.62389, 133.368609 -16.62432, 133.3688 -16.6247, 133.36926 -16.62557, 133.36966 -16.62627, 133.369959 -16.62677, 133.37003 -16.62688, 133.37027 -16.62727, 133.3709 -16.6282, 133.37162 -16.62918, 133.3725 -16.630299, 133.37435 -16.6326, 133.37602 -16.63469, 133.37727 -16.63624, 133.378269 -16.63749, 133.37911 -16.63853, 133.38019 -16.63989, 133.38077 -16.6406, 133.38209 -16.64224, 133.38467 -16.64546, 133.385179 -16.64609, 133.38574 -16.646799, 133.38674 -16.648029, 133.38828 -16.64995, 133.390719 -16.65298, 133.3931 -16.65594, 133.39866 -16.66283, 133.40105 -16.6658, 133.40301 -16.66822, 133.40536 -16.67113, 133.40638 -16.67239, 133.409079 -16.67574, 133.409169 -16.67585, 133.41035 -16.677309, 133.41045 -16.67743, 133.410689 -16.67773, 133.41074 -16.6778, 133.4111 -16.67828, 133.411139 -16.678339, 133.41135 -16.67867, 133.41137 -16.6787, 133.41155 -16.67901, 133.411759 -16.67942, 133.41197 -16.67989, 133.412119 -16.680299, 133.41217 -16.680489, 133.41228 -16.68085, 133.412299 -16.68092, 133.412389 -16.680869, 133.41246 -16.68056, 133.412389 -16.680129, 133.4123627564 -16.6800588341)" +-12.4655499,130.8424719,-14.4697108,132.2728948,1,Darwin (Start),"LINESTRING (130.84248 -12.46555, 130.84248 -12.46555, 130.842549 -12.46553, 130.84262 -12.4655, 130.84269 -12.46546, 130.84279 -12.46536, 130.842919 -12.46523, 130.843169 -12.46499, 130.84343 -12.46474, 130.84393 -12.46423, 130.844159 -12.464, 130.84424 -12.46391, 130.8444 -12.46375, 130.84469 -12.46347, 130.84474 -12.46342, 130.84491 -12.46326, 130.8452 -12.46297, 130.84538 -12.46278, 130.84543 -12.46268, 130.845499 -12.4626, 130.84556 -12.46252, 130.84564 -12.46243, 130.84572 -12.46235, 130.84582 -12.46225, 130.84589 -12.46216, 130.84606 -12.46199, 130.84618 -12.46183, 130.846319 -12.4616, 130.84643 -12.46141, 130.8466 -12.4611, 130.84671 -12.46087, 130.846759 -12.46075, 130.8468 -12.46063, 130.84682 -12.46056, 130.84687 -12.46037, 130.84691 -12.46013, 130.846929 -12.45991, 130.846939 -12.45948, 130.84692 -12.45917, 130.84688 -12.45885, 130.8468 -12.45847, 130.8467 -12.45813, 130.84654 -12.45774, 130.846409 -12.45748, 130.84638 -12.45743, 130.8462 -12.45717, 130.8461 -12.45704, 130.84582 -12.45678, 130.84558 -12.4566, 130.84538 -12.45645, 130.84519 -12.45631, 130.8449 -12.45611, 130.844799 -12.45603, 130.844969 -12.45584, 130.84525 -12.45549, 130.84546 -12.45521, 130.84566 -12.45491, 130.845859 -12.45459, 130.846039 -12.45428, 130.84625 -12.45394, 130.84639 -12.45373, 130.84648 -12.45361, 130.8466 -12.45346, 130.84687 -12.45315, 130.84697 -12.45305, 130.84733 -12.45263, 130.84746 -12.45242, 130.84759 -12.45222, 130.84767 -12.45208, 130.847829 -12.45177, 130.84795 -12.4515, 130.848109 -12.45107, 130.84817 -12.45085, 130.84824 -12.45062, 130.848279 -12.45049, 130.848379 -12.45015, 130.84851 -12.44968, 130.84858 -12.4494, 130.84884 -12.44842, 130.84894 -12.448, 130.848999 -12.44772, 130.84902 -12.44758, 130.84905 -12.44737, 130.849089 -12.44699, 130.84912 -12.4468, 130.84914 -12.44658, 130.84915 -12.44635, 130.84916 -12.44613, 130.849169 -12.44592, 130.849169 -12.44571, 130.84916 -12.44542, 130.84914 -12.44498, 130.84912 -12.44468, 130.84903 -12.44346, 130.84901 -12.44316, 130.848999 -12.44301, 130.848989 -12.44283, 130.84898 -12.44258, 130.84898 -12.44238, 130.848989 -12.44216, 130.84901 -12.44191, 130.84902 -12.44178, 130.84903 -12.44168, 130.84904 -12.44159, 130.84906 -12.44145, 130.849089 -12.44127, 130.84914 -12.44103, 130.849179 -12.44084, 130.84922 -12.44069, 130.84925 -12.44057, 130.84931 -12.44034, 130.84937 -12.44013, 130.84941 -12.43999, 130.849449 -12.43986, 130.84949 -12.43973, 130.849529 -12.4396, 130.84958 -12.43945, 130.84965 -12.43927, 130.84969 -12.43917, 130.84974 -12.43906, 130.84983 -12.43888, 130.84992 -12.4387, 130.850069 -12.43844, 130.85013 -12.43834, 130.85022 -12.4382, 130.85038 -12.43797, 130.85066 -12.43759, 130.85091 -12.4373, 130.85131 -12.43687, 130.85163 -12.43658, 130.851869 -12.43637, 130.85217 -12.43614, 130.85248 -12.43592, 130.852849 -12.43569, 130.85322 -12.43547, 130.85364 -12.43527, 130.85421 -12.43503, 130.8565 -12.43413, 130.857329 -12.43384, 130.85781 -12.43367, 130.85809 -12.43356, 130.858489 -12.43342, 130.858929 -12.43325, 130.85925 -12.43313, 130.859569 -12.43301, 130.86006 -12.43286, 130.86017 -12.43283, 130.860379 -12.43277, 130.86067 -12.4327, 130.86098 -12.43264, 130.86131 -12.43258, 130.86175 -12.43252, 130.86219 -12.43248, 130.86263 -12.43245, 130.86349 -12.43245, 130.864749 -12.43245, 130.866289 -12.43245, 130.86712 -12.43245, 130.87161 -12.43243, 130.872989 -12.43243, 130.87322 -12.43243, 130.87357 -12.43244, 130.87481 -12.43243, 130.87527 -12.43243, 130.87644 -12.43243, 130.877109 -12.43243, 130.87851 -12.43242, 130.87883 -12.43242, 130.87951 -12.43242, 130.87982 -12.43242, 130.88049 -12.43242, 130.881049 -12.43241, 130.881859 -12.43241, 130.88369 -12.4324, 130.88414 -12.4324, 130.88506 -12.43239, 130.88646 -12.43235, 130.88941 -12.43235, 130.89002 -12.43235, 130.890549 -12.43236, 130.890999 -12.43239, 130.89122 -12.43241, 130.8914 -12.43243, 130.891629 -12.43246, 130.89178 -12.43248, 130.89217 -12.43256, 130.89257 -12.43264, 130.892789 -12.43269, 130.89302 -12.43275, 130.89353 -12.43291, 130.89388 -12.43303, 130.89429 -12.43318, 130.894759 -12.43339, 130.89505 -12.43353, 130.89525 -12.43363, 130.89559 -12.43382, 130.8959 -12.434, 130.896009 -12.43408, 130.89617 -12.4342, 130.896449 -12.43442, 130.89667 -12.43459, 130.89696 -12.43481, 130.89703 -12.43487, 130.897269 -12.43506, 130.89756 -12.43528, 130.89801 -12.4356, 130.89863 -12.43605, 130.899229 -12.4365, 130.899499 -12.43669, 130.90005 -12.43709, 130.900389 -12.43733, 130.90077 -12.43759, 130.90105 -12.43777, 130.901649 -12.43811, 130.90213 -12.43835, 130.90261 -12.43856, 130.90307 -12.43874, 130.90333 -12.43882, 130.90366 -12.43893, 130.90392 -12.43901, 130.90427 -12.4391, 130.90454 -12.43916, 130.90484 -12.43922, 130.90546 -12.43934, 130.90589 -12.43941, 130.906749 -12.43955, 130.90749 -12.43967, 130.90824 -12.43979, 130.90861 -12.43985, 130.90878 -12.43988, 130.90904 -12.43993, 130.90924 -12.43997, 130.90941 -12.44001, 130.909619 -12.44007, 130.909889 -12.44015, 130.91009 -12.44021, 130.910339 -12.44029, 130.910599 -12.44038, 130.91083 -12.44047, 130.91107 -12.44056, 130.91128 -12.44065, 130.91148 -12.44074, 130.91163 -12.44081, 130.91184 -12.44091, 130.91208 -12.44103, 130.91224 -12.44112, 130.91245 -12.44124, 130.91256 -12.4413, 130.912659 -12.44136, 130.91283 -12.44147, 130.91288 -12.4415, 130.91305 -12.44161, 130.91333 -12.4418, 130.91362 -12.44202, 130.91407 -12.44236, 130.91426 -12.44251, 130.914449 -12.44266, 130.91459 -12.44277, 130.91512 -12.44318, 130.91529 -12.44331, 130.915519 -12.44349, 130.91564 -12.44358, 130.91575 -12.44367, 130.91584 -12.44374, 130.916 -12.44387, 130.91612 -12.44397, 130.91623 -12.44407, 130.91649 -12.44432, 130.91657 -12.4444, 130.91662 -12.44445, 130.91668 -12.44452, 130.91675 -12.4446, 130.91681 -12.44467, 130.91689 -12.44476, 130.91699 -12.44488, 130.9171 -12.44502, 130.91719 -12.44514, 130.917229 -12.4452, 130.9173 -12.4453, 130.91739 -12.44543, 130.91757 -12.44572, 130.91774 -12.446, 130.91787 -12.44621, 130.91793 -12.44631, 130.91805 -12.44651, 130.918209 -12.44677, 130.91836 -12.44702, 130.918669 -12.44752, 130.91883 -12.44778, 130.9189 -12.44789, 130.91895 -12.44796, 130.91906 -12.44811, 130.91916 -12.44824, 130.91932 -12.44842, 130.91945 -12.44856, 130.919549 -12.44866, 130.9196 -12.44871, 130.91968 -12.44878, 130.91978 -12.44886, 130.91988 -12.44894, 130.92004 -12.44906, 130.92014 -12.44913, 130.9203 -12.44923, 130.92048 -12.44934, 130.92067 -12.44944, 130.92075 -12.44948, 130.92084 -12.44952, 130.920909 -12.44955, 130.92101 -12.44959, 130.921169 -12.44965, 130.92129 -12.44969, 130.92145 -12.44974, 130.92159 -12.44978, 130.921709 -12.44981, 130.92184 -12.44984, 130.92194 -12.44986, 130.92199 -12.44987, 130.92212 -12.44989, 130.9222 -12.4499, 130.92232 -12.44991, 130.9225 -12.44992, 130.92292 -12.44993, 130.92342 -12.44993, 130.9236 -12.44993, 130.92388 -12.44993, 130.92569 -12.44994, 130.926279 -12.44995, 130.926459 -12.44996, 130.9266 -12.44997, 130.926719 -12.44998, 130.92686 -12.45, 130.926989 -12.45002, 130.92721 -12.45006, 130.92737 -12.45009, 130.927519 -12.45012, 130.9276 -12.45014, 130.92772 -12.45017, 130.92783 -12.4502, 130.927969 -12.45024, 130.928509 -12.45041, 130.928789 -12.4505, 130.9343 -12.45225, 130.936759 -12.45303, 130.937019 -12.45311, 130.93733 -12.45321, 130.93757 -12.45329, 130.93781 -12.45337, 130.93824 -12.45352, 130.93858 -12.45364, 130.93893 -12.45377, 130.93928 -12.4539, 130.9396 -12.45402, 130.94003 -12.45419, 130.94064 -12.45444, 130.941039 -12.45461, 130.941499 -12.45481, 130.94372 -12.4558, 130.94512 -12.45643, 130.9455 -12.45661, 130.94596 -12.4568, 130.94608 -12.45686, 130.946409 -12.457, 130.9469 -12.45722, 130.94797 -12.4577, 130.94873 -12.45804, 130.94954 -12.4584, 130.94998 -12.4586, 130.950369 -12.45878, 130.95059 -12.45889, 130.95078 -12.45899, 130.9511 -12.45916, 130.9514 -12.45933, 130.95174 -12.45953, 130.952 -12.45969, 130.95231 -12.45989, 130.95253 -12.46004, 130.953 -12.46036, 130.95337 -12.46061, 130.95399 -12.46103, 130.9544 -12.46131, 130.95467 -12.46149, 130.95497 -12.46168, 130.95525 -12.46185, 130.955549 -12.46202, 130.95589 -12.46221, 130.956279 -12.46241, 130.95666 -12.46259, 130.95702 -12.46275, 130.95745 -12.46293, 130.95776 -12.46305, 130.95804 -12.46315, 130.958329 -12.46325, 130.95866 -12.46336, 130.95892 -12.46344, 130.95924 -12.46353, 130.959579 -12.46362, 130.95993 -12.4637, 130.96044 -12.46381, 130.960829 -12.46388, 130.96123 -12.46394, 130.96162 -12.46399, 130.96189 -12.46402, 130.96221 -12.46405, 130.962629 -12.46408, 130.96319 -12.4641, 130.96391 -12.4641, 130.96437 -12.46408, 130.96471 -12.46406, 130.96525 -12.46402, 130.965759 -12.46397, 130.966289 -12.46392, 130.96677 -12.46387, 130.967279 -12.46382, 130.96787 -12.46377, 130.96821 -12.46374, 130.96867 -12.46375, 130.96928 -12.46376, 130.96959 -12.46377, 130.969959 -12.46379, 130.97025 -12.46381, 130.970679 -12.46385, 130.971049 -12.46389, 130.97142 -12.46393, 130.97165 -12.46396, 130.9719 -12.464, 130.972389 -12.46407, 130.9729 -12.46415, 130.97318 -12.46419, 130.97351 -12.46424, 130.9738 -12.46429, 130.97405 -12.46434, 130.97428 -12.46439, 130.97447 -12.46444, 130.97464 -12.46449, 130.97477 -12.46453, 130.97496 -12.46459, 130.97524 -12.46468, 130.975619 -12.46482, 130.97586 -12.46492, 130.97616 -12.46505, 130.97643 -12.46518, 130.97673 -12.46534, 130.97697 -12.46547, 130.97724 -12.46563, 130.97756 -12.46583, 130.97815 -12.46621, 130.978379 -12.46636, 130.978569 -12.46648, 130.97898 -12.46675, 130.97927 -12.46694, 130.97958 -12.46714, 130.97983 -12.4673, 130.98012 -12.46748, 130.980349 -12.46762, 130.98049 -12.46771, 130.9807 -12.46785, 130.98095 -12.46801, 130.981339 -12.46826, 130.981529 -12.46838, 130.981609 -12.46843, 130.981699 -12.46849, 130.981969 -12.46864, 130.98247 -12.46891, 130.98266 -12.469, 130.98285 -12.46909, 130.98327 -12.46926, 130.98346 -12.46934, 130.98368 -12.46942, 130.98407 -12.46953, 130.98445 -12.46963, 130.984919 -12.46974, 130.985449 -12.46985, 130.985999 -12.46997, 130.98646 -12.47007, 130.98668 -12.47011, 130.987349 -12.47025, 130.98825 -12.47045, 130.9884 -12.47048, 130.98849 -12.4705, 130.98882 -12.47056, 130.988859 -12.47057, 130.98925 -12.47066, 130.98951 -12.47072, 130.989839 -12.47079, 130.990029 -12.47083, 130.990209 -12.47086, 130.99059 -12.47094, 130.9909 -12.47101, 130.991009 -12.47103, 130.991279 -12.47109, 130.99158 -12.47116, 130.99194 -12.47125, 130.99232 -12.47135, 130.99255 -12.47142, 130.99265 -12.47145, 130.99294 -12.47155, 130.99301 -12.47157, 130.99339 -12.4717, 130.99381 -12.47186, 130.994229 -12.47204, 130.99456 -12.47219, 130.99492 -12.47236, 130.99511 -12.47245, 130.99547 -12.47263, 130.99561 -12.4727, 130.99577 -12.47279, 130.99591 -12.47287, 130.996029 -12.47294, 130.996109 -12.47299, 130.99624 -12.47307, 130.99633 -12.47313, 130.996479 -12.47323, 130.99663 -12.47333, 130.99673 -12.4734, 130.99708 -12.47366, 130.997269 -12.4738, 130.99748 -12.47396, 130.99768 -12.47412, 130.99784 -12.47425, 130.997899 -12.4743, 130.99801 -12.47439, 130.9981 -12.47447, 130.99821 -12.47457, 130.99831 -12.47466, 130.998449 -12.47479, 130.9986 -12.47493, 130.99866 -12.47499, 130.998809 -12.47514, 130.99901 -12.47535, 130.99923 -12.47558, 130.99938 -12.47575, 130.9994 -12.47577, 130.99982 -12.47622, 131.000059 -12.47648, 131.00028 -12.47671, 131.00092 -12.47739, 131.00119 -12.47767, 131.001669 -12.47819, 131.00272 -12.4793, 131.003199 -12.47981, 131.00353 -12.48017, 131.003899 -12.48056, 131.00407 -12.48074, 131.00415 -12.48082, 131.00441 -12.48108, 131.004709 -12.48138, 131.004899 -12.48155, 131.00518 -12.4818, 131.005429 -12.48201, 131.00576 -12.48227, 131.006049 -12.4825, 131.00664 -12.48296, 131.007039 -12.48327, 131.00736 -12.48353, 131.007669 -12.48379, 131.00788 -12.48398, 131.00813 -12.48424, 131.00835 -12.48446, 131.008479 -12.48461, 131.0088 -12.48497, 131.00911 -12.48536, 131.00935 -12.48569, 131.00956 -12.486, 131.00976 -12.48633, 131.00997 -12.48669, 131.010169 -12.48707, 131.01037 -12.4875, 131.01049 -12.48776, 131.01058 -12.48799, 131.0107 -12.48832, 131.01084 -12.48873, 131.010899 -12.48896, 131.01096 -12.48916, 131.01103 -12.48945, 131.011059 -12.48961, 131.01112 -12.48987, 131.011149 -12.49002, 131.01117 -12.4901, 131.01119 -12.49023, 131.01121 -12.49034, 131.0113 -12.49075, 131.01141 -12.49131, 131.01149 -12.49172, 131.01154 -12.49197, 131.011609 -12.49232, 131.01168 -12.49265, 131.01175 -12.49292, 131.01185 -12.4933, 131.01198 -12.49371, 131.012059 -12.49394, 131.01207 -12.49396, 131.01218 -12.49424, 131.012319 -12.49458, 131.01244 -12.49485, 131.01249 -12.49495, 131.01258 -12.49515, 131.01271 -12.4954, 131.01288 -12.4957, 131.01291 -12.49575, 131.01314 -12.49615, 131.01328 -12.49641, 131.013479 -12.49675, 131.013659 -12.49706, 131.013849 -12.49739, 131.0141 -12.49783, 131.01432 -12.49821, 131.01441 -12.49837, 131.01458 -12.49865, 131.01472 -12.4989, 131.01487 -12.49915, 131.015189 -12.49971, 131.0154 -12.50008, 131.0156 -12.50043, 131.01562 -12.50047, 131.01579 -12.50076, 131.01592 -12.50097, 131.01625 -12.50155, 131.01674 -12.50241, 131.016979 -12.50282, 131.01711 -12.50305, 131.01729 -12.50337, 131.01786 -12.50435, 131.01794 -12.50449, 131.018229 -12.50499, 131.01843 -12.50535, 131.018589 -12.50562, 131.01881 -12.50601, 131.01923 -12.50674, 131.01947 -12.50715, 131.01951 -12.50721, 131.019579 -12.50734, 131.01988 -12.50786, 131.02034 -12.50866, 131.02061 -12.50913, 131.020919 -12.50966, 131.02117 -12.51008, 131.02138 -12.51039, 131.02161 -12.51072, 131.021899 -12.51108, 131.02219 -12.51143, 131.022519 -12.51178, 131.02283 -12.51212, 131.023159 -12.51243, 131.0234 -12.51264, 131.02362 -12.51282, 131.02392 -12.51304, 131.02427 -12.51329, 131.02464 -12.51353, 131.024949 -12.51372, 131.02532 -12.51393, 131.02563 -12.51409, 131.02598 -12.51426, 131.026289 -12.51439, 131.02666 -12.51454, 131.026999 -12.51466, 131.02716 -12.51471, 131.02735 -12.51477, 131.027819 -12.5149, 131.02815 -12.515, 131.02863 -12.51514, 131.02928 -12.51532, 131.02945 -12.51537, 131.029609 -12.51541, 131.030149 -12.51556, 131.030679 -12.51572, 131.03099 -12.51582, 131.03116 -12.51588, 131.03132 -12.51594, 131.031569 -12.51605, 131.031839 -12.51617, 131.03209 -12.5163, 131.032369 -12.51646, 131.03262 -12.5166, 131.03281 -12.51672, 131.03324 -12.51702, 131.03406 -12.51759, 131.03483 -12.51812, 131.03541 -12.51853, 131.03574 -12.51876, 131.03613 -12.51904, 131.03652 -12.5193, 131.03665 -12.5194, 131.03696 -12.51962, 131.03728 -12.51984, 131.03781 -12.52022, 131.03805 -12.52038, 131.038299 -12.52056, 131.03839 -12.52062, 131.03852 -12.52071, 131.03881 -12.52091, 131.03921 -12.52119, 131.03971 -12.52155, 131.03978 -12.5216, 131.04014 -12.52185, 131.04051 -12.52212, 131.04096 -12.52243, 131.04108 -12.52251, 131.04122 -12.52261, 131.04136 -12.52271, 131.04176 -12.52299, 131.042 -12.52316, 131.04226 -12.52334, 131.04238 -12.52343, 131.04253 -12.52354, 131.04272 -12.52367, 131.04307 -12.52391, 131.04345 -12.52418, 131.043759 -12.5244, 131.04414 -12.52464, 131.044289 -12.52475, 131.044369 -12.52481, 131.04453 -12.52494, 131.04462 -12.525, 131.0448 -12.52513, 131.045099 -12.52535, 131.04539 -12.52556, 131.04542 -12.52558, 131.0457 -12.52578, 131.04601 -12.52602, 131.04636 -12.5263, 131.04668 -12.52656, 131.04703 -12.52686, 131.047519 -12.52731, 131.04776 -12.52753, 131.04799 -12.52776, 131.048309 -12.52811, 131.04851 -12.52833, 131.04866 -12.52849, 131.04888 -12.52873, 131.048949 -12.52882, 131.04911 -12.529, 131.04917 -12.52907, 131.04947 -12.52942, 131.04979 -12.52982, 131.05018 -12.53029, 131.0504 -12.53056, 131.05097 -12.53125, 131.05111 -12.53141, 131.05143 -12.5318, 131.05149 -12.53188, 131.051629 -12.53206, 131.05205 -12.53257, 131.05357 -12.53442, 131.054219 -12.53521, 131.054579 -12.53565, 131.05482 -12.53594, 131.05518 -12.53637, 131.05591 -12.53724, 131.05609 -12.53744, 131.05685 -12.53833, 131.05769 -12.53926, 131.05828 -12.5399, 131.05837 -12.53999, 131.05869 -12.54035, 131.058879 -12.54057, 131.05939 -12.54121, 131.05972 -12.54166, 131.06012 -12.54223, 131.06083 -12.54322, 131.06124 -12.54379, 131.06177 -12.54455, 131.06196 -12.54481, 131.06234 -12.54534, 131.06401 -12.54768, 131.066219 -12.5508, 131.066939 -12.55181, 131.06726 -12.55226, 131.06779 -12.55301, 131.06842 -12.5539, 131.06868 -12.55427, 131.06894 -12.55464, 131.06913 -12.55491, 131.06932 -12.55518, 131.06951 -12.55542, 131.069709 -12.55574, 131.06988 -12.55601, 131.07005 -12.55626, 131.070349 -12.55668, 131.07101 -12.5576, 131.07122 -12.55793, 131.071339 -12.55811, 131.07161 -12.55854, 131.07173 -12.55874, 131.07198 -12.55919, 131.072309 -12.55985, 131.07236 -12.55996, 131.07257 -12.56044, 131.07278 -12.56098, 131.072949 -12.56146, 131.07305 -12.56182, 131.07309 -12.56195, 131.073119 -12.56206, 131.07317 -12.56224, 131.073219 -12.56244, 131.07327 -12.56266, 131.073289 -12.56273, 131.073379 -12.56315, 131.07346 -12.56353, 131.073489 -12.56367, 131.07351 -12.56379, 131.07354 -12.56416, 131.0736 -12.56484, 131.07363 -12.56528, 131.07363 -12.56553, 131.07363 -12.56568, 131.07364 -12.56598, 131.07364 -12.5662, 131.07364 -12.56656, 131.07364 -12.56741, 131.07364 -12.57023, 131.07364 -12.57119, 131.07363 -12.57168, 131.07363 -12.572, 131.07363 -12.57277, 131.07363 -12.57295, 131.07363 -12.5739, 131.07363 -12.57953, 131.07363 -12.58031, 131.07362 -12.58114, 131.07362 -12.5816, 131.07362 -12.58176, 131.07363 -12.58282, 131.07363 -12.58303, 131.07363 -12.58409, 131.07363 -12.58472, 131.07362 -12.58619, 131.07362 -12.58637, 131.07362 -12.58714, 131.07362 -12.58733, 131.07362 -12.58782, 131.07362 -12.58924, 131.07362 -12.59055, 131.07362 -12.59241, 131.07362 -12.59318, 131.07361 -12.59458, 131.07361 -12.59471, 131.07361 -12.59479, 131.07361 -12.59564, 131.07361 -12.59583, 131.07361 -12.5965, 131.07361 -12.60239, 131.0736 -12.60568, 131.0736 -12.60601, 131.0736 -12.60737, 131.0736 -12.61005, 131.0736 -12.61045, 131.0736 -12.61113, 131.0736 -12.61176, 131.07359 -12.61285, 131.07359 -12.61314, 131.07359 -12.61333, 131.07359 -12.6134, 131.07359 -12.61351, 131.0736 -12.61395, 131.07361 -12.6144, 131.0736 -12.61545, 131.07358 -12.61612, 131.073559 -12.61656, 131.07352 -12.61706, 131.07345 -12.61768, 131.073289 -12.61869, 131.07324 -12.61897, 131.073209 -12.61918, 131.07293 -12.62072, 131.072759 -12.6217, 131.0727 -12.62211, 131.072669 -12.62229, 131.07263 -12.6226, 131.072579 -12.62307, 131.07255 -12.62344, 131.07255 -12.62346, 131.07253 -12.62379, 131.07252 -12.62421, 131.072499 -12.62476, 131.072499 -12.62529, 131.07255 -12.62602, 131.07261 -12.62673, 131.07264 -12.62695, 131.072769 -12.62785, 131.072949 -12.62894, 131.07299 -12.62917, 131.07323 -12.63061, 131.07334 -12.63127, 131.07341 -12.6317, 131.07352 -12.63238, 131.07369 -12.63337, 131.073739 -12.6337, 131.07377 -12.63388, 131.073839 -12.63433, 131.073929 -12.63488, 131.074099 -12.6359, 131.07442 -12.63785, 131.074649 -12.63927, 131.07476 -12.63998, 131.0748 -12.64022, 131.07497 -12.64121, 131.07499 -12.64131, 131.07505 -12.64161, 131.075099 -12.64186, 131.07512 -12.64194, 131.07529 -12.64275, 131.07534 -12.643, 131.07558 -12.64413, 131.07569 -12.6447, 131.07577 -12.64507, 131.07595 -12.64595, 131.076069 -12.64649, 131.07628 -12.64758, 131.07669 -12.65001, 131.07709 -12.65245, 131.07736 -12.65409, 131.07739 -12.65427, 131.07746 -12.65466, 131.0777 -12.65611, 131.07773 -12.6563, 131.07774 -12.65638, 131.07781 -12.65678, 131.0779 -12.65735, 131.077959 -12.65767, 131.078039 -12.65818, 131.07818 -12.65905, 131.07846 -12.66075, 131.07874 -12.66239, 131.07896 -12.66375, 131.079039 -12.66433, 131.079119 -12.66495, 131.079209 -12.6657, 131.07924 -12.66595, 131.079309 -12.66648, 131.07932 -12.66655, 131.079569 -12.66859, 131.079749 -12.66997, 131.07985 -12.67056, 131.07998 -12.67136, 131.080009 -12.67154, 131.08008 -12.67194, 131.080109 -12.67211, 131.08015 -12.67239, 131.08027 -12.67312, 131.08032 -12.67339, 131.08036 -12.67369, 131.08043 -12.67406, 131.080549 -12.67487, 131.08076 -12.67602, 131.08086 -12.6766, 131.080909 -12.67689, 131.081259 -12.67905, 131.08138 -12.67976, 131.08143 -12.68008, 131.08143 -12.68024, 131.08146 -12.68039, 131.081529 -12.68078, 131.08155 -12.68091, 131.08165 -12.68149, 131.08179 -12.68232, 131.08184 -12.68263, 131.08186 -12.68275, 131.08194 -12.68311, 131.08203 -12.68347, 131.08222 -12.68417, 131.083149 -12.68751, 131.08385 -12.69006, 131.084219 -12.69143, 131.08436 -12.69199, 131.08445 -12.6924, 131.08456 -12.69297, 131.08463 -12.69349, 131.084669 -12.69374, 131.08481 -12.6949, 131.08507 -12.69697, 131.085289 -12.69873, 131.08534 -12.6991, 131.08549 -12.70036, 131.08561 -12.7013, 131.085649 -12.70161, 131.08568 -12.70186, 131.08578 -12.70266, 131.085829 -12.70307, 131.08587 -12.70343, 131.08599 -12.70438, 131.08621 -12.70618, 131.08626 -12.70653, 131.08631 -12.70688, 131.08641 -12.70785, 131.08644 -12.70809, 131.08648 -12.70847, 131.08659 -12.70936, 131.08662 -12.70959, 131.08675 -12.71058, 131.086819 -12.71114, 131.0869 -12.71175, 131.087009 -12.71262, 131.08746 -12.71623, 131.08796 -12.72028, 131.08854 -12.72491, 131.08878 -12.7268, 131.08886 -12.72748, 131.08902 -12.72877, 131.08911 -12.72946, 131.08918 -12.72998, 131.08927 -12.7307, 131.0894 -12.73179, 131.08943 -12.73203, 131.08958 -12.73316, 131.08961 -12.73338, 131.08967 -12.73384, 131.08973 -12.73421, 131.08981 -12.73462, 131.08991 -12.73514, 131.08993 -12.73521, 131.090129 -12.73612, 131.09029 -12.73674, 131.09048 -12.7374, 131.090669 -12.73801, 131.090849 -12.73853, 131.091039 -12.73907, 131.09124 -12.73959, 131.09143 -12.74007, 131.09163 -12.74052, 131.09169 -12.74066, 131.09185 -12.741, 131.09233 -12.74198, 131.09257 -12.74245, 131.092739 -12.74278, 131.09287 -12.74303, 131.09341 -12.74408, 131.09359 -12.74441, 131.09409 -12.74538, 131.09432 -12.74583, 131.095059 -12.74727, 131.09608 -12.74921, 131.097 -12.75097, 131.097119 -12.75121, 131.097469 -12.75187, 131.09753 -12.75199, 131.09767 -12.75225, 131.098099 -12.75308, 131.0983 -12.75345, 131.09885 -12.75452, 131.09905 -12.7549, 131.09922 -12.75522, 131.09949 -12.75574, 131.09959 -12.75593, 131.10014 -12.75698, 131.10111 -12.75885, 131.10234 -12.7612, 131.10238 -12.76128, 131.10256 -12.76162, 131.103029 -12.76252, 131.103469 -12.76336, 131.10364 -12.76369, 131.10398 -12.76433, 131.10417 -12.7647, 131.10441 -12.76514, 131.105269 -12.76676, 131.10569 -12.76758, 131.10609 -12.76838, 131.106349 -12.76887, 131.106779 -12.76968, 131.10717 -12.77038, 131.10744 -12.77084, 131.10763 -12.77116, 131.10797 -12.77169, 131.10827 -12.77214, 131.108589 -12.77262, 131.10898 -12.77316, 131.10937 -12.77368, 131.10982 -12.77423, 131.11032 -12.77482, 131.110729 -12.77528, 131.11128 -12.77585, 131.11187 -12.77645, 131.11236 -12.77691, 131.11285 -12.77735, 131.11361 -12.778, 131.1146 -12.77879, 131.116269 -12.78012, 131.116539 -12.78034, 131.117089 -12.78077, 131.1172 -12.78086, 131.11734 -12.78097, 131.1176 -12.78118, 131.11778 -12.78133, 131.118329 -12.78176, 131.11862 -12.78199, 131.119589 -12.78277, 131.12006 -12.78315, 131.120479 -12.78351, 131.12081 -12.78384, 131.12108 -12.78415, 131.12137 -12.78449, 131.12164 -12.78485, 131.12171 -12.78496, 131.12188 -12.7852, 131.12208 -12.78553, 131.1223 -12.78593, 131.12249 -12.78633, 131.1227 -12.78682, 131.12286 -12.78726, 131.12298 -12.78765, 131.12311 -12.7882, 131.12319 -12.78869, 131.12325 -12.78913, 131.12329 -12.78963, 131.12329 -12.79012, 131.123259 -12.79092, 131.1232 -12.79187, 131.12312 -12.79315, 131.12302 -12.79464, 131.12301 -12.79489, 131.12297 -12.79541, 131.12296 -12.79567, 131.12293 -12.79608, 131.12286 -12.79733, 131.122809 -12.79799, 131.122719 -12.79966, 131.12271 -12.79978, 131.12267 -12.8003, 131.12265 -12.80062, 131.12253 -12.80272, 131.122459 -12.80364, 131.1224 -12.80462, 131.122369 -12.80513, 131.12235 -12.80551, 131.12234 -12.80572, 131.12233 -12.80608, 131.12233 -12.80636, 131.12235 -12.80672, 131.12241 -12.80722, 131.1225 -12.80769, 131.12258 -12.80798, 131.12271 -12.80839, 131.12286 -12.80879, 131.12297 -12.80903, 131.12301 -12.80912, 131.12314 -12.80938, 131.1234 -12.80982, 131.12364 -12.81021, 131.12449 -12.8116, 131.12511 -12.81259, 131.12585 -12.81381, 131.12664 -12.81509, 131.12804 -12.81737, 131.128989 -12.8189, 131.129169 -12.8192, 131.129269 -12.81936, 131.129969 -12.8205, 131.13014 -12.82077, 131.13058 -12.82148, 131.13109 -12.8223, 131.13147 -12.82294, 131.1317 -12.82336, 131.13179 -12.82354, 131.1319 -12.82378, 131.132039 -12.82412, 131.13216 -12.82447, 131.132219 -12.82469, 131.13233 -12.82509, 131.13244 -12.82558, 131.132479 -12.8258, 131.13253 -12.82617, 131.13256 -12.82653, 131.132579 -12.82714, 131.132579 -12.8273, 131.132579 -12.8281, 131.132569 -12.82923, 131.13256 -12.83074, 131.132569 -12.83133, 131.1326 -12.83179, 131.132669 -12.83233, 131.13277 -12.83282, 131.13295 -12.83346, 131.13319 -12.83415, 131.13342 -12.83478, 131.13395 -12.83622, 131.13447 -12.83768, 131.13459 -12.83802, 131.13478 -12.83853, 131.13493 -12.83893, 131.135089 -12.83935, 131.13521 -12.83969, 131.13531 -12.83993, 131.13552 -12.8405, 131.13585 -12.84144, 131.136239 -12.8425, 131.13654 -12.84335, 131.1369 -12.84434, 131.13743 -12.84577, 131.13762 -12.84629, 131.137689 -12.84651, 131.13788 -12.84704, 131.13819 -12.84789, 131.138939 -12.84997, 131.13971 -12.85211, 131.13993 -12.85269, 131.140549 -12.85441, 131.1411 -12.85593, 131.14142 -12.85686, 131.141809 -12.85793, 131.14209 -12.85871, 131.14226 -12.85923, 131.14237 -12.85961, 131.14248 -12.86013, 131.14255 -12.8605, 131.14258 -12.86072, 131.142599 -12.86091, 131.14263 -12.86136, 131.14264 -12.86179, 131.14263 -12.86211, 131.14262 -12.86242, 131.14258 -12.86282, 131.142519 -12.86328, 131.1424 -12.86389, 131.142239 -12.86466, 131.141789 -12.86676, 131.141439 -12.86834, 131.14123 -12.86932, 131.14115 -12.86972, 131.14107 -12.87006, 131.14092 -12.8708, 131.14083 -12.87147, 131.14079 -12.87178, 131.14075 -12.87227, 131.1407 -12.87294, 131.14068 -12.87355, 131.14069 -12.87399, 131.14071 -12.87475, 131.140729 -12.875, 131.14077 -12.87549, 131.14083 -12.87602, 131.14085 -12.87621, 131.14092 -12.87685, 131.14097 -12.87725, 131.14105 -12.87794, 131.141079 -12.8782, 131.14114 -12.8787, 131.14128 -12.87991, 131.141699 -12.88348, 131.141979 -12.88584, 131.14208 -12.88675, 131.14214 -12.88725, 131.14218 -12.88777, 131.14219 -12.88813, 131.14219 -12.88828, 131.14218 -12.8887, 131.142159 -12.88902, 131.14212 -12.88935, 131.14205 -12.88981, 131.14193 -12.89036, 131.14182 -12.8908, 131.1413 -12.89275, 131.14069 -12.89508, 131.139749 -12.89867, 131.13913 -12.90101, 131.138939 -12.90172, 131.138749 -12.90244, 131.13859 -12.90305, 131.13851 -12.90347, 131.13845 -12.9038, 131.13841 -12.90419, 131.138399 -12.90451, 131.138389 -12.90462, 131.13838 -12.90481, 131.13837 -12.90509, 131.138389 -12.90546, 131.13843 -12.90585, 131.138489 -12.90638, 131.138569 -12.90682, 131.13868 -12.90725, 131.13878 -12.90761, 131.13897 -12.90825, 131.139029 -12.90843, 131.13913 -12.90876, 131.139299 -12.90935, 131.13945 -12.90992, 131.13955 -12.91034, 131.13963 -12.91081, 131.13967 -12.91117, 131.1397 -12.91162, 131.13971 -12.91209, 131.1397 -12.91247, 131.13967 -12.91288, 131.13962 -12.91336, 131.13954 -12.9138, 131.13944 -12.91424, 131.13931 -12.91472, 131.13913 -12.91523, 131.13895 -12.91567, 131.13868 -12.91622, 131.13835 -12.91683, 131.13825 -12.917, 131.13761 -12.91817, 131.1356 -12.92188, 131.1335 -12.92574, 131.13244 -12.92768, 131.131589 -12.92924, 131.13147 -12.92945, 131.13101 -12.93032, 131.13082 -12.93071, 131.13072 -12.93092, 131.13059 -12.93121, 131.13044 -12.93155, 131.13023 -12.93214, 131.129969 -12.93296, 131.12974 -12.93371, 131.12958 -12.93419, 131.12948 -12.93448, 131.12933 -12.93486, 131.12921 -12.93515, 131.12898 -12.93566, 131.1287 -12.93622, 131.12847 -12.93665, 131.12824 -12.93704, 131.12781 -12.93771, 131.12722 -12.9386, 131.12602 -12.94043, 131.12529 -12.94153, 131.12475 -12.94234, 131.1245 -12.94275, 131.12446 -12.94281, 131.12422 -12.94323, 131.124 -12.94364, 131.12373 -12.94418, 131.12359 -12.94448, 131.12352 -12.94462, 131.12339 -12.94492, 131.12324 -12.94528, 131.123179 -12.94543, 131.123079 -12.94569, 131.122899 -12.9462, 131.12277 -12.9466, 131.1227 -12.94683, 131.122629 -12.94704, 131.1225 -12.94754, 131.12239 -12.948, 131.122279 -12.9485, 131.122009 -12.94983, 131.12196 -12.95008, 131.12179 -12.95087, 131.12142 -12.95273, 131.121379 -12.95291, 131.12089 -12.95535, 131.12035 -12.95804, 131.120219 -12.95866, 131.11988 -12.96041, 131.119769 -12.96097, 131.119319 -12.96318, 131.11925 -12.96351, 131.119149 -12.96389, 131.119 -12.96431, 131.11885 -12.9647, 131.11872 -12.96499, 131.11856 -12.96532, 131.118419 -12.96557, 131.11827 -12.96585, 131.11806 -12.9662, 131.11793 -12.9664, 131.117809 -12.96659, 131.117619 -12.96689, 131.1173 -12.96745, 131.11729 -12.96747, 131.117079 -12.9679, 131.11689 -12.96838, 131.11677 -12.96875, 131.11666 -12.96914, 131.11656 -12.9695, 131.116549 -12.96953, 131.1165 -12.96982, 131.11644 -12.97018, 131.116369 -12.97072, 131.11634 -12.97111, 131.11634 -12.97154, 131.11635 -12.97196, 131.116359 -12.97212, 131.116379 -12.97242, 131.11641 -12.97281, 131.11644 -12.97317, 131.11648 -12.97374, 131.116539 -12.97451, 131.1166 -12.97549, 131.11662 -12.97582, 131.11665 -12.97629, 131.11667 -12.97667, 131.11668 -12.97704, 131.11671 -12.97745, 131.116719 -12.97757, 131.11683 -12.97899, 131.11687 -12.97947, 131.11695 -12.98064, 131.11702 -12.98167, 131.11719 -12.98419, 131.11733 -12.98643, 131.1174 -12.98745, 131.117539 -12.98956, 131.117629 -12.99082, 131.11764 -12.99097, 131.11777 -12.99312, 131.11779 -12.99355, 131.117889 -12.9949, 131.11796 -12.9958, 131.118 -12.99617, 131.11802 -12.99643, 131.1181 -12.99705, 131.11819 -12.99751, 131.11827 -12.99786, 131.118419 -12.99851, 131.1185 -12.99884, 131.11863 -12.99925, 131.11868 -12.99939, 131.118779 -12.99968, 131.119 -13.00025, 131.11919 -13.00067, 131.11922 -13.00073, 131.11943 -13.00113, 131.11971 -13.00161, 131.11985 -13.00186, 131.11998 -13.00209, 131.12044 -13.00286, 131.1209 -13.00365, 131.12127 -13.00427, 131.122109 -13.00569, 131.12235 -13.0061, 131.12239 -13.00617, 131.122539 -13.00647, 131.12274 -13.00691, 131.122909 -13.00736, 131.12303 -13.00771, 131.12313 -13.00811, 131.12319 -13.00838, 131.123269 -13.00878, 131.12333 -13.00922, 131.123359 -13.00964, 131.12337 -13.01013, 131.123349 -13.01051, 131.12333 -13.01082, 131.12329 -13.01121, 131.12323 -13.01153, 131.12311 -13.01207, 131.12289 -13.01283, 131.122629 -13.01374, 131.12259 -13.01387, 131.122539 -13.01406, 131.1223 -13.01489, 131.12223 -13.01513, 131.122099 -13.01557, 131.12207 -13.01567, 131.12205 -13.01575, 131.1219 -13.01631, 131.1218 -13.01684, 131.12177 -13.01705, 131.121739 -13.01734, 131.12171 -13.01775, 131.12171 -13.01816, 131.12172 -13.01856, 131.12177 -13.01908, 131.1218 -13.01933, 131.121829 -13.01951, 131.12197 -13.02016, 131.12214 -13.02084, 131.12224 -13.02131, 131.1223 -13.02169, 131.12234 -13.02214, 131.122359 -13.0226, 131.12235 -13.02304, 131.12232 -13.02349, 131.122279 -13.02384, 131.12222 -13.02419, 131.12212 -13.02465, 131.121739 -13.02637, 131.12092 -13.03009, 131.120389 -13.03256, 131.12003 -13.03423, 131.119779 -13.03535, 131.119689 -13.03571, 131.11955 -13.03616, 131.11945 -13.0365, 131.119409 -13.03664, 131.11921 -13.03719, 131.11895 -13.03783, 131.11882 -13.03811, 131.11874 -13.03827, 131.11845 -13.03885, 131.1182 -13.0393, 131.11658 -13.04227, 131.11534 -13.04454, 131.11435 -13.04638, 131.113959 -13.04707, 131.11358 -13.04778, 131.11266 -13.04946, 131.11256 -13.04964, 131.1123 -13.05014, 131.11188 -13.05094, 131.11174 -13.05119, 131.11134 -13.05192, 131.11096 -13.05261, 131.11074 -13.05301, 131.11057 -13.0533, 131.110289 -13.05382, 131.10933 -13.05558, 131.10799 -13.05804, 131.10731 -13.05929, 131.10712 -13.05964, 131.106869 -13.0601, 131.10672 -13.06041, 131.10659 -13.06072, 131.10647 -13.06104, 131.106349 -13.06143, 131.10622 -13.06188, 131.10615 -13.06224, 131.106079 -13.06267, 131.10602 -13.06317, 131.105889 -13.06428, 131.10557 -13.06699, 131.10531 -13.06919, 131.10519 -13.07026, 131.10512 -13.07082, 131.10505 -13.07145, 131.10486 -13.07301, 131.104719 -13.07424, 131.10467 -13.07478, 131.104649 -13.07527, 131.10466 -13.07561, 131.10468 -13.07593, 131.10471 -13.07628, 131.10477 -13.07667, 131.10486 -13.07714, 131.10498 -13.07759, 131.10515 -13.07808, 131.10537 -13.07862, 131.10555 -13.07902, 131.10565 -13.07923, 131.10579 -13.07952, 131.106169 -13.08032, 131.106259 -13.0805, 131.1065 -13.08103, 131.10681 -13.08169, 131.107 -13.0821, 131.10704 -13.08217, 131.10753 -13.08324, 131.10762 -13.08342, 131.107779 -13.08376, 131.10788 -13.08397, 131.108229 -13.0847, 131.10829 -13.08483, 131.10835 -13.08496, 131.10842 -13.08512, 131.108479 -13.08526, 131.10853 -13.08538, 131.108579 -13.08551, 131.10865 -13.08567, 131.10871 -13.08583, 131.10877 -13.08598, 131.10892 -13.08638, 131.10898 -13.08655, 131.109029 -13.0867, 131.10907 -13.08684, 131.109119 -13.087, 131.10915 -13.0871, 131.10919 -13.08724, 131.10922 -13.08736, 131.10928 -13.08758, 131.10931 -13.08771, 131.10936 -13.08793, 131.1094 -13.08812, 131.10945 -13.08841, 131.10949 -13.08863, 131.10952 -13.08886, 131.10954 -13.08905, 131.109569 -13.08932, 131.10959 -13.08951, 131.10961 -13.08976, 131.10963 -13.09008, 131.109649 -13.09035, 131.109659 -13.09082, 131.109659 -13.09116, 131.109649 -13.09148, 131.10963 -13.09171, 131.10961 -13.092, 131.10959 -13.09232, 131.10955 -13.09267, 131.10951 -13.093, 131.10946 -13.0934, 131.10942 -13.09371, 131.10935 -13.09428, 131.10932 -13.09452, 131.10925 -13.09509, 131.109209 -13.09541, 131.10914 -13.09595, 131.10907 -13.09641, 131.10892 -13.09768, 131.10882 -13.09844, 131.1087 -13.09945, 131.1086 -13.1002, 131.10844 -13.10142, 131.10834 -13.10225, 131.108309 -13.10268, 131.10827 -13.1033, 131.10827 -13.10374, 131.10829 -13.10422, 131.10829 -13.10439, 131.108309 -13.10469, 131.10835 -13.10537, 131.108409 -13.10627, 131.10842 -13.10642, 131.10844 -13.10685, 131.10847 -13.10749, 131.10851 -13.10807, 131.10853 -13.10855, 131.10854 -13.109, 131.10854 -13.10912, 131.10854 -13.10938, 131.10852 -13.10982, 131.108479 -13.1104, 131.108409 -13.11099, 131.108319 -13.11152, 131.10819 -13.11219, 131.10797 -13.11316, 131.10788 -13.11362, 131.10779 -13.11414, 131.10772 -13.1146, 131.10766 -13.11537, 131.107599 -13.11606, 131.10754 -13.11689, 131.10745 -13.11799, 131.10736 -13.11911, 131.10721 -13.12083, 131.10712 -13.12195, 131.10699 -13.12356, 131.106879 -13.12487, 131.10676 -13.12638, 131.10673 -13.12676, 131.10672 -13.12702, 131.106709 -13.12755, 131.10672 -13.12814, 131.10675 -13.12883, 131.10681 -13.12935, 131.10686 -13.12975, 131.10713 -13.13147, 131.10719 -13.13183, 131.10727 -13.13242, 131.107319 -13.13297, 131.10735 -13.13351, 131.10736 -13.13402, 131.10735 -13.13437, 131.10734 -13.13468, 131.10725 -13.13647, 131.10717 -13.13785, 131.1071 -13.13892, 131.107049 -13.13997, 131.10703 -13.14034, 131.107 -13.14086, 131.10699 -13.14102, 131.10684 -13.14373, 131.10668 -13.14672, 131.106509 -13.1498, 131.10622 -13.15515, 131.10615 -13.15629, 131.10611 -13.15682, 131.10606 -13.15731, 131.105989 -13.15786, 131.10592 -13.15836, 131.10583 -13.15885, 131.105719 -13.15942, 131.10558 -13.16004, 131.105449 -13.16056, 131.10529 -13.1611, 131.10514 -13.16161, 131.10495 -13.16217, 131.104719 -13.16277, 131.10324 -13.16658, 131.10299 -13.16725, 131.10282 -13.1678, 131.10271 -13.16816, 131.10261 -13.16859, 131.102489 -13.1692, 131.102319 -13.17017, 131.10206 -13.17185, 131.101769 -13.17365, 131.10145 -13.17569, 131.10143 -13.17581, 131.1014 -13.17606, 131.101319 -13.17661, 131.101139 -13.17774, 131.10074 -13.18026, 131.10065 -13.1809, 131.100599 -13.18143, 131.10059 -13.18152, 131.10057 -13.18201, 131.10057 -13.18251, 131.100599 -13.183, 131.10066 -13.18361, 131.10074 -13.18412, 131.101139 -13.18639, 131.10199 -13.19136, 131.10242 -13.19384, 131.102659 -13.19526, 131.102769 -13.19602, 131.10283 -13.19653, 131.10289 -13.19719, 131.102939 -13.19797, 131.10297 -13.19879, 131.10298 -13.19959, 131.10297 -13.20023, 131.102929 -13.20098, 131.10288 -13.20174, 131.10282 -13.20239, 131.10273 -13.20308, 131.10263 -13.2037, 131.10238 -13.20506, 131.10234 -13.20529, 131.10221 -13.20597, 131.102049 -13.20679, 131.101949 -13.20733, 131.10189 -13.20764, 131.10164 -13.20892, 131.10162 -13.20905, 131.101319 -13.21065, 131.10104 -13.21215, 131.10021 -13.21659, 131.09992 -13.2181, 131.099719 -13.21917, 131.09964 -13.21962, 131.09961 -13.21977, 131.09957 -13.22, 131.09956 -13.22006, 131.09956 -13.22008, 131.099529 -13.22022, 131.0995 -13.22042, 131.09949 -13.22053, 131.09946 -13.22082, 131.09942 -13.22134, 131.09941 -13.22175, 131.09943 -13.22236, 131.099449 -13.22278, 131.09952 -13.22334, 131.09969 -13.22435, 131.1 -13.22619, 131.10001 -13.22625, 131.100159 -13.2271, 131.1002 -13.22734, 131.10027 -13.22777, 131.100529 -13.22935, 131.10082 -13.23104, 131.10109 -13.2327, 131.10112 -13.23286, 131.10121 -13.23335, 131.10134 -13.23411, 131.10139 -13.23439, 131.10145 -13.23473, 131.101499 -13.23496, 131.10155 -13.23514, 131.10158 -13.23524, 131.101599 -13.23529, 131.10164 -13.23538, 131.1017 -13.23554, 131.10176 -13.23568, 131.101869 -13.23591, 131.10199 -13.23612, 131.10207 -13.23624, 131.10215 -13.23635, 131.102229 -13.23646, 131.10233 -13.23659, 131.102409 -13.23668, 131.102499 -13.23678, 131.1026 -13.23689, 131.1027 -13.237, 131.10279 -13.23709, 131.102929 -13.23722, 131.10309 -13.23737, 131.103289 -13.23755, 131.10346 -13.23769, 131.10413 -13.2382, 131.10445 -13.23843, 131.104739 -13.23863, 131.105169 -13.23892, 131.105709 -13.23927, 131.10604 -13.23947, 131.106439 -13.23972, 131.10699 -13.24004, 131.10747 -13.24032, 131.10771 -13.24046, 131.107949 -13.24059, 131.10817 -13.24071, 131.108499 -13.24088, 131.109019 -13.24114, 131.10923 -13.24124, 131.10945 -13.24134, 131.10963 -13.24142, 131.10985 -13.24152, 131.110379 -13.24174, 131.11067 -13.24185, 131.11096 -13.24195, 131.11184 -13.24224, 131.11231 -13.24238, 131.1128 -13.2425, 131.11328 -13.2426, 131.11406 -13.24275, 131.11442 -13.24281, 131.11447 -13.24282, 131.11478 -13.24286, 131.11595 -13.24302, 131.11711 -13.24317, 131.11787 -13.24328, 131.118069 -13.24331, 131.118429 -13.24337, 131.119059 -13.24349, 131.11963 -13.24361, 131.120229 -13.24375, 131.12091 -13.24392, 131.12149 -13.24409, 131.12216 -13.24429, 131.12296 -13.24456, 131.12351 -13.24476, 131.12439 -13.2451, 131.124599 -13.24519, 131.125139 -13.24543, 131.125599 -13.24564, 131.12602 -13.24584, 131.12683 -13.24626, 131.12762 -13.24666, 131.12866 -13.24722, 131.1295 -13.24769, 131.13045 -13.24824, 131.13147 -13.24887, 131.13254 -13.24955, 131.13341 -13.25013, 131.13441 -13.25083, 131.135259 -13.25145, 131.13591 -13.25194, 131.13623 -13.25218, 131.13676 -13.25261, 131.137229 -13.25298, 131.13772 -13.25339, 131.138389 -13.25396, 131.13919 -13.25466, 131.13996 -13.25536, 131.14065 -13.25602, 131.14264 -13.25799, 131.14501 -13.26032, 131.147699 -13.26298, 131.149599 -13.26485, 131.15082 -13.26605, 131.15135 -13.26657, 131.153089 -13.26829, 131.15529 -13.27046, 131.1568 -13.27195, 131.15905 -13.27416, 131.16038 -13.27548, 131.161229 -13.27629, 131.16173 -13.27675, 131.16232 -13.27725, 131.1628 -13.27765, 131.163199 -13.27796, 131.16394 -13.27852, 131.16438 -13.27883, 131.164989 -13.27923, 131.165619 -13.27963, 131.16632 -13.28004, 131.16699 -13.28042, 131.16763 -13.28075, 131.16814 -13.281, 131.1688 -13.2813, 131.16963 -13.28165, 131.170279 -13.28191, 131.171089 -13.2822, 131.17182 -13.28244, 131.17218 -13.28255, 131.17284 -13.28274, 131.17345 -13.28292, 131.174299 -13.28315, 131.17647 -13.28371, 131.17758 -13.284, 131.17769 -13.28403, 131.18061 -13.28479, 131.180929 -13.28487, 131.18108 -13.28491, 131.181459 -13.28501, 131.182269 -13.28523, 131.18294 -13.28543, 131.1834 -13.28559, 131.18386 -13.28578, 131.18423 -13.28595, 131.18462 -13.28616, 131.18491 -13.28633, 131.18525 -13.28656, 131.18554 -13.28676, 131.18582 -13.28697, 131.18616 -13.28722, 131.18641 -13.2874, 131.186659 -13.28759, 131.18813 -13.28868, 131.1892 -13.28947, 131.189519 -13.28971, 131.18978 -13.2899, 131.190159 -13.29016, 131.19135 -13.29101, 131.19206 -13.29154, 131.19281 -13.29207, 131.193189 -13.29234, 131.194089 -13.29307, 131.19439 -13.29329, 131.1956 -13.29419, 131.19637 -13.29474, 131.19688 -13.29511, 131.19733 -13.29547, 131.19816 -13.29608, 131.1986 -13.29641, 131.1988 -13.29656, 131.199109 -13.29678, 131.19934 -13.29693, 131.19963 -13.29715, 131.19972 -13.29721, 131.199819 -13.2973, 131.20022 -13.29764, 131.20075 -13.2981, 131.20122 -13.29851, 131.20149 -13.29878, 131.20208 -13.29935, 131.20246 -13.29974, 131.20293 -13.30024, 131.203399 -13.30078, 131.20383 -13.30131, 131.204379 -13.302, 131.2048 -13.30257, 131.205289 -13.30328, 131.20566 -13.30386, 131.20593 -13.30429, 131.206189 -13.30473, 131.20641 -13.30512, 131.20669 -13.30565, 131.207 -13.30624, 131.20739 -13.30703, 131.20766 -13.30764, 131.20784 -13.30807, 131.20802 -13.30852, 131.20835 -13.30941, 131.20856 -13.31007, 131.2088 -13.31088, 131.209039 -13.31177, 131.2092 -13.31245, 131.20936 -13.3132, 131.20947 -13.31385, 131.20971 -13.31546, 131.20984 -13.31632, 131.210019 -13.31753, 131.2101 -13.31809, 131.210119 -13.31836, 131.210199 -13.31885, 131.210289 -13.31948, 131.21051 -13.32096, 131.2107 -13.32225, 131.210739 -13.32248, 131.210919 -13.32371, 131.211469 -13.32745, 131.211559 -13.32809, 131.21188 -13.33023, 131.212009 -13.33107, 131.21211 -13.33184, 131.2122 -13.33252, 131.212259 -13.33326, 131.21232 -13.3341, 131.21234 -13.3347, 131.212349 -13.33501, 131.21237 -13.33528, 131.212359 -13.33561, 131.212359 -13.33597, 131.212359 -13.3363, 131.21233 -13.33699, 131.21229 -13.33777, 131.21222 -13.33866, 131.212169 -13.33926, 131.21213 -13.3397, 131.21211 -13.33987, 131.212089 -13.34005, 131.21202 -13.34081, 131.2119 -13.34204, 131.211649 -13.34473, 131.21149 -13.34631, 131.211369 -13.3477, 131.21133 -13.34842, 131.21131 -13.349, 131.21131 -13.34979, 131.21132 -13.35027, 131.21133 -13.3505, 131.21135 -13.35072, 131.21136 -13.35093, 131.211369 -13.35118, 131.21145 -13.352, 131.21152 -13.35261, 131.21161 -13.35317, 131.2117 -13.35371, 131.21184 -13.35436, 131.21194 -13.3548, 131.21206 -13.35529, 131.21221 -13.35584, 131.21239 -13.35643, 131.21258 -13.35704, 131.21283 -13.35771, 131.21315 -13.35855, 131.213429 -13.35917, 131.21376 -13.35986, 131.2141 -13.36053, 131.21446 -13.36117, 131.21458 -13.36137, 131.21472 -13.36161, 131.21499 -13.36204, 131.215309 -13.36254, 131.215679 -13.36308, 131.216039 -13.36357, 131.21658 -13.36426, 131.217099 -13.36487, 131.21748 -13.3653, 131.217919 -13.36578, 131.21857 -13.36642, 131.218809 -13.36665, 131.219079 -13.3669, 131.219259 -13.36706, 131.219789 -13.36752, 131.22034 -13.36797, 131.221049 -13.36852, 131.221589 -13.36891, 131.22225 -13.36934, 131.22291 -13.36975, 131.22351 -13.37012, 131.22395 -13.37036, 131.22438 -13.3706, 131.22484 -13.37083, 131.22542 -13.3711, 131.22607 -13.37139, 131.22662 -13.37161, 131.22721 -13.37181, 131.22779 -13.37203, 131.22835 -13.3722, 131.22922 -13.37245, 131.231079 -13.373, 131.23416 -13.37389, 131.23739 -13.37482, 131.23768 -13.3749, 131.23827 -13.37507, 131.24044 -13.3757, 131.24161 -13.37604, 131.24223 -13.37624, 131.24269 -13.3764, 131.2432 -13.37659, 131.24363 -13.37676, 131.24418 -13.37699, 131.24492 -13.37732, 131.245669 -13.37769, 131.24632 -13.37803, 131.24688 -13.37834, 131.2474 -13.37865, 131.24792 -13.37899, 131.248529 -13.37939, 131.24909 -13.3798, 131.249779 -13.38032, 131.250319 -13.38075, 131.25183 -13.38199, 131.25317 -13.3831, 131.25501 -13.38461, 131.25612 -13.38552, 131.257209 -13.38641, 131.25855 -13.38751, 131.258659 -13.3876, 131.26073 -13.38931, 131.26305 -13.39121, 131.26388 -13.39188, 131.26496 -13.39274, 131.26575 -13.39337, 131.267059 -13.39431, 131.2683 -13.39519, 131.26942 -13.39594, 131.27019 -13.39645, 131.272089 -13.39771, 131.27514 -13.39972, 131.27538 -13.39989, 131.27675 -13.40079, 131.2773 -13.40115, 131.2783 -13.40182, 131.27846 -13.40193, 131.27875 -13.40212, 131.28003 -13.40296, 131.28066 -13.40338, 131.28144 -13.4039, 131.2819 -13.40421, 131.28209 -13.40433, 131.282479 -13.40458, 131.28259 -13.40466, 131.28296 -13.40491, 131.28339 -13.40517, 131.28388 -13.40549, 131.28575 -13.40674, 131.289099 -13.40896, 131.29024 -13.40973, 131.291339 -13.41051, 131.292309 -13.41122, 131.293029 -13.41176, 131.293569 -13.41217, 131.29435 -13.41279, 131.29488 -13.41321, 131.2957 -13.4139, 131.29648 -13.41456, 131.29749 -13.41544, 131.29824 -13.41612, 131.29905 -13.41688, 131.300009 -13.41781, 131.300829 -13.41862, 131.30156 -13.41938, 131.301979 -13.41982, 131.302349 -13.42023, 131.30251 -13.42042, 131.3031 -13.42108, 131.303699 -13.42176, 131.3038 -13.42187, 131.30411 -13.42222, 131.30475 -13.42298, 131.30517 -13.42348, 131.30579 -13.42425, 131.30634 -13.42495, 131.30717 -13.42603, 131.30793 -13.42705, 131.3086 -13.42801, 131.309159 -13.42882, 131.30963 -13.42952, 131.30984 -13.42983, 131.31017 -13.43035, 131.310319 -13.43059, 131.31064 -13.4311, 131.31124 -13.43207, 131.311659 -13.43278, 131.31222 -13.43376, 131.31262 -13.43447, 131.31266 -13.43454, 131.312919 -13.43502, 131.31314 -13.43544, 131.31325 -13.43563, 131.313369 -13.43586, 131.31359 -13.43628, 131.31384 -13.43678, 131.31401 -13.43711, 131.31419 -13.43748, 131.3145 -13.4381, 131.31458 -13.43825, 131.31481 -13.43871, 131.3153 -13.43969, 131.31573 -13.44055, 131.3178 -13.44467, 131.32031 -13.44968, 131.32147 -13.452, 131.32212 -13.4533, 131.32328 -13.45563, 131.32448 -13.45803, 131.32542 -13.45991, 131.32584 -13.46077, 131.326259 -13.46159, 131.32677 -13.46261, 131.32738 -13.46383, 131.32766 -13.46439, 131.32806 -13.46517, 131.32847 -13.4659, 131.32882 -13.46646, 131.32919 -13.46699, 131.32954 -13.46747, 131.32995 -13.46797, 131.330379 -13.46846, 131.33099 -13.46907, 131.3315 -13.46955, 131.33205 -13.47002, 131.33255 -13.4704, 131.33312 -13.4708, 131.33372 -13.47118, 131.33418 -13.47145, 131.33469 -13.47175, 131.33524 -13.472, 131.33588 -13.47228, 131.336459 -13.47251, 131.33696 -13.47268, 131.3376 -13.47289, 131.33827 -13.47306, 131.33939 -13.47331, 131.34017 -13.47348, 131.34263 -13.474, 131.34412 -13.47433, 131.3452 -13.47455, 131.346229 -13.47478, 131.347929 -13.47515, 131.34816 -13.4752, 131.34885 -13.47534, 131.35074 -13.47575, 131.35094 -13.47579, 131.35282 -13.47619, 131.35308 -13.47625, 131.35443 -13.47653, 131.35585 -13.47683, 131.35676 -13.47703, 131.357419 -13.47717, 131.358139 -13.47734, 131.35873 -13.4775, 131.35931 -13.47771, 131.35987 -13.47793, 131.3603 -13.47812, 131.36075 -13.47834, 131.36116 -13.47856, 131.36164 -13.47885, 131.36209 -13.47914, 131.36245 -13.47938, 131.36293 -13.47975, 131.363419 -13.48015, 131.36385 -13.48055, 131.364299 -13.48101, 131.36464 -13.48139, 131.36491 -13.48173, 131.36524 -13.48215, 131.36552 -13.48255, 131.365839 -13.48305, 131.36621 -13.4837, 131.366279 -13.48382, 131.36666 -13.48449, 131.366729 -13.48461, 131.36703 -13.48515, 131.36711 -13.48532, 131.36739 -13.48583, 131.36766 -13.48634, 131.36803 -13.48701, 131.36847 -13.48783, 131.36871 -13.48827, 131.36917 -13.48911, 131.36976 -13.49019, 131.370129 -13.49091, 131.370479 -13.49152, 131.3715 -13.4934, 131.3718 -13.49394, 131.37284 -13.49586, 131.37332 -13.49672, 131.37373 -13.49747, 131.374059 -13.49803, 131.37437 -13.49853, 131.37457 -13.49885, 131.37492 -13.49937, 131.37554 -13.50023, 131.37593 -13.50074, 131.37624 -13.50113, 131.3766 -13.50156, 131.37706 -13.50209, 131.37763 -13.50271, 131.37812 -13.5032, 131.3785 -13.50358, 131.37885 -13.50391, 131.37928 -13.5043, 131.37983 -13.50476, 131.38055 -13.50536, 131.381059 -13.50575, 131.38147 -13.50605, 131.38217 -13.50655, 131.38324 -13.50729, 131.38458 -13.50823, 131.385439 -13.50888, 131.38622 -13.50948, 131.386869 -13.51001, 131.38755 -13.51059, 131.38809 -13.51105, 131.388659 -13.51158, 131.389199 -13.51207, 131.38987 -13.51272, 131.39031 -13.51316, 131.39066 -13.51352, 131.39103 -13.51391, 131.39142 -13.51432, 131.39202 -13.51499, 131.3929 -13.516, 131.39411 -13.5174, 131.39541 -13.5189, 131.39661 -13.52028, 131.39733 -13.52107, 131.398329 -13.52226, 131.39847 -13.52243, 131.398699 -13.52269, 131.39965 -13.52379, 131.400039 -13.52424, 131.401819 -13.52629, 131.40242 -13.52697, 131.402639 -13.52722, 131.40294 -13.52753, 131.40341 -13.52803, 131.40358 -13.52821, 131.40381 -13.52844, 131.40393 -13.52857, 131.40446 -13.52909, 131.40529 -13.52989, 131.40627 -13.53077, 131.40662 -13.53109, 131.40732 -13.53172, 131.40767 -13.53203, 131.4079 -13.53223, 131.40813 -13.53245, 131.408819 -13.53306, 131.409089 -13.53331, 131.40947 -13.53367, 131.41001 -13.53416, 131.411139 -13.53515, 131.41196 -13.53587, 131.4155 -13.53902, 131.41752 -13.54083, 131.419189 -13.54232, 131.420449 -13.54342, 131.42104 -13.54396, 131.421159 -13.54408, 131.42163 -13.54451, 131.42209 -13.54497, 131.422239 -13.54513, 131.42238 -13.54529, 131.42256 -13.54549, 131.42281 -13.54579, 131.4229 -13.5459, 131.423229 -13.54634, 131.42339 -13.54656, 131.42357 -13.54683, 131.42363 -13.54692, 131.42391 -13.54737, 131.424119 -13.54775, 131.424399 -13.54828, 131.42468 -13.54886, 131.42487 -13.54929, 131.42508 -13.54988, 131.42526 -13.55045, 131.42544 -13.551, 131.42571 -13.55184, 131.425909 -13.55246, 131.42608 -13.55296, 131.42623 -13.55334, 131.42641 -13.55376, 131.426549 -13.55407, 131.42679 -13.55452, 131.42702 -13.5549, 131.42728 -13.5553, 131.42758 -13.55572, 131.42792 -13.55616, 131.42819 -13.55647, 131.42846 -13.55675, 131.42874 -13.55704, 131.429039 -13.5573, 131.429399 -13.55761, 131.42984 -13.55795, 131.4302 -13.5582, 131.43069 -13.55852, 131.43131 -13.55886, 131.4326 -13.55955, 131.43328 -13.55991, 131.43374 -13.56017, 131.4343 -13.56053, 131.43476 -13.56087, 131.43512 -13.56116, 131.43548 -13.56147, 131.43587 -13.56185, 131.43625 -13.56225, 131.436569 -13.56263, 131.43686 -13.563, 131.43714 -13.56339, 131.43736 -13.56373, 131.43759 -13.56411, 131.43781 -13.56452, 131.43803 -13.56498, 131.43831 -13.56566, 131.43844 -13.566, 131.438549 -13.56634, 131.43874 -13.56683, 131.438889 -13.56723, 131.43906 -13.56769, 131.43923 -13.56812, 131.43931 -13.56833, 131.439519 -13.56883, 131.43958 -13.56896, 131.43967 -13.56916, 131.43976 -13.56935, 131.440059 -13.56993, 131.440249 -13.57026, 131.4403 -13.57035, 131.440509 -13.57069, 131.4408 -13.57112, 131.44112 -13.57156, 131.44135 -13.57185, 131.44148 -13.57201, 131.442129 -13.57276, 131.44393 -13.57473, 131.44602 -13.577, 131.44663 -13.57765, 131.447 -13.57802, 131.447399 -13.57839, 131.447759 -13.57868, 131.448209 -13.57904, 131.44867 -13.57937, 131.44896 -13.57957, 131.44936 -13.57983, 131.449549 -13.57994, 131.44984 -13.58009, 131.45033 -13.58035, 131.45085 -13.5806, 131.45113 -13.58072, 131.4512 -13.58075, 131.45158 -13.58091, 131.45166 -13.58094, 131.451979 -13.58104, 131.45209 -13.58108, 131.45243 -13.58119, 131.45289 -13.58132, 131.45336 -13.58144, 131.45415 -13.58161, 131.45523 -13.58178, 131.455729 -13.58187, 131.45585 -13.58189, 131.45596 -13.58191, 131.45624 -13.58196, 131.4564 -13.58199, 131.4566 -13.58203, 131.456709 -13.58205, 131.45729 -13.58214, 131.4579 -13.58222, 131.45813 -13.58224, 131.45839 -13.58225, 131.45891 -13.58222, 131.45919 -13.5822, 131.45942 -13.58217, 131.45966 -13.58213, 131.46 -13.58207, 131.46014 -13.58204, 131.46045 -13.58196, 131.46062 -13.58191, 131.46103 -13.58177, 131.46133 -13.58165, 131.461819 -13.58141, 131.462349 -13.58111, 131.46261 -13.58093, 131.46283 -13.58077, 131.46329 -13.58038, 131.463699 -13.57996, 131.4641 -13.57952, 131.46456 -13.57903, 131.46485 -13.57875, 131.46521 -13.57843, 131.46566 -13.57808, 131.466019 -13.57785, 131.46689 -13.57736, 131.46741 -13.57706, 131.467909 -13.57673, 131.46815 -13.57655, 131.4684 -13.57634, 131.468809 -13.57596, 131.469159 -13.5756, 131.46941 -13.57532, 131.46975 -13.57489, 131.46994 -13.5746, 131.47038 -13.5739, 131.470679 -13.57342, 131.470869 -13.57311, 131.47093 -13.57301, 131.47128 -13.57244, 131.47164 -13.57194, 131.47183 -13.57171, 131.472209 -13.5713, 131.472479 -13.57104, 131.47287 -13.57069, 131.473109 -13.57049, 131.47336 -13.5703, 131.473639 -13.57011, 131.47386 -13.56997, 131.47404 -13.56985, 131.47421 -13.56974, 131.4744 -13.56964, 131.47494 -13.56938, 131.47547 -13.56916, 131.47602 -13.56899, 131.476319 -13.56891, 131.47684 -13.5688, 131.47747 -13.5687, 131.47801 -13.56867, 131.47834 -13.56866, 131.47891 -13.56867, 131.47951 -13.56872, 131.48007 -13.56881, 131.48039 -13.56888, 131.48112 -13.56905, 131.48175 -13.56918, 131.48203 -13.56922, 131.48231 -13.56925, 131.48282 -13.56927, 131.48347 -13.56926, 131.485379 -13.56924, 131.48628 -13.56921, 131.486719 -13.56922, 131.48773 -13.56921, 131.48785 -13.56921, 131.48821 -13.56923, 131.4887 -13.56927, 131.4892 -13.56935, 131.48974 -13.56948, 131.4901 -13.5696, 131.49042 -13.56972, 131.49099 -13.56997, 131.49148 -13.57024, 131.491809 -13.57046, 131.49211 -13.57067, 131.49239 -13.57091, 131.4926 -13.5711, 131.49284 -13.57133, 131.49304 -13.57155, 131.49321 -13.57175, 131.493429 -13.57204, 131.49372 -13.57247, 131.49381 -13.57262, 131.49401 -13.57298, 131.49425 -13.57352, 131.49434 -13.57376, 131.49444 -13.57403, 131.49452 -13.57431, 131.494599 -13.57466, 131.49467 -13.57506, 131.49472 -13.57544, 131.49473 -13.57585, 131.49474 -13.57631, 131.49474 -13.57669, 131.49473 -13.5776, 131.49473 -13.57781, 131.49474 -13.57812, 131.49476 -13.57906, 131.494769 -13.58013, 131.494769 -13.58039, 131.494779 -13.58095, 131.4948 -13.58169, 131.49485 -13.58227, 131.49493 -13.58283, 131.49499 -13.58319, 131.49508 -13.58358, 131.495229 -13.58412, 131.49534 -13.58444, 131.49553 -13.58499, 131.49579 -13.58559, 131.495929 -13.58588, 131.49623 -13.58644, 131.49642 -13.58676, 131.496749 -13.58725, 131.497089 -13.5877, 131.4974 -13.58808, 131.49771 -13.58843, 131.49796 -13.58867, 131.49831 -13.58901, 131.49865 -13.5893, 131.499169 -13.58973, 131.49962 -13.59004, 131.499969 -13.59026, 131.50052 -13.59058, 131.50099 -13.59081, 131.50141 -13.59101, 131.502119 -13.59133, 131.50359 -13.59196, 131.50422 -13.59223, 131.504809 -13.59248, 131.50576 -13.5929, 131.506139 -13.59305, 131.5068 -13.59334, 131.50765 -13.59371, 131.50942 -13.59448, 131.51049 -13.59494, 131.51153 -13.59541, 131.51272 -13.59592, 131.51309 -13.59609, 131.5149 -13.59686, 131.516789 -13.59769, 131.51737 -13.59794, 131.51893 -13.59862, 131.51978 -13.599, 131.5201 -13.59915, 131.52072 -13.59948, 131.521009 -13.59964, 131.52149 -13.59994, 131.52202 -13.6003, 131.522529 -13.60069, 131.52302 -13.60109, 131.52349 -13.60152, 131.524049 -13.60209, 131.52434 -13.60241, 131.52472 -13.60287, 131.52499 -13.60322, 131.52527 -13.6036, 131.52555 -13.60401, 131.52572 -13.60428, 131.52588 -13.60456, 131.526119 -13.60499, 131.52634 -13.60543, 131.526729 -13.6063, 131.52711 -13.6072, 131.528439 -13.61045, 131.52896 -13.61168, 131.52913 -13.6121, 131.52929 -13.61249, 131.52946 -13.61285, 131.52962 -13.61319, 131.52985 -13.61361, 131.530229 -13.61425, 131.53052 -13.61468, 131.530589 -13.61477, 131.53083 -13.61511, 131.53129 -13.61569, 131.531569 -13.61601, 131.531759 -13.61622, 131.53188 -13.61635, 131.53232 -13.6168, 131.53285 -13.61727, 131.53331 -13.61767, 131.533999 -13.61827, 131.5362 -13.62018, 131.53886 -13.6225, 131.54002 -13.6235, 131.540889 -13.62426, 131.54181 -13.62506, 131.5428 -13.62593, 131.54333 -13.62638, 131.54499 -13.62781, 131.5455 -13.62822, 131.545999 -13.62858, 131.54649 -13.62891, 131.546709 -13.62905, 131.54729 -13.62939, 131.54771 -13.62962, 131.548129 -13.62982, 131.54863 -13.63005, 131.54923 -13.63029, 131.54963 -13.63043, 131.55006 -13.63058, 131.55067 -13.63076, 131.551089 -13.63087, 131.55133 -13.63092, 131.55157 -13.63097, 131.55212 -13.63107, 131.552699 -13.63116, 131.55308 -13.6312, 131.553339 -13.63122, 131.5539 -13.63125, 131.55419 -13.63126, 131.555299 -13.63128, 131.55545 -13.63128, 131.55651 -13.63128, 131.55658 -13.63128, 131.55663 -13.63128, 131.5569 -13.63128, 131.55804 -13.63129, 131.56227 -13.63133, 131.56526 -13.63136, 131.56592 -13.63137, 131.56778 -13.6314, 131.5684 -13.6314, 131.569449 -13.63141, 131.56965 -13.63141, 131.56994 -13.63142, 131.571069 -13.63143, 131.57206 -13.63143, 131.57324 -13.6314, 131.57423 -13.63133, 131.575269 -13.63121, 131.57629 -13.63104, 131.576799 -13.63094, 131.57765 -13.63075, 131.578139 -13.63063, 131.57851 -13.63053, 131.57857 -13.63051, 131.57917 -13.63033, 131.57971 -13.63016, 131.58018 -13.63001, 131.58033 -13.62995, 131.58093 -13.62972, 131.58141 -13.62953, 131.58206 -13.62925, 131.584039 -13.62836, 131.585109 -13.62789, 131.58636 -13.62733, 131.587009 -13.62704, 131.58797 -13.62661, 131.58963 -13.62586, 131.59052 -13.62547, 131.59092 -13.6253, 131.59106 -13.62523, 131.5917 -13.62496, 131.59254 -13.62461, 131.59296 -13.62446, 131.59402 -13.62411, 131.594779 -13.62389, 131.59526 -13.62376, 131.59548 -13.6237, 131.59609 -13.62356, 131.597109 -13.62336, 131.59832 -13.62318, 131.59934 -13.62307, 131.59988 -13.62303, 131.60014 -13.62301, 131.600609 -13.62298, 131.601409 -13.62295, 131.60202 -13.62295, 131.60288 -13.62297, 131.603559 -13.62301, 131.60418 -13.62306, 131.604729 -13.62312, 131.605539 -13.62322, 131.60701 -13.62344, 131.60836 -13.62364, 131.60909 -13.62375, 131.61024 -13.62392, 131.61492 -13.62462, 131.616449 -13.62488, 131.61751 -13.6251, 131.6188 -13.62542, 131.61958 -13.62563, 131.620229 -13.62582, 131.621109 -13.6261, 131.62204 -13.62642, 131.62275 -13.62668, 131.62376 -13.62708, 131.62464 -13.62747, 131.6254 -13.62782, 131.62629 -13.62825, 131.62669 -13.62847, 131.62701 -13.62864, 131.62715 -13.62871, 131.62719 -13.62873, 131.62795 -13.62916, 131.628269 -13.62934, 131.628459 -13.62945, 131.62883 -13.62968, 131.62894 -13.62975, 131.62913 -13.62986, 131.629349 -13.63, 131.62943 -13.63005, 131.629529 -13.63011, 131.62973 -13.63024, 131.62987 -13.63033, 131.6302 -13.63055, 131.63055 -13.63078, 131.63081 -13.63094, 131.631149 -13.63117, 131.63163 -13.63149, 131.63238 -13.63197, 131.63362 -13.63278, 131.63403 -13.63305, 131.63434 -13.63324, 131.63459 -13.63339, 131.635169 -13.63377, 131.63538 -13.63391, 131.635889 -13.63425, 131.63749 -13.6353, 131.63814 -13.63572, 131.63896 -13.63625, 131.64032 -13.63714, 131.64111 -13.63764, 131.64148 -13.63785, 131.6421 -13.6382, 131.6432 -13.63876, 131.64407 -13.63915, 131.644759 -13.63943, 131.645639 -13.63976, 131.64693 -13.64017, 131.6485 -13.64067, 131.65217 -13.64184, 131.65286 -13.64207, 131.653429 -13.64228, 131.65403 -13.64252, 131.65501 -13.64295, 131.65565 -13.64327, 131.6561 -13.6435, 131.65686 -13.64394, 131.657299 -13.64422, 131.65741 -13.64429, 131.65776 -13.64452, 131.65823 -13.64484, 131.65877 -13.64523, 131.65974 -13.64595, 131.66121 -13.64705, 131.66352 -13.64878, 131.6653 -13.65011, 131.66623 -13.65079, 131.66658 -13.65104, 131.66711 -13.65138, 131.66819 -13.65203, 131.669009 -13.65247, 131.67013 -13.653, 131.670989 -13.65337, 131.6716 -13.6536, 131.67239 -13.65388, 131.67301 -13.65412, 131.673499 -13.65432, 131.67391 -13.65451, 131.674309 -13.65473, 131.6745 -13.65484, 131.67468 -13.65495, 131.67486 -13.65506, 131.675 -13.65516, 131.675379 -13.65543, 131.675819 -13.6558, 131.67614 -13.65608, 131.67648 -13.65642, 131.67732 -13.65723, 131.67916 -13.65901, 131.6797 -13.65953, 131.68035 -13.66016, 131.68099 -13.66081, 131.68199 -13.66188, 131.68291 -13.66288, 131.68401 -13.66408, 131.684609 -13.66473, 131.68589 -13.66613, 131.68686 -13.66717, 131.68744 -13.66784, 131.68804 -13.6686, 131.68861 -13.66939, 131.68911 -13.67016, 131.68954 -13.67088, 131.68977 -13.6713, 131.69013 -13.672, 131.69039 -13.67256, 131.690679 -13.6732, 131.69092 -13.67382, 131.69103 -13.67413, 131.691129 -13.67442, 131.691319 -13.67502, 131.69148 -13.67555, 131.69166 -13.67627, 131.69175 -13.67668, 131.69192 -13.67756, 131.69205 -13.67843, 131.69219 -13.67964, 131.69243 -13.68169, 131.692489 -13.68219, 131.692929 -13.68605, 131.69333 -13.6892, 131.6937 -13.69269, 131.69394 -13.69468, 131.69405 -13.69576, 131.69425 -13.69748, 131.69439 -13.69859, 131.69449 -13.69938, 131.69465 -13.70035, 131.69477 -13.70101, 131.69497 -13.70191, 131.695159 -13.70266, 131.695339 -13.70333, 131.69563 -13.70428, 131.69602 -13.70544, 131.69626 -13.70606, 131.69657 -13.70682, 131.69676 -13.70729, 131.696949 -13.7077, 131.697229 -13.7083, 131.69746 -13.70879, 131.697859 -13.70954, 131.69792 -13.70965, 131.698209 -13.71018, 131.69852 -13.7107, 131.69887 -13.71128, 131.6995 -13.71226, 131.6997 -13.71255, 131.69989 -13.71284, 131.700349 -13.71346, 131.70078 -13.71403, 131.70129 -13.71466, 131.70184 -13.71531, 131.70226 -13.71578, 131.70299 -13.71656, 131.70343 -13.71701, 131.703849 -13.71742, 131.70427 -13.71781, 131.705199 -13.71865, 131.70647 -13.71972, 131.7081 -13.72111, 131.7104 -13.72307, 131.71293 -13.72523, 131.71312 -13.72539, 131.71457 -13.72663, 131.71471 -13.72675, 131.71615 -13.72797, 131.71695 -13.72864, 131.7199 -13.73115, 131.72326 -13.734, 131.72457 -13.73511, 131.72551 -13.73591, 131.726419 -13.73669, 131.72726 -13.7374, 131.72861 -13.73855, 131.72885 -13.73875, 131.72907 -13.73894, 131.729369 -13.7392, 131.72953 -13.73933, 131.73079 -13.7404, 131.73101 -13.74058, 131.73145 -13.74096, 131.73275 -13.74205, 131.73451 -13.74354, 131.7354 -13.74431, 131.735639 -13.74451, 131.73601 -13.74482, 131.736269 -13.74504, 131.736359 -13.74512, 131.7366 -13.74532, 131.73694 -13.74561, 131.737079 -13.74573, 131.73722 -13.74585, 131.73773 -13.74628, 131.73817 -13.74665, 131.73834 -13.74679, 131.73959 -13.74786, 131.74036 -13.7485, 131.740829 -13.74888, 131.74117 -13.74914, 131.74153 -13.74941, 131.74189 -13.74967, 131.74223 -13.7499, 131.742809 -13.75029, 131.74359 -13.75077, 131.74413 -13.75109, 131.744949 -13.75154, 131.746019 -13.75206, 131.74641 -13.75225, 131.74691 -13.75247, 131.747809 -13.75285, 131.74867 -13.75316, 131.74921 -13.75336, 131.74974 -13.75353, 131.75016 -13.75364, 131.75037 -13.7537, 131.75153 -13.75401, 131.75404 -13.75466, 131.75536 -13.755, 131.75744 -13.75555, 131.75913 -13.75599, 131.759999 -13.75624, 131.76102 -13.75655, 131.762229 -13.75696, 131.76314 -13.75729, 131.76434 -13.75776, 131.765539 -13.75829, 131.766169 -13.75858, 131.76701 -13.75899, 131.76789 -13.75944, 131.76875 -13.75991, 131.76959 -13.76039, 131.77097 -13.76125, 131.77185 -13.76184, 131.77237 -13.7622, 131.772519 -13.7623, 131.77284 -13.76255, 131.77302 -13.76269, 131.773419 -13.763, 131.77409 -13.76352, 131.7747 -13.764, 131.77518 -13.76438, 131.77578 -13.7649, 131.77643 -13.76548, 131.77696 -13.76597, 131.777449 -13.76644, 131.77767 -13.76665, 131.778359 -13.76736, 131.77903 -13.76808, 131.77958 -13.76868, 131.78012 -13.7693, 131.78057 -13.76984, 131.781309 -13.77078, 131.78169 -13.77129, 131.782639 -13.77261, 131.78563 -13.7768, 131.78675 -13.77837, 131.78705 -13.77879, 131.78762 -13.77959, 131.788019 -13.78013, 131.78863 -13.78089, 131.7888 -13.78109, 131.78899 -13.78133, 131.78934 -13.78173, 131.78976 -13.78219, 131.790179 -13.78263, 131.7905 -13.78295, 131.79123 -13.78364, 131.79324 -13.78552, 131.79397 -13.78621, 131.795909 -13.78803, 131.79631 -13.78841, 131.79701 -13.7891, 131.79826 -13.79033, 131.79899 -13.79106, 131.79929 -13.79136, 131.800199 -13.79227, 131.802349 -13.7944, 131.80373 -13.79578, 131.804499 -13.79654, 131.80498 -13.79702, 131.80596 -13.798, 131.8075 -13.79952, 131.81027 -13.80228, 131.81325 -13.80525, 131.81379 -13.80578, 131.814609 -13.8066, 131.8149 -13.80689, 131.81619 -13.80817, 131.8169 -13.80888, 131.81805 -13.81001, 131.819089 -13.81104, 131.81926 -13.81121, 131.81975 -13.81166, 131.820169 -13.81199, 131.820619 -13.81229, 131.820979 -13.81251, 131.82147 -13.81278, 131.82183 -13.81295, 131.822229 -13.81312, 131.82256 -13.81325, 131.82296 -13.81338, 131.82334 -13.81349, 131.82373 -13.81358, 131.824199 -13.81367, 131.82442 -13.8137, 131.824639 -13.81372, 131.825189 -13.81378, 131.82561 -13.81381, 131.826 -13.81383, 131.82646 -13.81387, 131.82682 -13.81389, 131.827149 -13.81392, 131.82747 -13.81394, 131.82799 -13.81398, 131.82869 -13.81403, 131.82887 -13.81404, 131.82906 -13.81405, 131.829659 -13.8141, 131.8299 -13.81412, 131.830289 -13.81415, 131.83044 -13.81416, 131.83077 -13.81418, 131.831809 -13.81426, 131.83227 -13.81429, 131.83269 -13.81432, 131.83284 -13.81434, 131.83294 -13.81434, 131.83311 -13.81436, 131.83346 -13.81441, 131.8339 -13.81449, 131.83424 -13.81457, 131.8346 -13.81467, 131.835019 -13.8148, 131.835379 -13.81493, 131.835749 -13.81507, 131.83607 -13.81522, 131.836279 -13.81533, 131.83652 -13.81546, 131.83695 -13.81571, 131.83725 -13.8159, 131.837619 -13.81617, 131.83796 -13.81644, 131.83824 -13.81667, 131.83855 -13.81698, 131.83883 -13.81726, 131.83918 -13.81767, 131.83938 -13.81792, 131.83965 -13.81828, 131.839949 -13.81876, 131.8402 -13.81919, 131.84043 -13.81966, 131.84063 -13.82014, 131.8408 -13.82061, 131.840949 -13.82112, 131.84105 -13.82159, 131.84114 -13.82204, 131.84118 -13.82228, 131.84119 -13.82252, 131.84122 -13.8228, 131.84123 -13.82305, 131.84127 -13.82366, 131.841299 -13.82412, 131.84131 -13.82434, 131.84137 -13.82517, 131.841389 -13.82545, 131.8414 -13.82564, 131.84142 -13.82592, 131.84143 -13.82609, 131.84145 -13.82645, 131.841469 -13.82668, 131.84151 -13.82701, 131.84154 -13.8273, 131.84159 -13.82763, 131.841649 -13.82786, 131.84172 -13.82818, 131.841829 -13.8286, 131.84195 -13.82897, 131.84198 -13.82905, 131.84214 -13.82945, 131.842189 -13.82959, 131.84234 -13.82993, 131.84268 -13.83073, 131.843009 -13.83151, 131.843269 -13.83215, 131.84347 -13.83263, 131.84415 -13.83426, 131.84455 -13.83521, 131.84475 -13.83569, 131.84494 -13.83622, 131.845049 -13.83658, 131.84511 -13.83681, 131.84519 -13.83715, 131.84527 -13.83753, 131.845319 -13.83793, 131.84536 -13.8383, 131.84538 -13.83868, 131.8454 -13.8391, 131.84538 -13.83948, 131.84535 -13.83992, 131.84531 -13.84025, 131.84525 -13.84061, 131.84518 -13.8409, 131.84512 -13.84114, 131.84509 -13.8413, 131.84499 -13.84161, 131.844889 -13.84192, 131.84475 -13.84229, 131.84458 -13.8427, 131.84441 -13.84304, 131.84418 -13.84348, 131.84388 -13.84395, 131.84359 -13.84437, 131.84325 -13.84477, 131.84286 -13.84521, 131.84251 -13.84555, 131.84189 -13.84612, 131.84154 -13.84644, 131.84114 -13.84681, 131.840849 -13.8471, 131.84056 -13.84744, 131.8403 -13.84776, 131.840139 -13.84797, 131.84002 -13.84813, 131.83984 -13.84841, 131.83961 -13.84877, 131.83939 -13.84918, 131.83925 -13.84946, 131.83921 -13.84954, 131.839069 -13.84988, 131.83904 -13.84996, 131.838979 -13.8501, 131.83886 -13.85044, 131.83876 -13.85078, 131.83872 -13.85092, 131.83868 -13.85111, 131.83864 -13.85125, 131.838609 -13.85141, 131.83859 -13.85149, 131.83856 -13.85166, 131.838529 -13.85179, 131.8385 -13.85202, 131.838439 -13.85247, 131.83841 -13.85306, 131.83841 -13.85325, 131.83841 -13.85341, 131.838439 -13.85388, 131.83849 -13.85444, 131.83856 -13.85486, 131.838609 -13.85512, 131.83866 -13.85531, 131.838709 -13.85552, 131.83875 -13.85568, 131.83884 -13.856, 131.83912 -13.85703, 131.839229 -13.85743, 131.83947 -13.8583, 131.83963 -13.85889, 131.83985 -13.8597, 131.84011 -13.8607, 131.84033 -13.86162, 131.84061 -13.86279, 131.840849 -13.8639, 131.84106 -13.86492, 131.84144 -13.86677, 131.841659 -13.86788, 131.84214 -13.87021, 131.84244 -13.87169, 131.84275 -13.87322, 131.842999 -13.87441, 131.843259 -13.87572, 131.84332 -13.87601, 131.8435 -13.87686, 131.84386 -13.87862, 131.84403 -13.87948, 131.84409 -13.87975, 131.84433 -13.88094, 131.84456 -13.88206, 131.84473 -13.8829, 131.84493 -13.8839, 131.84517 -13.88502, 131.84555 -13.8869, 131.84566 -13.88745, 131.84579 -13.88808, 131.84591 -13.88861, 131.846049 -13.88919, 131.846219 -13.8898, 131.84637 -13.89035, 131.84643 -13.89058, 131.84664 -13.89125, 131.846849 -13.89188, 131.847119 -13.89266, 131.84734 -13.89326, 131.84762 -13.89399, 131.84786 -13.89455, 131.84821 -13.89536, 131.84857 -13.89612, 131.848809 -13.89662, 131.84905 -13.8971, 131.84937 -13.8977, 131.849529 -13.89801, 131.84973 -13.89836, 131.850069 -13.89896, 131.85032 -13.89937, 131.850619 -13.89985, 131.85092 -13.90033, 131.85137 -13.90103, 131.85171 -13.9015, 131.852049 -13.90199, 131.85234 -13.90238, 131.85263 -13.90277, 131.852669 -13.90282, 131.85296 -13.90319, 131.853469 -13.90383, 131.85385 -13.90428, 131.85443 -13.90495, 131.85483 -13.9054, 131.85565 -13.90626, 131.8563 -13.90691, 131.85694 -13.90751, 131.85766 -13.9082, 131.858319 -13.9088, 131.85904 -13.90947, 131.859929 -13.9103, 131.86112 -13.91141, 131.86255 -13.91274, 131.86365 -13.91377, 131.864939 -13.91496, 131.86525 -13.91524, 131.8657 -13.91566, 131.8668 -13.91668, 131.86909 -13.91881, 131.87068 -13.92029, 131.87204 -13.92156, 131.87323 -13.92266, 131.87495 -13.92426, 131.87574 -13.92499, 131.87634 -13.92556, 131.87724 -13.92639, 131.8777 -13.92682, 131.87844 -13.9275, 131.879349 -13.92836, 131.88001 -13.92896, 131.88071 -13.92961, 131.88162 -13.93046, 131.88236 -13.93115, 131.88298 -13.93172, 131.88359 -13.93229, 131.88456 -13.93319, 131.88568 -13.93423, 131.88613 -13.93465, 131.88644 -13.93494, 131.88683 -13.93531, 131.887149 -13.93561, 131.88753 -13.93596, 131.88798 -13.93638, 131.88827 -13.93666, 131.88856 -13.93696, 131.88887 -13.93729, 131.889029 -13.93747, 131.88924 -13.93772, 131.88955 -13.93809, 131.889839 -13.93846, 131.89012 -13.93883, 131.890449 -13.9393, 131.890639 -13.93958, 131.89075 -13.93975, 131.89079 -13.93982, 131.89097 -13.94011, 131.89121 -13.94052, 131.89141 -13.94089, 131.891879 -13.9418, 131.89226 -13.94255, 131.892699 -13.94343, 131.89313 -13.94428, 131.89352 -13.94505, 131.894039 -13.94606, 131.894299 -13.94658, 131.89441 -13.9468, 131.89509 -13.94816, 131.89545 -13.94887, 131.895569 -13.9491, 131.89605 -13.95005, 131.89629 -13.95053, 131.89632 -13.95059, 131.896449 -13.95085, 131.896809 -13.95152, 131.89716 -13.95215, 131.89741 -13.95258, 131.897719 -13.9531, 131.898069 -13.95364, 131.89844 -13.95419, 131.89875 -13.95463, 131.89881 -13.95472, 131.89922 -13.95528, 131.899939 -13.95622, 131.9001 -13.95642, 131.900389 -13.95679, 131.90095 -13.9575, 131.90203 -13.95889, 131.90298 -13.9601, 131.90413 -13.96158, 131.90481 -13.96244, 131.90578 -13.96369, 131.90597 -13.96393, 131.906119 -13.96413, 131.90619 -13.96422, 131.90645 -13.96454, 131.906849 -13.96504, 131.90751 -13.9659, 131.908009 -13.96654, 131.90857 -13.96726, 131.90912 -13.96795, 131.9101 -13.96921, 131.91064 -13.9699, 131.91104 -13.97041, 131.911589 -13.97111, 131.912749 -13.97259, 131.912839 -13.9727, 131.9138 -13.97393, 131.91411 -13.97433, 131.91438 -13.97468, 131.91486 -13.97531, 131.91497 -13.97545, 131.91566 -13.97636, 131.91601 -13.97683, 131.91639 -13.97736, 131.91693 -13.97812, 131.91745 -13.97886, 131.91801 -13.97967, 131.91817 -13.97991, 131.9185 -13.9804, 131.91897 -13.98113, 131.91941 -13.98182, 131.9199 -13.9826, 131.92042 -13.98342, 131.92077 -13.98402, 131.92112 -13.98461, 131.921699 -13.98563, 131.9223 -13.98669, 131.922779 -13.98758, 131.92338 -13.98872, 131.92418 -13.99033, 131.9246 -13.9912, 131.92498 -13.99199, 131.925279 -13.99265, 131.9256 -13.99336, 131.925999 -13.99426, 131.926359 -13.9951, 131.926729 -13.99598, 131.927169 -13.99704, 131.92778 -13.99848, 131.92811 -13.99925, 131.9284 -13.99995, 131.928769 -14.00083, 131.929129 -14.00166, 131.9292 -14.00182, 131.929319 -14.00212, 131.92943 -14.00237, 131.92952 -14.00259, 131.92993 -14.00356, 131.93032 -14.00448, 131.93063 -14.00519, 131.93087 -14.00577, 131.93118 -14.0065, 131.93163 -14.00755, 131.93188 -14.00816, 131.93208 -14.00863, 131.93221 -14.00892, 131.93241 -14.00942, 131.93256 -14.0098, 131.932619 -14.00996, 131.93268 -14.01004, 131.93275 -14.01018, 131.93284 -14.0104, 131.932989 -14.01075, 131.93319 -14.01123, 131.933249 -14.01139, 131.933439 -14.01185, 131.933619 -14.01229, 131.933889 -14.01291, 131.93419 -14.01362, 131.93441 -14.01413, 131.934609 -14.01462, 131.934959 -14.01543, 131.93535 -14.01635, 131.93579 -14.01739, 131.9362 -14.01836, 131.93669 -14.01951, 131.93724 -14.02082, 131.9376 -14.02166, 131.93789 -14.02235, 131.938279 -14.02327, 131.938719 -14.02429, 131.93892 -14.02478, 131.939249 -14.02556, 131.93964 -14.02646, 131.939979 -14.02728, 131.94021 -14.02783, 131.940339 -14.02813, 131.94058 -14.02869, 131.940699 -14.02895, 131.94083 -14.0292, 131.9411 -14.02968, 131.941319 -14.03001, 131.9416 -14.0304, 131.941759 -14.0306, 131.94199 -14.03085, 131.9422 -14.03108, 131.942389 -14.03127, 131.9426 -14.03147, 131.942839 -14.03168, 131.943289 -14.03203, 131.94375 -14.03236, 131.94414 -14.03263, 131.9445 -14.03288, 131.944619 -14.03296, 131.94488 -14.03314, 131.945439 -14.03353, 131.94564 -14.03367, 131.94592 -14.03388, 131.94671 -14.03441, 131.94708 -14.03466, 131.947319 -14.03483, 131.947589 -14.03502, 131.94782 -14.0352, 131.94805 -14.03536, 131.948289 -14.03557, 131.94868 -14.03593, 131.94896 -14.03622, 131.94908 -14.03636, 131.94918 -14.03649, 131.94931 -14.03673, 131.94948 -14.03696, 131.94971 -14.03731, 131.9498 -14.03746, 131.94996 -14.03773, 131.95011 -14.038, 131.95034 -14.03842, 131.95059 -14.03886, 131.95087 -14.03931, 131.95119 -14.03978, 131.95148 -14.04017, 131.95174 -14.04047, 131.952 -14.04076, 131.95226 -14.04103, 131.95236 -14.04113, 131.95273 -14.04148, 131.95306 -14.04176, 131.95361 -14.0422, 131.95417 -14.04263, 131.95487 -14.04318, 131.955459 -14.04365, 131.955909 -14.044, 131.95697 -14.04483, 131.957609 -14.04533, 131.958229 -14.04581, 131.95885 -14.0463, 131.95928 -14.04664, 131.95961 -14.04691, 131.95998 -14.04725, 131.96036 -14.04763, 131.960659 -14.04796, 131.96087 -14.0482, 131.96109 -14.04848, 131.96134 -14.0488, 131.96161 -14.04919, 131.96185 -14.04958, 131.96206 -14.04994, 131.96222 -14.05025, 131.96248 -14.05078, 131.96268 -14.0512, 131.96291 -14.05167, 131.96313 -14.05211, 131.96341 -14.0527, 131.963429 -14.05274, 131.96408 -14.05408, 131.96449 -14.05493, 131.964869 -14.05571, 131.96525 -14.05644, 131.96571 -14.05723, 131.96619 -14.05801, 131.96655 -14.05855, 131.96688 -14.05904, 131.96721 -14.05948, 131.96758 -14.05997, 131.9681 -14.06064, 131.96852 -14.06113, 131.968889 -14.06155, 131.96932 -14.06202, 131.97011 -14.06284, 131.97057 -14.06331, 131.971039 -14.06378, 131.971499 -14.06425, 131.97192 -14.06467, 131.97236 -14.06513, 131.97272 -14.0655, 131.97307 -14.06585, 131.97339 -14.06619, 131.97367 -14.06651, 131.973909 -14.06678, 131.97421 -14.06714, 131.974709 -14.06777, 131.97512 -14.06828, 131.97545 -14.0687, 131.97585 -14.06922, 131.976419 -14.06997, 131.97665 -14.07026, 131.97751 -14.0714, 131.97783 -14.07182, 131.97815 -14.07222, 131.97841 -14.07253, 131.97879 -14.07295, 131.978929 -14.0731, 131.97927 -14.07345, 131.979539 -14.07372, 131.97977 -14.07394, 131.98001 -14.07415, 131.98021 -14.07432, 131.98052 -14.07458, 131.98084 -14.07483, 131.981079 -14.07501, 131.98127 -14.07515, 131.981699 -14.07546, 131.98216 -14.07577, 131.98284 -14.07625, 131.9833 -14.07659, 131.98377 -14.07697, 131.98418 -14.07731, 131.9846 -14.07768, 131.98487 -14.07793, 131.98518 -14.07825, 131.98544 -14.07853, 131.98576 -14.07887, 131.98602 -14.07918, 131.98638 -14.07963, 131.98674 -14.08011, 131.98705 -14.08055, 131.98736 -14.08103, 131.98765 -14.08153, 131.98794 -14.08205, 131.98826 -14.08268, 131.988499 -14.08324, 131.988679 -14.08365, 131.98888 -14.0842, 131.988949 -14.0844, 131.989039 -14.08466, 131.98915 -14.08503, 131.98925 -14.08537, 131.98938 -14.08589, 131.98946 -14.08627, 131.98953 -14.08663, 131.98961 -14.0871, 131.98971 -14.08775, 131.989749 -14.08818, 131.98978 -14.08852, 131.9898 -14.08895, 131.98981 -14.08952, 131.9898 -14.09008, 131.98978 -14.09054, 131.989759 -14.09086, 131.98972 -14.09134, 131.98963 -14.092, 131.98953 -14.09268, 131.989499 -14.09285, 131.989489 -14.09291, 131.98938 -14.09365, 131.98936 -14.09378, 131.98926 -14.09445, 131.989 -14.09617, 131.98872 -14.098, 131.98853 -14.09923, 131.98848 -14.09952, 131.98846 -14.09967, 131.988409 -14.10002, 131.98831 -14.10072, 131.98829 -14.10082, 131.98827 -14.10095, 131.98821 -14.10138, 131.98808 -14.10225, 131.98801 -14.10274, 131.98793 -14.10326, 131.98789 -14.10364, 131.98784 -14.10409, 131.98781 -14.10454, 131.987789 -14.10484, 131.987779 -14.10499, 131.98777 -14.10558, 131.98777 -14.10633, 131.987789 -14.10714, 131.98784 -14.10786, 131.98791 -14.10845, 131.98799 -14.10906, 131.988049 -14.10948, 131.98813 -14.10995, 131.988229 -14.11044, 131.988319 -14.11085, 131.988409 -14.11122, 131.98855 -14.11174, 131.988689 -14.11222, 131.98882 -14.11265, 131.988959 -14.11305, 131.98918 -14.11366, 131.98945 -14.11433, 131.989669 -14.11483, 131.98978 -14.11507, 131.989839 -14.11521, 131.99019 -14.11591, 131.990469 -14.11643, 131.990919 -14.11723, 131.99153 -14.1183, 131.99175 -14.11867, 131.99184 -14.11883, 131.992269 -14.11959, 131.99258 -14.12014, 131.992889 -14.1207, 131.99312 -14.12116, 131.99337 -14.1217, 131.993509 -14.12202, 131.99368 -14.12241, 131.993789 -14.12269, 131.99391 -14.12299, 131.994049 -14.12337, 131.99417 -14.12373, 131.99431 -14.12418, 131.994419 -14.12457, 131.994589 -14.12518, 131.99473 -14.12573, 131.99491 -14.12638, 131.99528 -14.12775, 131.995759 -14.12951, 131.99595 -14.13023, 131.99622 -14.13121, 131.996469 -14.13211, 131.99687 -14.13355, 131.997109 -14.13445, 131.997269 -14.13503, 131.997449 -14.1356, 131.99753 -14.13585, 131.997639 -14.13619, 131.99785 -14.13674, 131.99811 -14.13738, 131.99832 -14.13786, 131.99855 -14.13838, 131.99879 -14.13886, 131.999079 -14.13939, 131.99938 -14.13991, 131.99999 -14.14089, 132.00038 -14.1415, 132.0009 -14.14233, 132.000959 -14.14243, 132.00187 -14.14388, 132.00252 -14.1449, 132.002929 -14.14555, 132.00347 -14.14641, 132.00378 -14.14691, 132.00415 -14.14749, 132.004629 -14.14826, 132.00495 -14.14876, 132.00546 -14.14958, 132.00628 -14.15088, 132.00711 -14.1522, 132.00858 -14.15453, 132.00929 -14.15566, 132.00986 -14.15655, 132.01051 -14.15759, 132.01112 -14.15856, 132.01154 -14.15923, 132.01192 -14.15988, 132.012229 -14.16032, 132.01228 -14.16039, 132.01236 -14.16052, 132.01246 -14.16069, 132.012869 -14.16135, 132.01368 -14.16263, 132.01426 -14.16356, 132.01452 -14.16397, 132.014919 -14.1646, 132.01512 -14.16492, 132.01559 -14.16567, 132.016259 -14.16673, 132.01665 -14.16735, 132.016969 -14.16786, 132.0173 -14.16838, 132.01826 -14.16989, 132.01843 -14.17015, 132.018509 -14.17022, 132.018579 -14.17033, 132.01871 -14.17052, 132.01889 -14.17078, 132.01914 -14.17112, 132.01933 -14.17139, 132.01979 -14.17198, 132.01995 -14.17216, 132.02062 -14.17297, 132.02103 -14.17342, 132.021459 -14.17385, 132.02169 -14.17407, 132.02221 -14.17454, 132.02274 -14.175, 132.02323 -14.17538, 132.023789 -14.17583, 132.02452 -14.17635, 132.02525 -14.17682, 132.02554 -14.177, 132.026209 -14.1774, 132.027269 -14.17801, 132.02777 -14.17829, 132.02878 -14.17888, 132.02936 -14.17923, 132.029689 -14.17944, 132.02993 -14.17959, 132.03013 -14.17972, 132.03027 -14.17982, 132.03057 -14.18002, 132.03117 -14.18048, 132.03188 -14.18108, 132.032279 -14.18144, 132.03266 -14.18182, 132.03305 -14.18222, 132.03335 -14.18259, 132.03358 -14.18286, 132.033899 -14.18324, 132.03395 -14.18331, 132.034079 -14.18347, 132.034259 -14.18368, 132.03451 -14.18401, 132.03464 -14.1842, 132.03486 -14.18453, 132.035069 -14.18486, 132.03522 -14.1851, 132.03555 -14.18568, 132.03576 -14.18609, 132.035959 -14.18648, 132.036219 -14.18706, 132.03652 -14.18783, 132.03665 -14.18818, 132.03675 -14.18846, 132.036849 -14.18877, 132.03693 -14.18903, 132.03707 -14.18954, 132.0372 -14.19003, 132.03727 -14.19031, 132.03732 -14.19057, 132.03742 -14.19114, 132.037489 -14.19162, 132.037579 -14.19248, 132.03763 -14.19295, 132.03768 -14.19342, 132.03774 -14.19394, 132.037759 -14.19411, 132.03777 -14.19427, 132.037749 -14.19439, 132.03779 -14.19477, 132.03786 -14.19544, 132.037929 -14.19614, 132.03801 -14.19688, 132.03804 -14.19718, 132.03808 -14.19757, 132.03815 -14.19826, 132.03845 -14.20114, 132.03852 -14.2019, 132.03861 -14.20303, 132.03885 -14.20632, 132.03906 -14.20912, 132.039099 -14.20964, 132.039179 -14.21062, 132.03924 -14.2115, 132.03934 -14.21276, 132.03948 -14.2147, 132.03958 -14.21598, 132.03967 -14.21723, 132.03976 -14.2184, 132.0401 -14.22278, 132.04028 -14.22522, 132.0404 -14.22673, 132.04046 -14.22732, 132.04054 -14.22789, 132.04064 -14.22851, 132.04081 -14.22939, 132.04096 -14.23, 132.04112 -14.23058, 132.041329 -14.2312, 132.041519 -14.23172, 132.041699 -14.23223, 132.041869 -14.23262, 132.042059 -14.23305, 132.0426 -14.23414, 132.043039 -14.23492, 132.04337 -14.23543, 132.0437 -14.23593, 132.04441 -14.23689, 132.044829 -14.23742, 132.045179 -14.23784, 132.04562 -14.2383, 132.046069 -14.23875, 132.04821 -14.24086, 132.04924 -14.24188, 132.04978 -14.24242, 132.05021 -14.24284, 132.05143 -14.24403, 132.05212 -14.2447, 132.05502 -14.24756, 132.05577 -14.2483, 132.0567 -14.24921, 132.05714 -14.24965, 132.05738 -14.24989, 132.05757 -14.25009, 132.05809 -14.25063, 132.05856 -14.25112, 132.05892 -14.25153, 132.05932 -14.25196, 132.05955 -14.25224, 132.060309 -14.25312, 132.06106 -14.25403, 132.06161 -14.25473, 132.06225 -14.25558, 132.06287 -14.25642, 132.0629 -14.25646, 132.06359 -14.25745, 132.06388 -14.25788, 132.06432 -14.25854, 132.06486 -14.25939, 132.06518 -14.25991, 132.06557 -14.26057, 132.0658 -14.26096, 132.06618 -14.26163, 132.06626 -14.26177, 132.06644 -14.26209, 132.06651 -14.26221, 132.06666 -14.26248, 132.066859 -14.26284, 132.06741 -14.26393, 132.067929 -14.26501, 132.0684 -14.26602, 132.06895 -14.26731, 132.06947 -14.2686, 132.069719 -14.26925, 132.06996 -14.26992, 132.07032 -14.27099, 132.07059 -14.27179, 132.07086 -14.27269, 132.071149 -14.2737, 132.071409 -14.27466, 132.07153 -14.27514, 132.07179 -14.27625, 132.07199 -14.27715, 132.07216 -14.27794, 132.07234 -14.27877, 132.07264 -14.28013, 132.07272 -14.28054, 132.072849 -14.28118, 132.07311 -14.28237, 132.0732 -14.28277, 132.07334 -14.28339, 132.073489 -14.28398, 132.073749 -14.28484, 132.07399 -14.28553, 132.0743 -14.28634, 132.07459 -14.28703, 132.07485 -14.28757, 132.074919 -14.28773, 132.07529 -14.28845, 132.07556 -14.28895, 132.07579 -14.28933, 132.076169 -14.28996, 132.07649 -14.29048, 132.07677 -14.29088, 132.07727 -14.29154, 132.077779 -14.29217, 132.0782 -14.29265, 132.07902 -14.29352, 132.07951 -14.294, 132.080369 -14.29478, 132.081089 -14.29537, 132.08152 -14.2957, 132.08209 -14.29612, 132.08299 -14.29674, 132.08383 -14.29724, 132.084579 -14.29766, 132.08541 -14.29812, 132.08755 -14.2993, 132.08886 -14.30001, 132.08966 -14.30045, 132.090039 -14.30066, 132.09043 -14.30087, 132.090859 -14.3011, 132.090939 -14.30115, 132.09176 -14.30161, 132.09195 -14.30172, 132.09209 -14.30179, 132.09251 -14.30203, 132.09296 -14.30229, 132.09302 -14.30233, 132.0933 -14.3025, 132.09333 -14.30252, 132.09361 -14.3027, 132.09382 -14.30284, 132.09409 -14.30304, 132.09432 -14.30321, 132.094439 -14.30331, 132.09448 -14.30334, 132.09477 -14.3036, 132.09519 -14.304, 132.09534 -14.30414, 132.095589 -14.30441, 132.095769 -14.30461, 132.09593 -14.30481, 132.096219 -14.30517, 132.09669 -14.30577, 132.09763 -14.30698, 132.09796 -14.30741, 132.09839 -14.30796, 132.09942 -14.30929, 132.099799 -14.30977, 132.100519 -14.31067, 132.10112 -14.31143, 132.10148 -14.3119, 132.102039 -14.31259, 132.10246 -14.31312, 132.10332 -14.31422, 132.10412 -14.31525, 132.10436 -14.31556, 132.104719 -14.316, 132.10505 -14.31641, 132.106509 -14.31828, 132.10971 -14.32233, 132.10988 -14.32255, 132.11051 -14.32336, 132.110809 -14.32372, 132.11103 -14.32395, 132.111359 -14.3243, 132.111799 -14.32469, 132.11185 -14.32473, 132.112249 -14.32503, 132.11262 -14.32528, 132.112699 -14.32533, 132.11345 -14.32578, 132.11472 -14.32653, 132.11555 -14.32703, 132.11652 -14.32763, 132.117079 -14.32801, 132.117539 -14.32837, 132.11783 -14.32862, 132.118079 -14.32887, 132.1184 -14.32919, 132.118599 -14.32942, 132.11881 -14.32968, 132.11894 -14.32985, 132.11904 -14.32999, 132.11911 -14.33009, 132.11925 -14.3303, 132.11957 -14.33082, 132.11989 -14.33137, 132.12056 -14.33251, 132.12081 -14.33294, 132.12151 -14.33413, 132.12231 -14.33549, 132.122729 -14.33619, 132.12289 -14.33644, 132.12304 -14.33668, 132.1232 -14.33689, 132.12337 -14.33712, 132.1235 -14.33728, 132.12358 -14.33737, 132.12368 -14.33748, 132.123899 -14.33771, 132.12404 -14.33786, 132.1241 -14.33791, 132.12418 -14.33799, 132.124339 -14.33814, 132.124609 -14.33838, 132.12519 -14.33889, 132.12536 -14.33904, 132.126129 -14.3397, 132.12641 -14.33994, 132.126669 -14.34016, 132.12722 -14.34064, 132.12781 -14.34116, 132.12835 -14.34162, 132.1295 -14.34262, 132.13036 -14.34337, 132.13116 -14.34406, 132.13457 -14.34703, 132.13511 -14.3475, 132.13565 -14.34801, 132.13587 -14.34825, 132.13595 -14.34834, 132.13609 -14.34851, 132.136329 -14.34881, 132.13645 -14.34896, 132.13659 -14.34917, 132.13668 -14.34931, 132.136779 -14.34947, 132.13689 -14.34965, 132.13702 -14.34989, 132.13719 -14.35022, 132.137319 -14.35051, 132.1374 -14.35071, 132.13748 -14.35091, 132.137589 -14.35124, 132.13766 -14.35148, 132.13771 -14.35167, 132.137759 -14.35187, 132.13781 -14.35212, 132.137849 -14.35234, 132.13789 -14.35257, 132.137939 -14.35289, 132.13801 -14.35338, 132.13807 -14.35382, 132.13825 -14.35526, 132.13832 -14.35576, 132.13847 -14.35693, 132.13852 -14.35736, 132.13862 -14.35811, 132.13874 -14.35879, 132.1388 -14.35905, 132.13887 -14.35934, 132.13896 -14.35963, 132.13909 -14.35999, 132.13928 -14.36043, 132.13944 -14.36077, 132.139659 -14.36118, 132.13988 -14.36155, 132.14017 -14.36198, 132.14042 -14.36229, 132.140629 -14.36254, 132.140819 -14.36275, 132.14105 -14.36298, 132.141449 -14.36335, 132.141709 -14.36356, 132.14201 -14.36379, 132.14236 -14.36402, 132.14272 -14.36425, 132.14307 -14.36444, 132.143229 -14.36453, 132.14339 -14.36462, 132.14354 -14.36471, 132.14415 -14.36506, 132.14462 -14.36533, 132.145029 -14.36557, 132.14559 -14.36589, 132.14594 -14.36609, 132.14777 -14.36714, 132.149499 -14.36813, 132.150929 -14.36894, 132.15251 -14.36985, 132.15307 -14.37017, 132.15396 -14.37068, 132.15561 -14.37162, 132.155859 -14.37177, 132.15625 -14.372, 132.15656 -14.37218, 132.15673 -14.3723, 132.15696 -14.37246, 132.15719 -14.37263, 132.157299 -14.37272, 132.15749 -14.37288, 132.15826 -14.37352, 132.15869 -14.37385, 132.15887 -14.37398, 132.15904 -14.3741, 132.1592 -14.37421, 132.15947 -14.37437, 132.15986 -14.37459, 132.160159 -14.37475, 132.16041 -14.37488, 132.16152 -14.37546, 132.162399 -14.37592, 132.16327 -14.37638, 132.16421 -14.37688, 132.165069 -14.37732, 132.16575 -14.37768, 132.16626 -14.37794, 132.16656 -14.37811, 132.16747 -14.37858, 132.16757 -14.37863, 132.16772 -14.37871, 132.16865 -14.37919, 132.16936 -14.37956, 132.16979 -14.37978, 132.17154 -14.38069, 132.17265 -14.38126, 132.17345 -14.38169, 132.17365 -14.3818, 132.17388 -14.38194, 132.174129 -14.38211, 132.17432 -14.38225, 132.174489 -14.38238, 132.17471 -14.38256, 132.17498 -14.38282, 132.17515 -14.38299, 132.17536 -14.38321, 132.17559 -14.38349, 132.175649 -14.38357, 132.17576 -14.38372, 132.17598 -14.38404, 132.176179 -14.38438, 132.17632 -14.38462, 132.176549 -14.38511, 132.17666 -14.3854, 132.17675 -14.38566, 132.17687 -14.38609, 132.17695 -14.38642, 132.17703 -14.38698, 132.17714 -14.38808, 132.177249 -14.38895, 132.177349 -14.38978, 132.1775 -14.39114, 132.17773 -14.39319, 132.17778 -14.39364, 132.17787 -14.39426, 132.17793 -14.39457, 132.17802 -14.39493, 132.17809 -14.39522, 132.1782 -14.39556, 132.17836 -14.39596, 132.1785 -14.39627, 132.17867 -14.39662, 132.17909 -14.39741, 132.17953 -14.39824, 132.18087 -14.40076, 132.18124 -14.40145, 132.181379 -14.40171, 132.18145 -14.40184, 132.181549 -14.40202, 132.18177 -14.40239, 132.18202 -14.40277, 132.18225 -14.40307, 132.18247 -14.40333, 132.18269 -14.40357, 132.18309 -14.40395, 132.183429 -14.40423, 132.18384 -14.40452, 132.184239 -14.40477, 132.18464 -14.40498, 132.18506 -14.40517, 132.18545 -14.40532, 132.18583 -14.40544, 132.18617 -14.40553, 132.18682 -14.40567, 132.18838 -14.40599, 132.19169 -14.40667, 132.19414 -14.40717, 132.19556 -14.40747, 132.19755 -14.40789, 132.19858 -14.4081, 132.19952 -14.40829, 132.19975 -14.40833, 132.19995 -14.40837, 132.20114 -14.40862, 132.20196 -14.40879, 132.2024 -14.40888, 132.20272 -14.40895, 132.20306 -14.40903, 132.20342 -14.40913, 132.20373 -14.40923, 132.20409 -14.40938, 132.20454 -14.40957, 132.20478 -14.40969, 132.20514 -14.40988, 132.2056 -14.41016, 132.20604 -14.41048, 132.20646 -14.41082, 132.20679 -14.41112, 132.20715 -14.41148, 132.207339 -14.41169, 132.2075 -14.41188, 132.20773 -14.41218, 132.207969 -14.41252, 132.20826 -14.413, 132.208419 -14.41329, 132.20858 -14.41362, 132.20875 -14.41398, 132.209129 -14.41482, 132.209409 -14.41545, 132.21055 -14.41792, 132.21142 -14.41982, 132.212079 -14.42126, 132.21328 -14.42389, 132.21385 -14.42513, 132.21411 -14.42565, 132.21439 -14.42615, 132.21465 -14.42657, 132.215039 -14.42713, 132.21534 -14.42753, 132.21579 -14.42809, 132.216119 -14.42846, 132.21645 -14.42881, 132.216919 -14.42927, 132.21733 -14.42963, 132.21772 -14.42995, 132.218169 -14.43029, 132.21859 -14.43059, 132.2195 -14.43115, 132.21994 -14.43141, 132.220509 -14.43175, 132.22097 -14.43203, 132.22187 -14.43257, 132.222209 -14.43276, 132.22285 -14.43315, 132.22312 -14.43331, 132.22413 -14.4339, 132.22502 -14.43443, 132.22638 -14.43524, 132.227589 -14.43596, 132.22966 -14.43719, 132.23016 -14.43749, 132.23139 -14.43822, 132.23291 -14.43913, 132.23351 -14.4395, 132.23407 -14.43987, 132.23442 -14.44011, 132.23486 -14.44043, 132.2367 -14.44179, 132.23786 -14.44265, 132.238769 -14.44333, 132.23953 -14.4439, 132.239929 -14.44419, 132.24025 -14.44444, 132.24055 -14.44469, 132.240929 -14.44502, 132.24124 -14.44532, 132.24156 -14.44564, 132.24185 -14.44595, 132.24204 -14.44616, 132.242259 -14.44641, 132.24255 -14.44675, 132.24273 -14.44696, 132.24288 -14.44714, 132.243879 -14.44833, 132.24402 -14.44849, 132.244319 -14.44885, 132.2447 -14.4493, 132.24488 -14.44951, 132.24519 -14.44988, 132.245319 -14.45003, 132.24543 -14.45016, 132.24563 -14.45039, 132.245929 -14.45073, 132.246289 -14.45116, 132.24649 -14.4514, 132.24699 -14.45199, 132.24735 -14.45241, 132.24757 -14.45267, 132.24766 -14.45278, 132.247819 -14.45297, 132.24797 -14.45314, 132.24825 -14.45346, 132.24849 -14.45372, 132.2487 -14.45393, 132.24891 -14.45412, 132.249149 -14.45434, 132.24946 -14.4546, 132.2501 -14.45511, 132.251129 -14.45593, 132.25138 -14.45613, 132.2516 -14.45631, 132.251749 -14.45642, 132.252029 -14.45663, 132.25219 -14.45676, 132.25264 -14.45711, 132.253189 -14.45752, 132.25388 -14.45805, 132.256599 -14.46016, 132.25732 -14.46071, 132.25736 -14.46074, 132.25772 -14.46102, 132.257939 -14.4612, 132.258299 -14.46146, 132.25899 -14.46201, 132.25906 -14.46206, 132.25916 -14.46214, 132.25948 -14.46239, 132.25956 -14.46245, 132.259639 -14.46252, 132.25974 -14.4626, 132.25998 -14.46278, 132.2603 -14.46303, 132.26048 -14.46317, 132.26055 -14.46322, 132.2607 -14.46333, 132.26111 -14.46365, 132.26155 -14.464, 132.26209 -14.46442, 132.26245 -14.4647, 132.26264 -14.46485, 132.26325 -14.46531, 132.26338 -14.46541, 132.263749 -14.46569, 132.26436 -14.46612, 132.2646 -14.46629, 132.264819 -14.46644, 132.26495 -14.46653, 132.26522 -14.46672, 132.26541 -14.46686, 132.26601 -14.46726, 132.26632 -14.46746, 132.266449 -14.46755, 132.26655 -14.46761, 132.266809 -14.46778, 132.26702 -14.46789, 132.26736 -14.46806, 132.26781 -14.46824, 132.26826 -14.46838, 132.26857 -14.46846, 132.26905 -14.46857, 132.2692 -14.46861, 132.270299 -14.46887, 132.27051 -14.46892, 132.27093 -14.46901, 132.27125 -14.46907, 132.27186 -14.46916, 132.273329 -14.46938, 132.274229 -14.46953, 132.27471 -14.46961, 132.2756 -14.46981, 132.27577 -14.46985, 132.27599 -14.46991, 132.276209 -14.46996, 132.27636 -14.47004, 132.276559 -14.4701, 132.27671 -14.47015, 132.27676 -14.47017, 132.2768 -14.47019, 132.276829 -14.47021, 132.27686 -14.47024, 132.27689 -14.47029, 132.276909 -14.47034, 132.276919 -14.47038, 132.27694 -14.47052, 132.27607 -14.4703, 132.27529 -14.47011, 132.27443 -14.46992, 132.273689 -14.4698, 132.2728986177 -14.4696846157)" \ No newline at end of file diff --git a/solarcar-map/introduction/files/speed.csv b/solarcar-map/introduction/files/speed.csv new file mode 100644 index 000000000..e60fc4bef --- /dev/null +++ b/solarcar-map/introduction/files/speed.csv @@ -0,0 +1,12 @@ +SEGMENT_ID,SEGMENT_STATUS,AVG_VEHICLE_VELOCITY_KPH +1,Done,78.11730668546480766213684765440296934869 +2,Done,90.70069516685338453092020069533406126545 +3,Done,95.36681259024685220957578629750992064388 +4,Done,96.09432682323658214395506924488258056806 +5,Done,82.74687666532738282314680352467030806643 +6,Done,82.39477782158346736713138121813920900687 +7,Done,74.93903015581501167957995092221167601666 +8,Done,82.34852584694210836570213412318675476574 +9,Done,76.63761937385070046485002147516874617265 +10,Done,81.47175682252274193366294136702299967605 +11,Done,31.15852480365462928325524635260537808333 \ No newline at end of file diff --git a/solarcar-map/introduction/images/racepic-solarcar.JPG b/solarcar-map/introduction/images/racepic-solarcar.JPG new file mode 100644 index 000000000..11d2b4067 Binary files /dev/null and b/solarcar-map/introduction/images/racepic-solarcar.JPG differ diff --git a/solarcar-map/introduction/images/route-solarcar.png b/solarcar-map/introduction/images/route-solarcar.png new file mode 100644 index 000000000..788291fef Binary files /dev/null and b/solarcar-map/introduction/images/route-solarcar.png differ diff --git a/solarcar-map/introduction/introduction.md b/solarcar-map/introduction/introduction.md new file mode 100644 index 000000000..a9027c2c2 --- /dev/null +++ b/solarcar-map/introduction/introduction.md @@ -0,0 +1,47 @@ +# Develop an Interactive Map of a Racetrack: Solar Car Race Across Australia + +## Introduction + +In August 2025, the University of Michigan Solar Car Team joined top student engineering teams from around the world in the Solar Car Race across Australia, covering more than 3,000 km from Darwin to Adelaide. Powered solely by the sun, the team navigated the vast Australian outback with precision and endurance, ultimately finishing 7th overall. Oracle supported their journey with Oracle Cloud Infrastructure, powering interactive maps that tracked real-time progress and delivered performance insights along this iconic route. + +![a map of Australia showing the route of the Solar Car Race from Darwin to Port Augusta](./images/route-solarcar.png) + +### About this Workshop + +Oracle Analytics Cloud supports the configuration of numerous [map background](https://docs.oracle.com/en/cloud/paas/analytics-cloud/acubi/apply-map-backgrounds-and-map-layers-enhance-visualizations.html) types that can be used to visualize your data to tell a story in a way that no conventional map could. Enhancing the map with information such as historical race results, weather conditions, speed, turn and altitude variations and driver statistics makes for a more powerful interactive presentation. + +In this hands-on lab you will learn how to create this interactive map. Let’s see how +simple it is to do. + +![University of Michigan solar car racing along the Australian outback track under a clear sky, surrounded by sparse vegetation and open landscape, conveying a sense of determination and adventure](./images/racepic-solarcar.JPG =90%x90%) + +_Estimated Time:_ 50 minutes + +### Objectives + +In this workshop, you will learn how to create a custom interactive map for the solar car race using real-world data. Specifically, you will: + +- Download the csv files provided in resources section + +- Load data into OAC as Datasets + +- Build a map with multiple layers in OAC + +By the end of this workshop, you will have built a fully layered and interactive map that visualizes the key components of a solar car race. + +_At this point, you are ready to start learning! Please proceed._ + +_Resources:_ + +This lab includes three csv files. Please download and save them to a folder of your choice: + +- [route](./files/route.csv?download=1) +- [speed](./files/speed.csv?download=1) +- [live location](./files/live%20location.csv?download=1) + +_Note:_The route was first generated on OpenStreetMap, exported as GeoJSON, and then converted into a csv file containing Well-Known Text (WKT) geometry. This format provides a standardized way of representing geographic features such as points, lines, and polygons. For simplicity, we have provided the csv, ready to use directly for this live lab. + +## **Acknowledgements** + +- **Author** - Anita Gupta (Oracle Analytics Product Strategy) +- **Contributors** - Gautam Pisharam (Oracle Analytics Product Management) diff --git a/solarcar-map/map-layersCopy/images/51-CreateWorkbook.jpg b/solarcar-map/map-layersCopy/images/51-CreateWorkbook.jpg new file mode 100644 index 000000000..2b733d6a5 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/51-CreateWorkbook.jpg differ diff --git a/solarcar-map/map-layersCopy/images/52-Add-both-data.png b/solarcar-map/map-layersCopy/images/52-Add-both-data.png new file mode 100644 index 000000000..7bbac2a7b Binary files /dev/null and b/solarcar-map/map-layersCopy/images/52-Add-both-data.png differ diff --git a/solarcar-map/map-layersCopy/images/53-The-data-pane-should-look-like-this.png b/solarcar-map/map-layersCopy/images/53-The-data-pane-should-look-like-this.png new file mode 100644 index 000000000..454d26cdd Binary files /dev/null and b/solarcar-map/map-layersCopy/images/53-The-data-pane-should-look-like-this.png differ diff --git a/solarcar-map/map-layersCopy/images/54-Add-country-and-change-viz-to-maps.jpg b/solarcar-map/map-layersCopy/images/54-Add-country-and-change-viz-to-maps.jpg new file mode 100644 index 000000000..6bc615e0e Binary files /dev/null and b/solarcar-map/map-layersCopy/images/54-Add-country-and-change-viz-to-maps.jpg differ diff --git a/solarcar-map/map-layersCopy/images/54.1 ExpandLivedataset.png b/solarcar-map/map-layersCopy/images/54.1 ExpandLivedataset.png new file mode 100644 index 000000000..2a71645fb Binary files /dev/null and b/solarcar-map/map-layersCopy/images/54.1 ExpandLivedataset.png differ diff --git a/solarcar-map/map-layersCopy/images/54.2select_map_viz.png b/solarcar-map/map-layersCopy/images/54.2select_map_viz.png new file mode 100644 index 000000000..7d7038031 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/54.2select_map_viz.png differ diff --git a/solarcar-map/map-layersCopy/images/54.3proerties_panel.png b/solarcar-map/map-layersCopy/images/54.3proerties_panel.png new file mode 100644 index 000000000..7125adb27 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/54.3proerties_panel.png differ diff --git a/solarcar-map/map-layersCopy/images/54.4retrun_to_grammar_pane.png b/solarcar-map/map-layersCopy/images/54.4retrun_to_grammar_pane.png new file mode 100644 index 000000000..a38262cf9 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/54.4retrun_to_grammar_pane.png differ diff --git a/solarcar-map/map-layersCopy/images/55-Map-change-layer-and-add-color.jpg b/solarcar-map/map-layersCopy/images/55-Map-change-layer-and-add-color.jpg new file mode 100644 index 000000000..7553b3af6 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/55-Map-change-layer-and-add-color.jpg differ diff --git a/solarcar-map/map-layersCopy/images/56-Add-Layer-2-to-Map.jpg b/solarcar-map/map-layersCopy/images/56-Add-Layer-2-to-Map.jpg new file mode 100644 index 000000000..9464c6f9e Binary files /dev/null and b/solarcar-map/map-layersCopy/images/56-Add-Layer-2-to-Map.jpg differ diff --git a/solarcar-map/map-layersCopy/images/56.1properties_again.png b/solarcar-map/map-layersCopy/images/56.1properties_again.png new file mode 100644 index 000000000..a36ccaf40 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/56.1properties_again.png differ diff --git a/solarcar-map/map-layersCopy/images/56.2change_name.png b/solarcar-map/map-layersCopy/images/56.2change_name.png new file mode 100644 index 000000000..efd1ef5af Binary files /dev/null and b/solarcar-map/map-layersCopy/images/56.2change_name.png differ diff --git a/solarcar-map/map-layersCopy/images/56.3color_route.png b/solarcar-map/map-layersCopy/images/56.3color_route.png new file mode 100644 index 000000000..e33090e93 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/56.3color_route.png differ diff --git a/solarcar-map/map-layersCopy/images/56.4changecolorofroute2.png b/solarcar-map/map-layersCopy/images/56.4changecolorofroute2.png new file mode 100644 index 000000000..7a89a9ad8 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/56.4changecolorofroute2.png differ diff --git a/solarcar-map/map-layersCopy/images/57-Add-Route-and-Speed-to-layer-2.jpg b/solarcar-map/map-layersCopy/images/57-Add-Route-and-Speed-to-layer-2.jpg new file mode 100644 index 000000000..c9fce1404 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/57-Add-Route-and-Speed-to-layer-2.jpg differ diff --git a/solarcar-map/map-layersCopy/images/58-Add-color-to-Layer-2-and-rename-layer-2-as-route.jpg b/solarcar-map/map-layersCopy/images/58-Add-color-to-Layer-2-and-rename-layer-2-as-route.jpg new file mode 100644 index 000000000..6af433342 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/58-Add-color-to-Layer-2-and-rename-layer-2-as-route.jpg differ diff --git a/solarcar-map/map-layersCopy/images/59-Add-layer-3.jpg b/solarcar-map/map-layersCopy/images/59-Add-layer-3.jpg new file mode 100644 index 000000000..a7ea4773a Binary files /dev/null and b/solarcar-map/map-layersCopy/images/59-Add-layer-3.jpg differ diff --git a/solarcar-map/map-layersCopy/images/59.1-Add-Segment-name-to-Layer-3.jpg b/solarcar-map/map-layersCopy/images/59.1-Add-Segment-name-to-Layer-3.jpg new file mode 100644 index 000000000..b36cb470d Binary files /dev/null and b/solarcar-map/map-layersCopy/images/59.1-Add-Segment-name-to-Layer-3.jpg differ diff --git a/solarcar-map/map-layersCopy/images/60-Add-layer-3-Properties.jpg b/solarcar-map/map-layersCopy/images/60-Add-layer-3-Properties.jpg new file mode 100644 index 000000000..0f39c87ce Binary files /dev/null and b/solarcar-map/map-layersCopy/images/60-Add-layer-3-Properties.jpg differ diff --git a/solarcar-map/map-layersCopy/images/61-Add-Layer-4.jpg b/solarcar-map/map-layersCopy/images/61-Add-Layer-4.jpg new file mode 100644 index 000000000..7eab6ac78 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/61-Add-Layer-4.jpg differ diff --git a/solarcar-map/map-layersCopy/images/62-Add-elements-to-Layer4.jpg b/solarcar-map/map-layersCopy/images/62-Add-elements-to-Layer4.jpg new file mode 100644 index 000000000..02791b9a5 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/62-Add-elements-to-Layer4.jpg differ diff --git a/solarcar-map/map-layersCopy/images/63-Custom-shape-of-Car.jpg b/solarcar-map/map-layersCopy/images/63-Custom-shape-of-Car.jpg new file mode 100644 index 000000000..b59cffbdb Binary files /dev/null and b/solarcar-map/map-layersCopy/images/63-Custom-shape-of-Car.jpg differ diff --git a/solarcar-map/map-layersCopy/images/64-Live-Race-properties-add.jpg b/solarcar-map/map-layersCopy/images/64-Live-Race-properties-add.jpg new file mode 100644 index 000000000..af13791e3 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/64-Live-Race-properties-add.jpg differ diff --git a/solarcar-map/map-layersCopy/images/65-Canvas-Properties-for-background.jpg b/solarcar-map/map-layersCopy/images/65-Canvas-Properties-for-background.jpg new file mode 100644 index 000000000..7e127d56b Binary files /dev/null and b/solarcar-map/map-layersCopy/images/65-Canvas-Properties-for-background.jpg differ diff --git a/solarcar-map/map-layersCopy/images/66_Change_background_to_blue.jpg b/solarcar-map/map-layersCopy/images/66_Change_background_to_blue.jpg new file mode 100644 index 000000000..d5fa0bbe8 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/66_Change_background_to_blue.jpg differ diff --git a/solarcar-map/map-layersCopy/images/Final-Map.jpg b/solarcar-map/map-layersCopy/images/Final-Map.jpg new file mode 100644 index 000000000..b5c48883a Binary files /dev/null and b/solarcar-map/map-layersCopy/images/Final-Map.jpg differ diff --git a/solarcar-map/map-layersCopy/images/segmentcontrolstops.png b/solarcar-map/map-layersCopy/images/segmentcontrolstops.png new file mode 100644 index 000000000..dd8c3dc27 Binary files /dev/null and b/solarcar-map/map-layersCopy/images/segmentcontrolstops.png differ diff --git a/solarcar-map/map-layersCopy/map-layerscopy.md b/solarcar-map/map-layersCopy/map-layerscopy.md new file mode 100644 index 000000000..b6c2b5f49 --- /dev/null +++ b/solarcar-map/map-layersCopy/map-layerscopy.md @@ -0,0 +1,142 @@ +# Build Australia route race map: Add layers and background + +## Introduction + +In this exercise, you will generate a map of Australia and apply a background color. You will then add multiple layers to the map, including the route, speed, labels, and the car’s live location. + +_Estimated Time:_ 30 minutes + +### Objectives + +In this lab, you will: + +- Generate a map of Australia and give it a color +- Add multiple layers to the map +- Add color background + +### Prerequisites + +This lab assumes you have: + +- An Oracle Free Tier, Always Free, Paid or Live Labs Cloud Account +- Provisioned Oracle Analytics Cloud +- All previous labs successfully completed + +## Task 1: Import the data sets created in lab 2 + +1. Go to Create and select workbook. Once workbook is selected , a dialogue box will appear to Add Data, click cancel. + + ![Create workbook](./images/51-CreateWorkbook.jpg) + +2. Add the data sets created in lab 2 , using the + icon. Use the Add Data to upload the two data sets (route, live location) one by one in this workbook + + ![Drag data file](./images/52-Add-both-data.png) + +3. The data pane looks like this when the data sets get uploaded + + ![Data Pane](./images/53-The-data-pane-should-look-like-this.png) + +## Task 2: Create Australia map and add color to it + +1. Expand the live location dataset and double click Country + + ![expand_live_location](./images/54.1%20ExpandLivedataset.png) + +2. From the visualization pane, change the viz type to Map + + ![map](./images/54.2select_map_viz.png) + +3. Select the properties panel + + ![properties_panel](./images/54.3proerties_panel.png) + +4. Go to Layers and then change the Map Layer to world countries and color to #fbcb05 + + ![Map_color](./images/55-Map-change-layer-and-add-color.jpg) + + You have now created a map of Australia and applied color to it. + Next we will layer it with speed, route and add labels. + +## Task 3: Add layers to the map + +1. Return to the grammar pane + + ![return_to_grammar](./images/54.4retrun_to_grammar_pane.png) + +2. Add a new layer to the map by selecting the three dots. Select add Data Layer + + ![Add data layer](./images/56-Add-Layer-2-to-Map.jpg) + +3. Expand the route dataset and drag Route WKT column in the category and expand the speed dataset and add Avg vehicle velocity to Color. + + ![add route and speed](./images/57-Add-Route-and-Speed-to-layer-2.jpg) +Notice that the Route WKT is marked with a globe icon, indicating that it is a geometry data type supported by OAC. + +4. Go to properties and then Layers. Expand Route WKT. + + ![properties_again](./images/56.1properties_again.png) + +5. For the Name, select Auto and then choose Custom option. + + ![add route](./images/56.2change_name.png) + +6. Rename the layer to Route + + ![rename layer](./images/58-Add-color-to-Layer-2-and-rename-layer-2-as-route.jpg) + +7. Change color of the race track by right clicking any point on the race track. Select Color and then Manage Assignments + + ![add route](./images/56.3color_route.png) + +8. Once the pop up window appears, enter the color #0b4574 + + ![add route color](./images/56.4changecolorofroute2.png) + +9. Return to Grammar pane and add another layer by selecting the three dots + + ![add layer 3](./images/59-Add-layer-3.jpg) + +10. From the route dataset, select both Start Latitude and Start Longitude and drag to Category and drag Segment name in to Tooltip + + ![segment name](./images/segmentcontrolstops.png) + +11. Go to the properties and then to layers. Expand this new layer and change name to Segment Name , color it Black and set outline to custom and set Size to 8, set data labels position to right and set Columns to SEGMENT NAME + + ![add layer 3 properties](./images/60-Add-layer-3-Properties.jpg) + +12. Go back to grammar and add layer 4 to the map + + ![add layer 4](./images/61-Add-Layer-4.jpg) + +13. Expand the live location data set. Select latitude and longitude and drag to category and driver to shape. Then click the arrow in the shape section. + + ![add layer 4 attributes](./images/62-Add-elements-to-Layer4.jpg) + +14. Select the custom shapes and change the shape to down triangle + + ![add shape to layer 4](./images/63-Custom-shape-of-Car.jpg) + +15. Go to properties and rename this layer to live race position, change color to #fbcb05, change outline to custom, outline color to black and size to 18 + + ![add shape to layer 4](./images/64-Live-Race-properties-add.jpg) + +## Task 4: Add color background + +1. Right click canvas tab at the bottom of the workbook and go to canvas properties + + ![add color background](./images/65-Canvas-Properties-for-background.jpg) + +2. Select the custom option for the background and change the color as #0b4574. Click ok + + ![change color to blue](./images/66_Change_background_to_blue.jpg) + + Your visualization should look like this. + + ![final map](./images/Final-Map.jpg) + +Congratulations on completing this workshop! + +## **Acknowledgements** + +- **Author** - Anita Gupta (Oracle Analytics Product Strategy) +- **Contributors** - Gautam Pisharam (Oracle Analytics Product Management) \ No newline at end of file diff --git a/solarcar-map/oac-provisioning/images/banner.JPG b/solarcar-map/oac-provisioning/images/banner.JPG new file mode 100644 index 000000000..11d2b4067 Binary files /dev/null and b/solarcar-map/oac-provisioning/images/banner.JPG differ diff --git a/solarcar-map/oac-provisioning/images/oac-create-button.png b/solarcar-map/oac-provisioning/images/oac-create-button.png new file mode 100644 index 000000000..f6481eeea Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-create-button.png differ diff --git a/solarcar-map/oac-provisioning/images/oac-creating.png b/solarcar-map/oac-provisioning/images/oac-creating.png new file mode 100644 index 000000000..9ed01fe54 Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-creating.png differ diff --git a/solarcar-map/oac-provisioning/images/oac-form-redbull.png b/solarcar-map/oac-provisioning/images/oac-form-redbull.png new file mode 100644 index 000000000..23379e43f Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-form-redbull.png differ diff --git a/solarcar-map/oac-provisioning/images/oac-form.png b/solarcar-map/oac-provisioning/images/oac-form.png new file mode 100644 index 000000000..2e130e468 Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-form.png differ diff --git a/solarcar-map/oac-provisioning/images/oac-login-cloud-account-name.png b/solarcar-map/oac-provisioning/images/oac-login-cloud-account-name.png new file mode 100644 index 000000000..4138ad2e8 Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-login-cloud-account-name.png differ diff --git a/solarcar-map/oac-provisioning/images/oac-login-idp.png b/solarcar-map/oac-provisioning/images/oac-login-idp.png new file mode 100644 index 000000000..bf3c829d7 Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-login-idp.png differ diff --git a/solarcar-map/oac-provisioning/images/oac-login-user-password.png b/solarcar-map/oac-provisioning/images/oac-login-user-password.png new file mode 100644 index 000000000..7b60c6321 Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-login-user-password.png differ diff --git a/solarcar-map/oac-provisioning/images/oac-menu.png b/solarcar-map/oac-provisioning/images/oac-menu.png new file mode 100644 index 000000000..c86276516 Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-menu.png differ diff --git a/solarcar-map/oac-provisioning/images/oac-profile-federated.png b/solarcar-map/oac-provisioning/images/oac-profile-federated.png new file mode 100644 index 000000000..be9480036 Binary files /dev/null and b/solarcar-map/oac-provisioning/images/oac-profile-federated.png differ diff --git a/solarcar-map/oac-provisioning/oac-provisioning.md b/solarcar-map/oac-provisioning/oac-provisioning.md new file mode 100644 index 000000000..a08a72fef --- /dev/null +++ b/solarcar-map/oac-provisioning/oac-provisioning.md @@ -0,0 +1,93 @@ +# Provision Analytics Cloud + +## Introduction + +In this lab, you will deploy an Oracle Analytics Cloud instance on Oracle Cloud Infrastructure. + +> Provisioning Oracle Analytics Cloud can take up to 40 minutes. + + + +_Estimated Time:_ 5 minutes + +![Banner](./images/banner.JPG) + +### Objectives + +In this lab, you will: + +- Login as a federated user +- Create an Oracle Analytics Cloud Instance + +### Prerequisites +This lab assumes you have: + +- An Oracle Free Trial Account + +## Task 1: Understand the Types of Users in Oracle Cloud + +1. Oracle Cloud has two types of users: + + - **OCI Native users**: represent users like you, or applications that can perform operations on OCI native services + - **OCI Federated users**: users with Identity Cloud Service (IDCS). IDCS is an Identity Provider included with Oracle Cloud to manage Identity services beyond basic users, groups and roles capabilities. For example, OAuth2.0, Multi Factor Authentication, etc + + > **Note:** Oracle Analytics Cloud (OAC) requires a Federated user. + +2. Go to **Profile** on the top-right corner and make sure your user has the name **oracleidentitycloudservice/** appended before your email, like in the picture: + + ![Federated user](././images/oac-profile-federated.png) + +3. Don't you see **oracleidentitycloudservice/** before your email? Then, you need to Sign out and log in as a federated user, following these steps. + +4. Go to cloud.oracle.com, type your **Cloud Account Name** and click **Next**. + + ![Cloud Account Name](././images/oac-login-cloud-account-name.png) + +5. Login with user and password. + + ![User and Password](./images/oac-login-user-password.png) + +6. At this point, you should have **oracleidentitycloudservice/** before your email on the Profile popup, on the top-right corner. + + For more information about federated users, see [User Provisioning for Federated Users](https://docs.cloud.oracle.com/en-us/iaas/Content/Identity/Tasks/usingscim.htm). + +## Task 2: Create an Oracle Analytics Cloud (OAC) Instance + +1. Return to the Home Page and go to the **Menu** > **Analytics & AI** > **Analytics Cloud**. + + ![OAC Menu](./images/oac-menu.png) + +2. Make sure you select the `root` compartment (unless you have permissions and experience selecting a different one) and click **Create Instance**. + + ![OAC Create Button](./images/oac-create-button.png) + +3. Fill the web form with the following information and click **Create**: + + - **Name**: `RedBullRacingAnalytics` + - **Description**: `Analytics Instance for Red Bull Racing Honda` + - **Create in Compartment**: `root` compartment, unless you have permissions and experience selecting a different one + - **Feature Set**: `Enterprise Analytics` + - **Capacity**: `OCPU` and `1 - Non Production` + - **License Type**: `License Included` + + > **Note:** **1 OCPU** OAC instance is for **Trials Only;** please be aware that you cannot scale up an 1 OCP instance and also there are [Limits for Querying, Displaying, Exporting Data](https://docs.oracle.com/en/cloud/paas/analytics-cloud/acoci/create-services.html#GUID-7D6DB4EE-8DD5-44C5-9B6E-9FA847463A5F) + + ![OAC Form](./images/oac-form-redbull.png " ") + + Your Analytics Instance will start provisioning. + + ![pic3](./images/oac-creating.png " ") + + > **Note:** Provisioning an Oracle Analytics Cloud instance can take from 10 (most likely) to 40 minutes. + + We will get back to your Oracle Analytics Cloud instance later in the workshop. + +You may now *proceed to the next lab*. + +## **Acknowledgements** + +- **Author** - Jeroen Kloosterman (Technology Product Strategy Director), Victor Martin (Technology Product Strategy Manager) +- **Contributors** - Priscila Iruela, Arabella Yao +- **Last Updated By/Date** - Lucian Dinescu (Oracle Analytics Product Strategy), October 2021 diff --git a/solarcar-map/other-livelabs/other-livelabs.md b/solarcar-map/other-livelabs/other-livelabs.md new file mode 100644 index 000000000..cc9641dae --- /dev/null +++ b/solarcar-map/other-livelabs/other-livelabs.md @@ -0,0 +1,8 @@ +# Other LiveLabs you might like + + +- [Autonomous Database Dedicated](https://livelabs.oracle.com/pls/apex/dbpm/r/livelabs/view-workshop?wid=677) + +- [Manage and Monitor Autonomous Database](https://livelabs.oracle.com/pls/apex/dbpm/r/livelabs/view-workshop?wid=553) + +- [Scaling and Performance in the Autonomous Database](https://livelabs.oracle.com/pls/apex/dbpm/r/livelabs/view-workshop?wid=608) diff --git a/solarcar-map/provision/files/starter-file.sql b/solarcar-map/provision/files/starter-file.sql new file mode 100644 index 000000000..9d7e762e8 --- /dev/null +++ b/solarcar-map/provision/files/starter-file.sql @@ -0,0 +1,101 @@ +/* NOTE: Files cannot contain empty lines (line breaks) */ +/* Specify the base URL that you copied from your files in OCI Object Storage in the define base_URL line below*/ +/* change idthydc0kinr to your real namespace. The name is case-sensitive. */ +/* change ADWCLab to your real bucket name. The name is case-sensitive. */ +/* change us-phoenix-1 to your real region name. The name is case-sensitive. */ +/* you can find these values on the OCI Console .. Storage .. Object Storage screen */ +set define on +define base_URL='https://objectstorage.us-phoenix-1.oraclecloud.com/n/idthydc0kinr/b/ADWCLab/o' +/* copy Channels table */ +begin + dbms_cloud.copy_data( + table_name =>'CHANNELS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/chan_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +/* copy Countries table */ +begin + dbms_cloud.copy_data( + table_name =>'COUNTRIES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/coun_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +/* Copy customers */ +begin + dbms_cloud.copy_data( + table_name =>'CUSTOMERS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/cust1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SUPPLEMENTARY_DEMOGRAPHICS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/dem1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SALES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/dmsal_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'PRODUCTS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/prod1v3.dat', + format => json_object('delimiter' value '|', 'quote' value '^', 'ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'PROMOTIONS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/prom1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SALES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/sale1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'TIMES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/time_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'COSTS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/costs.dat', + format => json_object('ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true') + ); +end; +/ diff --git a/solarcar-map/provision/images/pic1.png b/solarcar-map/provision/images/pic1.png new file mode 100644 index 000000000..05be3f04e Binary files /dev/null and b/solarcar-map/provision/images/pic1.png differ diff --git a/solarcar-map/provision/images/pic2.png b/solarcar-map/provision/images/pic2.png new file mode 100644 index 000000000..feaf6c0e2 Binary files /dev/null and b/solarcar-map/provision/images/pic2.png differ diff --git a/solarcar-map/provision/images/sample1.png b/solarcar-map/provision/images/sample1.png new file mode 100644 index 000000000..2d9ad4738 Binary files /dev/null and b/solarcar-map/provision/images/sample1.png differ diff --git a/solarcar-map/provision/images/sample2.png b/solarcar-map/provision/images/sample2.png new file mode 100644 index 000000000..145c9d39c Binary files /dev/null and b/solarcar-map/provision/images/sample2.png differ diff --git a/solarcar-map/provision/provision.md b/solarcar-map/provision/provision.md new file mode 100644 index 000000000..b6d2c5c17 --- /dev/null +++ b/solarcar-map/provision/provision.md @@ -0,0 +1,94 @@ +# Title of the Lab + +## Introduction + +*Describe the lab in one or two sentences, for example:* This lab walks you through the steps to ... + +Estimated Time: -- minutes + +### About (Optional) +Enter background information here about the technology/feature or product used in this lab - no need to repeat what you covered in the introduction. Keep this section fairly concise. If you find yourself needing more than two sections/paragraphs, please utilize the "Learn More" section. + +### Objectives + +*List objectives for this lab using the format below* + +In this lab, you will: +* Objective 1 +* Objective 2 +* Objective 3 + +### Prerequisites (Optional) + +*List the prerequisites for this lab using the format below. Fill in whatever knowledge, accounts, etc. is needed to complete the lab. Do NOT list each previous lab as a prerequisite.* + +This lab assumes you have: +* An Oracle Cloud account +* All previous labs successfully completed + + +*This is the "fold" - below items are collapsed by default* + +## Task 1: Concise Task Description + +(optional) Task 1 opening paragraph. + +1. Step 1 + + ![Image alt text](images/sample1.png) + + > **Note:** Use this format for notes, hints, and tips. Only use one "Note" at a time in a step. + +2. Step 2 + + ![Image alt text](images/sample1.png) + +4. Example with inline navigation icon ![Image alt text](images/sample2.png) click **Navigation**. + +5. Example with bold **text**. + + If you add another paragraph, add 3 spaces before the line. + +## Task 2: Concise Task Description + +1. Step 1 - tables sample + + Use tables sparingly: + + | Column 1 | Column 2 | Column 3 | + | --- | --- | --- | + | 1 | Some text or a link | More text | + | 2 |Some text or a link | More text | + | 3 | Some text or a link | More text | + +2. You can also include bulleted lists - make sure to indent 4 spaces: + + - List item 1 + - List item 2 + +3. Code examples + + ``` + Adding code examples + Indentation is important for the code example to appear inside the step + Multiple lines of code + Enclose the text you want to copy in . + ``` + +4. Code examples that include variables + + ``` + ssh -i + ``` + +## Learn More + +*(optional - include links to docs, white papers, blogs, etc)* + +* [URL text 1](http://docs.oracle.com) +* [URL text 2](http://docs.oracle.com) + +## Acknowledgements +* **Author** - +* **Contributors** - -- optional +* **Last Updated By/Date** - diff --git a/solarcar-map/query/files/starter-file.sql b/solarcar-map/query/files/starter-file.sql new file mode 100644 index 000000000..9d7e762e8 --- /dev/null +++ b/solarcar-map/query/files/starter-file.sql @@ -0,0 +1,101 @@ +/* NOTE: Files cannot contain empty lines (line breaks) */ +/* Specify the base URL that you copied from your files in OCI Object Storage in the define base_URL line below*/ +/* change idthydc0kinr to your real namespace. The name is case-sensitive. */ +/* change ADWCLab to your real bucket name. The name is case-sensitive. */ +/* change us-phoenix-1 to your real region name. The name is case-sensitive. */ +/* you can find these values on the OCI Console .. Storage .. Object Storage screen */ +set define on +define base_URL='https://objectstorage.us-phoenix-1.oraclecloud.com/n/idthydc0kinr/b/ADWCLab/o' +/* copy Channels table */ +begin + dbms_cloud.copy_data( + table_name =>'CHANNELS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/chan_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +/* copy Countries table */ +begin + dbms_cloud.copy_data( + table_name =>'COUNTRIES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/coun_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +/* Copy customers */ +begin + dbms_cloud.copy_data( + table_name =>'CUSTOMERS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/cust1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SUPPLEMENTARY_DEMOGRAPHICS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/dem1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SALES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/dmsal_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'PRODUCTS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/prod1v3.dat', + format => json_object('delimiter' value '|', 'quote' value '^', 'ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'PROMOTIONS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/prom1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SALES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/sale1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'TIMES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/time_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'COSTS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/costs.dat', + format => json_object('ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true') + ); +end; +/ diff --git a/solarcar-map/query/images/sample1.png b/solarcar-map/query/images/sample1.png new file mode 100644 index 000000000..2d9ad4738 Binary files /dev/null and b/solarcar-map/query/images/sample1.png differ diff --git a/solarcar-map/query/images/sample2.png b/solarcar-map/query/images/sample2.png new file mode 100644 index 000000000..145c9d39c Binary files /dev/null and b/solarcar-map/query/images/sample2.png differ diff --git a/solarcar-map/query/query.md b/solarcar-map/query/query.md new file mode 100644 index 000000000..fe5d3a51d --- /dev/null +++ b/solarcar-map/query/query.md @@ -0,0 +1,92 @@ +# Title of the Lab + +## Introduction + +*Describe the lab in one or two sentences, for example:* This lab walks you through the steps to ... + +Estimated Lab Time: -- minutes + +### About (Optional) +Enter background information here about the technology/feature or product used in this lab - no need to repeat what you covered in the introduction. Keep this section fairly concise. If you find yourself needing more than two sections/paragraphs, please utilize the "Learn More" section. + +### Objectives + +*List objectives for this lab using the format below* + +In this lab, you will: +* Objective 1 +* Objective 2 +* Objective 3 + +### Prerequisites (Optional) + +*List the prerequisites for this lab using the format below. Fill in whatever knowledge, accounts, etc. is necessary to complete the lab. Do NOT list each previous lab as a prerequisite.* + +This lab assumes you have: +* An Oracle Cloud account +* All previous labs successfully completed + + +*This is the "fold" - below items are collapsed by default* + +## Task 1: Concise Task Description + +(optional) Task 1 opening paragraph. + +1. Step 1 + + ![Image alt text](images/sample1.png) + +2. Step 2 + + ![Image alt text](images/sample1.png) + +4. Example with inline navigation icon ![Image alt text](images/sample2.png) click **Navigation**. + +5. Example with bold **text**. + + If you add another paragraph, add 3 spaces before the line. + +## Task 2: Concise Task Description + +1. Step 1 - tables sample + + Use tables sparingly: + + | Column 1 | Column 2 | Column 3 | + | --- | --- | --- | + | 1 | Some text or a link | More text | + | 2 |Some text or a link | More text | + | 3 | Some text or a link | More text | + +2. You can also include bulleted lists - make sure to indent 4 spaces: + + - List item 1 + - List item 2 + +3. Code examples + + ``` + Adding code examples + Indentation is important for the code example to appear inside the step + Multiple lines of code + Enclose the text you want to copy in . + ``` + +4. Code examples that include variables + + ``` + ssh -i + ``` + +## Learn More + +*(optional - include links to docs, white papers, blogs, etc)* + +* [URL text 1](http://docs.oracle.com) +* [URL text 2](http://docs.oracle.com) + +## Acknowledgements +* **Author** - +* **Contributors** - -- optional +* **Last Updated By/Date** - diff --git a/solarcar-map/setup/files/starter-file.sql b/solarcar-map/setup/files/starter-file.sql new file mode 100644 index 000000000..9d7e762e8 --- /dev/null +++ b/solarcar-map/setup/files/starter-file.sql @@ -0,0 +1,101 @@ +/* NOTE: Files cannot contain empty lines (line breaks) */ +/* Specify the base URL that you copied from your files in OCI Object Storage in the define base_URL line below*/ +/* change idthydc0kinr to your real namespace. The name is case-sensitive. */ +/* change ADWCLab to your real bucket name. The name is case-sensitive. */ +/* change us-phoenix-1 to your real region name. The name is case-sensitive. */ +/* you can find these values on the OCI Console .. Storage .. Object Storage screen */ +set define on +define base_URL='https://objectstorage.us-phoenix-1.oraclecloud.com/n/idthydc0kinr/b/ADWCLab/o' +/* copy Channels table */ +begin + dbms_cloud.copy_data( + table_name =>'CHANNELS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/chan_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +/* copy Countries table */ +begin + dbms_cloud.copy_data( + table_name =>'COUNTRIES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/coun_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +/* Copy customers */ +begin + dbms_cloud.copy_data( + table_name =>'CUSTOMERS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/cust1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SUPPLEMENTARY_DEMOGRAPHICS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/dem1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SALES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/dmsal_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'PRODUCTS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/prod1v3.dat', + format => json_object('delimiter' value '|', 'quote' value '^', 'ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'PROMOTIONS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/prom1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'SALES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/sale1v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'TIMES', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/time_v3.dat', + format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true') + ); +end; +/ +begin + dbms_cloud.copy_data( + table_name =>'COSTS', + credential_name =>'OBJ_STORE_CRED', + file_uri_list =>'&base_URL/costs.dat', + format => json_object('ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true') + ); +end; +/ diff --git a/solarcar-map/setup/images/sample1.png b/solarcar-map/setup/images/sample1.png new file mode 100644 index 000000000..2d9ad4738 Binary files /dev/null and b/solarcar-map/setup/images/sample1.png differ diff --git a/solarcar-map/setup/images/sample2.png b/solarcar-map/setup/images/sample2.png new file mode 100644 index 000000000..145c9d39c Binary files /dev/null and b/solarcar-map/setup/images/sample2.png differ diff --git a/solarcar-map/setup/setup.md b/solarcar-map/setup/setup.md new file mode 100644 index 000000000..fe5d3a51d --- /dev/null +++ b/solarcar-map/setup/setup.md @@ -0,0 +1,92 @@ +# Title of the Lab + +## Introduction + +*Describe the lab in one or two sentences, for example:* This lab walks you through the steps to ... + +Estimated Lab Time: -- minutes + +### About (Optional) +Enter background information here about the technology/feature or product used in this lab - no need to repeat what you covered in the introduction. Keep this section fairly concise. If you find yourself needing more than two sections/paragraphs, please utilize the "Learn More" section. + +### Objectives + +*List objectives for this lab using the format below* + +In this lab, you will: +* Objective 1 +* Objective 2 +* Objective 3 + +### Prerequisites (Optional) + +*List the prerequisites for this lab using the format below. Fill in whatever knowledge, accounts, etc. is necessary to complete the lab. Do NOT list each previous lab as a prerequisite.* + +This lab assumes you have: +* An Oracle Cloud account +* All previous labs successfully completed + + +*This is the "fold" - below items are collapsed by default* + +## Task 1: Concise Task Description + +(optional) Task 1 opening paragraph. + +1. Step 1 + + ![Image alt text](images/sample1.png) + +2. Step 2 + + ![Image alt text](images/sample1.png) + +4. Example with inline navigation icon ![Image alt text](images/sample2.png) click **Navigation**. + +5. Example with bold **text**. + + If you add another paragraph, add 3 spaces before the line. + +## Task 2: Concise Task Description + +1. Step 1 - tables sample + + Use tables sparingly: + + | Column 1 | Column 2 | Column 3 | + | --- | --- | --- | + | 1 | Some text or a link | More text | + | 2 |Some text or a link | More text | + | 3 | Some text or a link | More text | + +2. You can also include bulleted lists - make sure to indent 4 spaces: + + - List item 1 + - List item 2 + +3. Code examples + + ``` + Adding code examples + Indentation is important for the code example to appear inside the step + Multiple lines of code + Enclose the text you want to copy in . + ``` + +4. Code examples that include variables + + ``` + ssh -i + ``` + +## Learn More + +*(optional - include links to docs, white papers, blogs, etc)* + +* [URL text 1](http://docs.oracle.com) +* [URL text 2](http://docs.oracle.com) + +## Acknowledgements +* **Author** - +* **Contributors** - -- optional +* **Last Updated By/Date** - diff --git a/solarcar-map/tables/tables.md b/solarcar-map/tables/tables.md new file mode 100644 index 000000000..529dc6f7c --- /dev/null +++ b/solarcar-map/tables/tables.md @@ -0,0 +1,54 @@ +# Tables in LiveLabs + +## Tables are cool! + +You can define a table in Markdown just like so: + +``` +| Tables | Are | Cool | +| ------------- | :-----------: | ----: | +| **col 3 is** | right-aligned | $1600 | +| col 2 is | *centered* | $12 | +| zebra stripes | ~~are neat~~ | $1 | +``` +The result looks like this: + +| Tables | Are | Cool | +| ------------- | :-----------: | ----: | +| **col 3 is** | right-aligned | $1600 | +| col 2 is | *centered* | $12 | +| zebra stripes | ~~are neat~~ | $1 | + +You can see that there is a default table caption provided which is by default a concatenation of the workshop title and the lab title. + +If you don't like the default, you can also provide your own table title by adding the below the table definition: + +``` +{: title="My table title"} +``` + +The complete markdown looks like this: + +``` +| Tables | Are | Cool | +| ------------- | :-----------: | ----: | +| **col 3 is** | right-aligned | $1600 | +| col 2 is | *centered* | $12 | +| zebra stripes | ~~are neat~~ | $1 | +{: title="My table title"} +``` + +Now our table looks like this: + +| Tables | Are | Cool | +| ------------- | :-----------: | ----: | +| **col 3 is** | right-aligned | $1600 | +| col 2 is | *centered* | $12 | +| zebra stripes | ~~are neat~~ | $1 | +{: title="My table title"} + +As you can see, the numbering is added automatically. + +Isn't that cool? + +You can also refer to the [LiveLabs Markdown Cheatsheet](https://c4u04.objectstorage.us-ashburn-1.oci.customer-oci.com/p/EcTjWk2IuZPZeNnD_fYMcgUhdNDIDA6rt9gaFj_WZMiL7VvxPBNMY60837hu5hga/n/c4u04/b/livelabsfiles/o/labfiles/LiveLabs_MD_Cheat_Sheet.pdf) \ No newline at end of file diff --git a/solarcar-map/upload-datasets/images/1 Create Dataset.jpg b/solarcar-map/upload-datasets/images/1 Create Dataset.jpg new file mode 100644 index 000000000..7b42541a7 Binary files /dev/null and b/solarcar-map/upload-datasets/images/1 Create Dataset.jpg differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/1 Create Dataset.jpg b/solarcar-map/upload-datasets/images/2 Upload joint excel file/1 Create Dataset.jpg new file mode 100644 index 000000000..7b42541a7 Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/1 Create Dataset.jpg differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/10 Save the file.jpg b/solarcar-map/upload-datasets/images/2 Upload joint excel file/10 Save the file.jpg new file mode 100644 index 000000000..0f62f3416 Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/10 Save the file.jpg differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/2. Drag Data set .jpg b/solarcar-map/upload-datasets/images/2 Upload joint excel file/2. Drag Data set .jpg new file mode 100644 index 000000000..e6bf635fe Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/2. Drag Data set .jpg differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/3 Select the route data set and name it route.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/3 Select the route data set and name it route.png new file mode 100644 index 000000000..333d381b5 Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/3 Select the route data set and name it route.png differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/4 Select the route and go to meta data.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/4 Select the route and go to meta data.png new file mode 100644 index 000000000..5428446ad Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/4 Select the route and go to meta data.png differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/5 Select all the highlighted columns and change the property to Attribute from numeric.gif b/solarcar-map/upload-datasets/images/2 Upload joint excel file/5 Select all the highlighted columns and change the property to Attribute from numeric.gif new file mode 100644 index 000000000..fec38efc1 Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/5 Select all the highlighted columns and change the property to Attribute from numeric.gif differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/6 Go back to join diagram tab and add File .jpg b/solarcar-map/upload-datasets/images/2 Upload joint excel file/6 Go back to join diagram tab and add File .jpg new file mode 100644 index 000000000..cc66ef112 Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/6 Go back to join diagram tab and add File .jpg differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/7 Add speed file and click ok.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/7 Add speed file and click ok.png new file mode 100644 index 000000000..656b36c7a Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/7 Add speed file and click ok.png differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/8 Speed Tab and change the data type.jpg b/solarcar-map/upload-datasets/images/2 Upload joint excel file/8 Speed Tab and change the data type.jpg new file mode 100644 index 000000000..0e11ad94c Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/8 Speed Tab and change the data type.jpg differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/9 Inner Join.gif b/solarcar-map/upload-datasets/images/2 Upload joint excel file/9 Inner Join.gif new file mode 100644 index 000000000..b844cf63c Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/9 Inner Join.gif differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/Create Calculation.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/Create Calculation.png new file mode 100644 index 000000000..9aba50735 Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/Create Calculation.png differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/GeomText Function.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/GeomText Function.png new file mode 100644 index 000000000..9775e239d Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/GeomText Function.png differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/Innerjoincircle.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/Innerjoincircle.png new file mode 100644 index 000000000..e39cb652f Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/Innerjoincircle.png differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/Screenshot 2025-10-01 154059.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/Screenshot 2025-10-01 154059.png new file mode 100644 index 000000000..01d4bdbb6 Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/Screenshot 2025-10-01 154059.png differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/linestring_format_check.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/linestring_format_check.png new file mode 100644 index 000000000..1c13c8291 Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/linestring_format_check.png differ diff --git a/solarcar-map/upload-datasets/images/2 Upload joint excel file/write formula.png b/solarcar-map/upload-datasets/images/2 Upload joint excel file/write formula.png new file mode 100644 index 000000000..db02849ab Binary files /dev/null and b/solarcar-map/upload-datasets/images/2 Upload joint excel file/write formula.png differ diff --git a/solarcar-map/upload-datasets/images/2. Drag Data set .jpg b/solarcar-map/upload-datasets/images/2. Drag Data set .jpg new file mode 100644 index 000000000..e6bf635fe Binary files /dev/null and b/solarcar-map/upload-datasets/images/2. Drag Data set .jpg differ diff --git a/solarcar-map/upload-datasets/images/3 Upload Click OK.jpg b/solarcar-map/upload-datasets/images/3 Upload Click OK.jpg new file mode 100644 index 000000000..28b0565ce Binary files /dev/null and b/solarcar-map/upload-datasets/images/3 Upload Click OK.jpg differ diff --git a/solarcar-map/upload-datasets/images/4 Change Data Type to Attribute.jpg b/solarcar-map/upload-datasets/images/4 Change Data Type to Attribute.jpg new file mode 100644 index 000000000..d26f961ea Binary files /dev/null and b/solarcar-map/upload-datasets/images/4 Change Data Type to Attribute.jpg differ diff --git a/solarcar-map/upload-datasets/images/5 Save the file.jpg b/solarcar-map/upload-datasets/images/5 Save the file.jpg new file mode 100644 index 000000000..0f62f3416 Binary files /dev/null and b/solarcar-map/upload-datasets/images/5 Save the file.jpg differ diff --git a/solarcar-map/upload-datasets/upload-datasets.md b/solarcar-map/upload-datasets/upload-datasets.md new file mode 100644 index 000000000..f178a7f2a --- /dev/null +++ b/solarcar-map/upload-datasets/upload-datasets.md @@ -0,0 +1,100 @@ +# Upload the csv file in OAC as datasets + +## Introduction + +In this lab, you will **upload the csv files** required to create the map provided in the resources section. First, we will upload the live race csv file and save it. Next, we will create another dataset by integrating two csv files (route and speed) into OAC using an inner join to produce a combined dataset. + +_Estimated Time:_ 10 minutes + +### Objectives + +In this lab, you will: + +- Upload the csv files in OAC as datasets + +### Prerequisites + +This lab assumes you have: + +- An Oracle Free Tier, Always Free, Paid or Live Labs Cloud Account +- Provisioned Oracle Analytics Cloud +- All previous labs successfully completed +- All three csv files provided in the resources have been downloaded + +## Task 1: Upload the live location csv file + +1. Go to Create and select Dataset (**Create**) + + ![Select the create icon](./images/1%20Create%20Dataset.jpg) + +2. A dialog box will open. Select the option Drag data file, then choose the live location csv file from your computer. **Drag data file here or click to browse** + + ![Drag data file](./images/2.%20Drag%20Data%20set%20.jpg) + +3. Once the live location data loads, click **OK** + + ![Select "OK"](./images/3%20Upload%20Click%20OK.jpg) + +4. Go to the live location tab, select the columns Latitude and Longitude one by one, and change Treat As to Attribute. + + ![Data Type change](./images/4%20Change%20Data%20Type%20to%20Attribute.jpg) + +5. Save the file and name it live location. Your live location file is now ready. + + ![live location file](./images/5%20Save%20the%20file.jpg) + +## Task 2: Upload the route and speed csv files as one joint file + +1. Go to Create and select Dataset (**Create**) + + ![Select the create icon](./images/1%20Create%20Dataset.jpg) + +2. A dialog box will open. Select the option drag data file, then choose the route csv file from your computer. **Drag data file here or click to browse** + + ![Drag data file](./images/2.%20Drag%20Data%20set%20.jpg) + +3. Once the route data loads, click **OK**. Note that RouteWKT is geometry data type column. You can read this geometry data by creating a calculation using GeometryAsText(RouteWKT). Steps 4 to 7 are provided to demonstrate how to read this geometry data. This is optional, and you may go directly to Step 8 if you prefer to skip it. + + ![Select "OK"](./images/2%20Upload%20joint%20excel%20file/3%20Select%20the%20route%20data%20set%20and%20name%20it%20route.png) + +4. Create a calculation to read the geometry data type + + ![Create a calculation](./images/2%20Upload%20joint%20excel%20file/Create%20Calculation.png) +5. A dialogue box will open, select the GeometryAsText function + + ![GeomTextFunction](./images/2%20Upload%20joint%20excel%20file/GeomText%20Function.png) +6. Double click the GeometryAsText Function and add the route_wkt variable in the formula and give the calculation a name as geometry and save. + + ![calculation](./images/2%20Upload%20joint%20excel%20file/write%20formula.png) +7. Open a new canvas and double click the calculated column, geometry. + + ![Linestring_format_check](./images/2%20Upload%20joint%20excel%20file/linestring_format_check.png) +We observe that the data is in linestring format.This demonstrates that GeometryAsText() enables reading geometry data types, indicating whether the data is a point, linestring, or polygon. In this case, the data type is a linestring. +8. Open the route data tab and go to **meta data icon** + ![metadata](./images/2%20Upload%20joint%20excel%20file/Screenshot%202025-10-01%20154059.png) +9. Change all columns to Attribute + ![Change data type](./images/2%20Upload%20joint%20excel%20file/5%20Select%20all%20the%20highlighted%20columns%20and%20change%20the%20property%20to%20Attribute%20from%20numeric.gif) +10. Go back to the Join Diagram tab and, at the top of the page, select the **+** button and Add File + ![Add data](./images/2%20Upload%20joint%20excel%20file/6%20Go%20back%20to%20join%20diagram%20tab%20and%20add%20File%20.jpg) +11. Select the csv file speed from your computer. Once the speed file populates, click **OK** + ![import data](./images/2%20Upload%20joint%20excel%20file/7%20Add%20speed%20file%20and%20click%20ok.png) +12. Open the speed tab and change the highlighted column Segment ID to Attribute and Data Type to Text. + ![Change data type](./images/2%20Upload%20joint%20excel%20file/8%20Speed%20Tab%20and%20change%20the%20data%20type.jpg) +13. Go to the Join Diagram tab.Hover over the route data set to see a small circle on the right side. Click and drag the circle to the speed data set. + ![Change data type](./images/2%20Upload%20joint%20excel%20file/Innerjoincircle.png) +14. A Join box will appear. Create an inner join by selecting Segment from route data and Segment ID from speed data. + ![Inner join](./images/2%20Upload%20joint%20excel%20file/9%20Inner%20Join.gif) +15. Save this file as route. + ![save](./images/2%20Upload%20joint%20excel%20file/10%20Save%20the%20file.jpg) + +You have now loaded the csv files as **datasets** into OAC. +Next we will build the map and add layers to it. + +Congratulations on completing this lab! + +You may now _proceed to the next lab_. + +## **Acknowledgements** + +- **Author** - Anita Gupta (Oracle Analytics Product Strategy) +- **Contributors** - Gautam Pisharam (Oracle Analytics Product Management) diff --git a/solarcar-map/variables/variables-in-another-file.json b/solarcar-map/variables/variables-in-another-file.json new file mode 100644 index 000000000..2492b7b6b --- /dev/null +++ b/solarcar-map/variables/variables-in-another-file.json @@ -0,0 +1,8 @@ +{ + "var11": "Variable 1 value but yet different", + "var22": "Variable 2 value is different", + "random_name2": "LiveLabs rocks & rules!", + "name_of_database": "My-Database-Name-is-the-best", + "magic": "What is 2*2?", + "doc_link": "[more info](https://docs.oracle.com/en/engineered-systems/exadata-database-machine/)" + } \ No newline at end of file diff --git a/solarcar-map/variables/variables.json b/solarcar-map/variables/variables.json new file mode 100644 index 000000000..8c644daa3 --- /dev/null +++ b/solarcar-map/variables/variables.json @@ -0,0 +1,7 @@ +{ + "var1": "Variable 1 value", + "var2": "Variable 2 value", + "random_name": "LiveLabs rocks!", + "number_of_ocpu_paid": "24", + "number_of_ocpu_always_free": "2" + } \ No newline at end of file diff --git a/solarcar-map/variables/variables.md b/solarcar-map/variables/variables.md new file mode 100644 index 000000000..fd1c2cde8 --- /dev/null +++ b/solarcar-map/variables/variables.md @@ -0,0 +1,68 @@ +# Variables in LiveLabs + +## Introduction + +You can specify variables in another file and refer to them in your Markdown. + + +## Task 1: + +Add the following to your manifest.json in the top section: + +``` + "variables": ["../../variables/variables.json", + "../../variables/variables-in-another-file.json"], +``` + +## Task 2 + +Specify the variables in the .json file like this: + +*Example: variables.json* +``` +{ + "var1": "Variable 1 value", + "var2": "Variable 2 value", + "random_name": "LiveLabs rocks!", + "number_of_ocpu_paid": "24" + "number_of_ocpu_always_free": "2" + } + ``` + +You can also add multiple files that specify variables (see the example in Task 1). + + *Example: variables_in_another_file.json* +``` +{ + "var11": "Variable 1 value but yet different", + "var22": "Variable 2 value is different", + "random_name2": "LiveLabs rocks & rules!", + "name_of_database": "My-Database-Name-is-the-best", + "magic": "What is 2*2?" + } + ``` + +## Task 3 + +Now, you can refer to those variables using the following syntax (**Please note that you can see the syntax only in markdown**): + +[](var:var1) + +or + +[](var:magic) + + +### Examples + +(Check the markdown to see the syntax - the bold text is the value of the variable) + +- Do you know math? This is **[](var:magic)** + +- How many OCPUs do I need to run this service in my paid tenancy? You need **[](var:number_of_ocpu_paid)** + +- But what if am using 'Always free'? Then you need **[](var:number_of_ocpu_always_free)** + +- What is the best name for my database? It is **[](var:name_of_database)** + +- Here you can find more info: **[](var:doc_link)** diff --git a/solarcar-map/workshops/freetier/index.html b/solarcar-map/workshops/freetier/index.html new file mode 100644 index 000000000..aebbdda4a --- /dev/null +++ b/solarcar-map/workshops/freetier/index.html @@ -0,0 +1,63 @@ + + + + + + + + + Oracle LiveLabs + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+ + + + + diff --git a/solarcar-map/workshops/freetier/manifest.json b/solarcar-map/workshops/freetier/manifest.json new file mode 100644 index 000000000..8eeaed44b --- /dev/null +++ b/solarcar-map/workshops/freetier/manifest.json @@ -0,0 +1,33 @@ +{ + "workshoptitle": "Develop an Interactive Map of a Racetrack: Solar Car Race Across Australia", + "help": "livelabs-help-analytics_us@oracle.com”", + "tutorials": [ + { + "title": "Introduction", + "description": "In this hands-on lab you will learn how to create this map in OAC", + "filename": "../../introduction/introduction.md" + }, + { + "title": "Get Started", + "description": "This is the prerequisites for customers using Free Trial and Paid tenancies, and Always Free accounts (if applicable). The title of the lab and the Contents Menu title (the title above) match for Prerequisite lab. This lab is always first.", + "filename": "https://oracle-livelabs.github.io/common/labs/cloud-login/cloud-login.md" + }, + { + "title": "Lab 1: Provision Analytics Cloud", + "filename": "../../oac-provisioning/oac-provisioning.md" + }, + { + "title": "Lab 2: Upload the excel files in OAC as datasets", + "filename": "../../upload-datasets/upload-datasets.md" + }, + { + "title": "Lab 3: Build a map with multiple layers in OAC", + "filename": "../../map-layersCopy/map-layerscopy.md" + }, + { + "title": "Need Help?", + "description": "Solutions to Common Problems and Directions for Receiving Live Help", + "filename":"https://oracle-livelabs.github.io/common/labs/need-help/need-help-freetier.md" + } + ] +} \ No newline at end of file