🚀 Searoutes Cycle 18 updates – Q3 2024

In this cycle, we’ve made key improvements to our vessel search feature, ensuring more accurate results for vessel search, tracking and emissions reporting.



🛳️ Improved vessel search and tracking

  • Vessel names, IMO, and MMSI updates are now reliably tracked and saved, including historical changes.
  • When searching for a vessel with its latest name (e.g., OVP ARIES), users now retrieve both the new vessel name (name=OVP ARIES) and previous name(s) (fka=BUXHANSA).
  • For all operational vessels, we are able to return data such as name, imo, mmsi, dimensions, draft, old names (fka - former known as), latest position and trace.

👀 Let’s break it down with some examples to show how these improvements work in practice. Below, you’ll find before-and-after responses for each relevant endpoint, so you can see the changes firsthand.


1️⃣ Vessel information

Endpoint: /vessel/v2/{name}/info

Description: returns general information about a vessel.

Request example: /vessel/v2/OVP%20ARIES/info

Before-and-after responses:

{
    "timestamp": 1726731017359,
    "status": 404,
    "error": "Not Found",
    "errorCodes": [
        "1032"
    ],
    "messages": [
        "Vessel with name 'OVP ARIES' not found."
    ]
}
[
    {
        "imo": 9150195,
        "name": "OVP ARIES",
        "length": 208.0,
        "width": 30.0,
        "maxDraft": 11.4,
        "mmsi": 352002499,
        "fka": [
            "BUXHANSA"
        ]
    }
]

✨ Improvement: previously, we couldn’t retrieve this vessel due to a missing name update. Now, vessel details like name, dimensions, and name history are easily returned.


2️⃣ Vessel position

Endpoint: /vessel/v2/{imo}/position

Description: provides general vessel information, last know position, speed and draft.

Request example: /vessel/v2/9150195/position

Before-and-after responses:

[
    {
        "info": {
            "imo": 9150195,
            "name": "Buxhansa",
            "length": 208.0,
            "width": 30.0,
            "mmsi": 352002499,
            "maxDraft": 11.4
        },
        "position": {
            "type": "Feature",
            "properties": {
                "timestamp": 1726730342000,
                "speed": 30.4,
                "draft": 9.5,
                "cog": 318.0,
                "heading": 318
            },
            "geometry": {
                "type": "Point",
                "coordinates": [
                    28.2863,
                    35.083402
                ]
            }
        }
    }
]
[
    {
        "info": {
            "imo": 9150195,
            "name": "OVP ARIES",
            "length": 208.0,
            "width": 30.0,
            "mmsi": 352002499,
            "maxDraft": 11.4
        },
        "position": {
            "type": "Feature",
            "properties": {
                "timestamp": 1726730342000,
                "speed": 30.4,
                "draft": 9.5,
                "cog": 318.0,
                "heading": 318
            },
            "geometry": {
                "type": "Point",
                "coordinates": [
                    28.2863,
                    35.083402
                ]
            }
        }
    }
]

✨ Improvement: the correct vessel is now found, and when querying imo=9150195, it returns the updated vessel name OVP ARIES (previously Buxhansa), along with its latest position, speed, and draft details.


3️⃣ Vessel trace

Endpoint: /vessel/v2/trace

Description: retrieves the historical route of a vessel between two specified dates and returns the geometry and route statistics.

Request example: /vessel/v2/trace?imo=9150195&departureDateTime=2024-08-15T00%3A00%3A00Z&arrivalDateTime=2024-09-15T00%3A00%3A00Z

Before-and-after responses:

{
  "timestamp": 1726731585943,
  "status": 404,
  "error": "Not Found",
  "errorCodes": [
    "1020"
  ],
  "messages": [
    "We could not find a route for mmsi 636091849 from 2024-08-15T00:00:00Z to 2024-09-15T00:00:00Z"
  ]
}
{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "properties": {
                "distance": 14527100,
                "mode": "sea",
                "departure": 1723786054000,
                "arrival": 1726330984000,
                "duration": 2544930000,
                "speed": 20.55,
                "areas": {
                    "type": "FeatureCollection",
                    "features": [
                        {
                            "type": "Feature",
                            "properties": {
                                "id": 11146,
                                "name": "North of Sabang",
                                "alternatives": []
                            },
                            "geometry": {
                                "type": "Point",
                                "coordinates": [
                                    94.68081647283823,
                                    6.324861732860867
                                ]
                            }
                        },
                        {
                            "type": "Feature",
                            "properties": {
                                "id": 11150,
                                "name": "Taiwan Strait",
                                "alternatives": []
                            },
                            "geometry": {
                                "type": "Point",
                                "coordinates": [
                                    119.18853847770525,
                                    24.334355579669797
                                ]
                            }
                        },
                        {
                            "type": "Feature",
                            "properties": {
                                "id": 11135,
                                "name": "Malacca Strait",
                                "alternatives": []
                            },
                            "geometry": {
                                "type": "Point",
                                "coordinates": [
                                    99.90993939997549,
                                    3.7768863793412635
                                ]
                            }
                        },
                        {
                            "type": "Feature",
                            "properties": {
                                "id": 21615,
                                "name": "Yemen coast",
                                "alternatives": []
                            },
                            "geometry": {
                                "type": "Point",
                                "coordinates": [
                                    47.674449162709465,
                                    12.667151083736158
                                ]
                            }
                        },
                        {
                            "type": "Feature",
                            "properties": {
                                "id": 11137,
                                "name": "Singapore Strait",
                                "alternatives": []
                            },
                            "geometry": {
                                "type": "Point",
                                "coordinates": [
                                    103.90174796429032,
                                    1.2059581075620434
                                ]
                            }
                        },
                        {
                            "type": "Feature",
                            "properties": {
                                "id": 21089,
                                "name": "High Risk Area",
                                "alternatives": []
                            },
                            "geometry": {
                                "type": "Point",
                                "coordinates": [
                                    49.2132660404583,
                                    5.8841119134226
                                ]
                            }
                        },
                        {
                            "type": "Feature",
                            "properties": {
                                "id": 11106,
                                "name": "South Sri Lanka",
                                "alternatives": []
                            },
                            "geometry": {
                                "type": "Point",
                                "coordinates": [
                                    80.925,
                                    5.5787
                                ]
                            }
                        }
                    ],
                    "properties": null
                },
                "details": [],
                "secaIntersection": 0,
                "hraIntersection": 2387688,
                "speedInKts": 11.096,
                "intersectsIceArea": false,
                "vessel": {
                    "imo": 9150195,
                    "name": "OVP ARIES",
                    "length": 208.0,
                    "width": 30.0,
                    "mmsi": 352002499,
                    "maxDraft": 11.4
                }
            },
            "geometry": {
                "type": "MultiLineString",
                "coordinates": [
                    [
                        [
                            120.550438,
                            35.988742
                        ],
                        [
                            120.499892,
                            36.000447
                        ],
                        [
                            120.458297,
                            36.007958
                        ],
                        [
                            120.411867,
                            36.016688
                        ],
                        [
                            120.39216675,
                            36.011821999999995
                        ],
                        [
                            120.38674175,
                            36.00894375
                        ],
                        [
                            120.390167,
                            36.005175
                        ],
                        [
                            120.562152,
                            35.966605
                        ],
                        [
                            120.628263,
                            35.96292625
                        ],
                        [
                            120.68191293577922,
                            35.95523427583315
                        ],
                        [
                            120.74513880733765,
                            35.94230282749945
                        ],
                        [
                            120.80813880733766,
                            35.87650282749945
                        ],
                        [
                            120.87091293577922,
                            35.75783427583315
                        ],
                        [
                            120.92875,
                            35.69095
                        ],
                        [
                            120.98165,
                            35.675850000000004
                        ],
                        [
                            121.01284737015435,
                            35.65178330977528
                        ],
                        [
                            121.02234211046306,
                            35.618749929325844
                        ],
                        [
                            121.03182901825824,
                            35.585715805348855
                        ],
                        [
                            121.0413080935399,
                            35.55268093784432
                        ],
                        [
                            121.050779367899,
                            35.51964532984438
                        ],
                        [
                            121.06024284133554,
                            35.48660898134904
                        ],
                        [
                            121.06969854529979,
                            35.45357189537668
                        ],
                        [
                            121.07914647979175,
                            35.42053407192729
                        ],
                        [
                            121.08858667612165,
                            35.38749551400558
                        ],
                        [
                            121.0980191342895,
                            35.35445622161154
                        ],
                        [
                            121.10744388546644,
                            35.32141619773625
                        ],
                        [
                            121.11686092965246,
                            35.2883754423797
                        ],
                        [
                            121.1262702978805,
                            35.25533395851948
                        ],
                        [
                            121.13567199015054,
                            35.22229174615558
                        ],
                        [
                            121.14506603735796,
                            35.18924880825212
                        ],
                        [
                            121.15445243950276,
                            35.15620514480909
                        ],
                        [
                            121.16383122734374,
                            35.12316075877729
                        ],
                        [
                            121.17320240088088,
                            35.09011565015669
                        ],
                        [
                            121.18256599073709,
                            35.057069821884795
                        ],
                        [
                            121.19192199691237,
                            35.024023273961596
                        ],
                        [
                            121.232375,
                            34.919575
                        ],
                        [
                            121.30392499999999,
                            34.743725
                        ],
                        [
                            121.39995962306719,
                            34.608007507683425
                        ],
                        [
                            121.52047886920155,
                            34.51242252305026
                        ],
                        [
                            121.6003858971007,
                            34.42059529236058
                        ],
                        [
                            121.63968070676461,
                            34.33252581561436
                        ],
                        [
                            121.67889330804235,
                            34.244443847668975
                        ],
                        [
                            121.71802370093394,
                            34.156349388524426
                        ],
                        [
                            121.75707274511404,
                            34.06824257229047
                        ],
                        [
                            121.79604044058266,
                            33.980123398967116
                        ],
                        [
                            121.8349276376068,
                            33.89199200112289
                        ],
                        [
                            121.87373433618646,
                            33.80384837875776
                        ],
                        [
                            121.91246137731756,
                            33.71569266292266
                        ],
                        [
                            121.95110876100009,
                            33.62752485361756
                        ],
                        [
                            121.98967731909292,
                            33.53934508039894
                        ],
                        [
                            122.02816705159606,
                            33.451153343266796
                        ],
                        [
                            122.06657878136375,
                            33.36294977030602
                        ],
                        [
                            122.10491250839598,
                            33.27473436151659
                        ],
                        [
                            122.14316904667231,
                            33.186507243534294
                        ],
                        [
                            122.18134839619273,
                            33.0982684163591
                        ],
                        [
                            122.21945136219026,
                            33.01001800519966
                        ],
                        [
                            122.25747794466488,
                            32.92175601005597
                        ],
                        [
                            122.29542894022916,
                            32.83348255473129
                        ],
                        [
                            122.33330434888305,
                            32.7451976392256
                        ],
                        [
                            122.36632587813511,
                            32.68881786479034
                        ],
                        [
                            122.39449352798536,
                            32.664343231425505
                        ],
                        [
                            122.42264576166869,
                            32.63986231434524
                        ],
                        [
                            122.45078257918513,
                            32.61537511354955
                        ],
                        [
                            122.4789040184788,
                            32.59088164771608
                        ],
                        [
                            122.5070100795497,
                            32.56638191684485
                        ],
                        [
                            122.53510080029048,
                            32.54187593956391
                        ],
                        [
                            122.56317618070113,
                            32.51736371587329
                        ],
                        [
                            122.59123625862284,
                            32.4928452643516
                        ],
                        [
                            122.6192810340556,
                            32.468320584998864
                        ],
                        [
                            122.64731054478895,
                            32.44378969634441
                        ],
                        [
                            122.67532479082288,
                            32.41925259838824
                        ],
                        [
                            122.70332380989518,
                            32.39470930961055
                        ],
                        [
                            122.73130760200584,
                            32.370159830011346
                        ],
                        [
                            122.75927620484075,
                            32.34560417802179
                        ],
                        [
                            122.78722961839989,
                            32.321042353641886
                        ],
                        [
                            122.81516788031723,
                            32.29647437525395
                        ],
                        [
                            122.84309099059277,
                            32.27190024285797
                        ],
                        [
                            122.87099898680846,
                            32.24731997478753
                        ],
                        [
                            122.89889186896428,
                            32.22273357104263
                        ],
                        [
                            122.91423047187035,
                            32.188093717009224
                        ],
                        [
                            122.91701479552663,
                            32.14340041268732
                        ],
                        [
                            122.91645686364087,
                            32.07146176232965
                        ],
                        [
                            122.91255667621306,
                            31.972277765936223
                        ],
                        [
                            122.92330368254163,
                            31.87579647581189
                        ],
                        [
                            122.94869788262659,
                            31.782017891956645
                        ],
                        [
                            122.96513158287243,
                            31.709277061232044
                        ],
                        [
                            122.9726047832792,
                            31.657573983638073
                        ],
                        [
                            122.97688158985078,
                            31.618746102095653
                        ],
                        [
                            122.97796200258722,
                            31.592793416604774
                        ],
                        [
                            122.97904181399176,
                            31.566840722034886
                        ],
                        [
                            122.9801210240644,
                            31.540888018385992
                        ],
                        [
                            122.98119963469247,
                            31.51493530568659
                        ],
                        [
                            122.98227764587597,
                            31.48898258393668
                        ],
                        [
                            122.98335505949606,
                            31.463029853164674
                        ],
                        [
                            122.98443187555276,
                            31.43707711337057
                        ],
                        [
                            122.98550809592109,
                            31.411124364582687
                        ],
                        [
                            122.98658372060106,
                            31.385171606801016
                        ],
                        [
                            122.98765875146157,
                            31.359218840053792
                        ],
                        [
                            122.98873318850261,
                            31.33326606434101
                        ],
                        [
                            122.98980703358706,
                            31.307313279690803
                        ],
                        [
                            122.99088028671491,
                            31.281360486103168
                        ],
                        [
                            122.99195294974302,
                            31.255407683606148
                        ],
                        [
                            122.99302502267139,
                            31.229454872199742
                        ],
                        [
                            122.9940965073508,
                            31.2035020519119
                        ],
                        [
                            122.99516740378127,
                            31.17754922274262
                        ],
                        [
                            122.99623771380763,
                            31.151596384719767
                        ],
                        [
                            122.997842299241,
                            31.112667114405124
                        ],
                        [
                            122.99813565370115,
                            31.08380652443622
                        ],
                        [
                            123.01991156247954,
                            31.07202307222228
                        ],
                        [
                            123.03442643653048,
                            31.06416581202835
                        ],
                        [
                            123.04893891211347,
                            31.05630692644979
                        ],
                        [
                            123.06344899051777,
                            31.04844641703183
                        ],
                        [
                            123.07795667174338,
                            31.04058428377448
                        ],
                        [
                            123.09246195708118,
                            31.0327205282221
                        ],
                        [
                            123.10696484653118,
                            31.024855150374705
                        ],
                        [
                            123.12146534138574,
                            31.016988151775784
                        ],
                        [
                            123.13596344164486,
                            31.00911953242534
                        ],
                        [
                            123.15045914860244,
                            31.001249293866007
                        ],
                        [
                            123.16495246225847,
                            30.993377436097777
                        ],
                        [
                            123.17944338390842,
                            30.985503960662406
                        ],
                        [
                            123.19393191355229,
                            30.97762886755989
                        ],
                        [
                            123.20841805248705,
                            30.969752158331122
                        ],
                        [
                            123.22290180071269,
                            30.961873832976096
                        ],
                        [
                            123.23738315952767,
                            30.95399389303482
                        ],
                        [
                            123.25186212893198,
                            30.946112338507294
                        ],
                        [
                            123.2663387102256,
                            30.938229170932647
                        ],
                        [
                            123.28805,
                            30.926402
                        ],
                        [
                            123.280408,
                            30.884612
                        ],
                        [
                            123.27091,
                            30.844902
                        ],
                        [
                            123.260802,
                            30.808097
                        ],
                        [
                            123.251777,
                            30.772612
                        ],
                        [
                            123.243325,
                            30.739097
                        ],
                        [
                            123.230043,
                            30.704688
                        ],
                        [
                            123.214563,
                            30.67131
                        ],
                        [
                            123.198837,
                            30.637473
                        ],
                        [
                            123.184005,
                            30.60218
                        ],
                        [
                            123.16902,
                            30.567653
                        ],
                        [
                            123.154428,
                            30.533773
                        ],
                        [
                            123.138267,
                            30.497573
                        ],
                        [
                            123.122028,
                            30.458175
                        ],
                        [
                            123.10542,
                            30.418427
                        ],
                        [
                            123.089263,
                            30.380975
                        ],
                        [
                            123.071848,
                            30.340287
                        ],
                        [
                            123.054972,
                            30.300263
                        ],
                        [
                            123.038087,
                            30.258537
                        ],
                        [
                            123.019683,
                            30.21586
                        ],
                        [
                            122.999858,
                            30.176007
                        ],
                        [
                            122.976938,
                            30.13746
                        ],
                        [
                            122.954073,
                            30.09599
                        ],
                        [
                            122.92737,
                            30.059657
                        ],
                        [
                            122.90892,
                            30.019158
                        ],
                        [
                            122.889458,
                            29.976327
                        ],
                        [
                            122.868943,
                            29.931752
                        ],
                        [
                            122.823097,
                            29.845635
                        ],
                        [
                            122.82186714308087,
                            29.84508066836191
                        ],
                        [
                            122.82104724453643,
                            29.84471110887207
                        ],
                        [
                            122.82022735206033,
                            29.84434154431778
                        ],
                        [
                            122.81940746565252,
                            29.843971974699265
                        ],
                        [
                            122.818587585313,
                            29.843602400016536
                        ],
                        [
                            122.81776771104163,
                            29.843232820269805
                        ],
                        [
                            122.8169478428384,
                            29.842863235459077
                        ],
                        [
                            122.81612798070324,
                            29.84249364558458
                        ],
                        [
                            122.81530812463615,
                            29.84212405064631
                        ],
                        [
                            122.814488274637,
                            29.841754450644498
                        ],
                        [
                            122.8136684307058,
                            29.841384845579142
                        ],
                        [
                            122.81284859284244,
                            29.841015235450474
                        ],
                        [
                            122.81202876104692,
                            29.84064562025849
                        ],
                        [
                            122.81120893531912,
                            29.84027600000341
                        ],
                        [
                            122.81038911565904,
                            29.83990637468524
                        ],
                        [
                            122.80956930206662,
                            29.839536744304205
                        ],
                        [
                            122.80874949454187,
                            29.839167108860302
                        ],
                        [
                            122.80792969308462,
                            29.838797468353764
                        ],
                        [
                            122.8067,
                            29.838243
                        ],
                        [
                            122.810725,
                            29.805005
                        ],
                        [
                            122.812575,
                            29.760717
                        ],
                        [
                            122.809193,
                            29.71583
                        ],
                        [
                            122.772725,
                            29.698877
                        ],
                        [
                            122.730667,
                            29.694712
                        ],
                        [
                            122.6849,
                            29.691707
                        ],
                        [
                            122.64011,
                            29.690757
                        ],
                        [
                            122.59376,
                            29.690163
                        ],
                        [
                            122.558265,
                            29.692062
                        ],
                        [
                            122.516475,
                            29.698945
                        ],
                        [
                            122.477318,
                            29.707688
                        ],
                        [
                            122.438147,
                            29.717352
                        ],
                        [
                            122.398925,
                            29.726593
                        ],
                        [
                            122.361737,
                            29.736807
                        ],
                        [
                            122.326712,
                            29.746958
                        ],
                        [
                            122.297132,
                            29.765978
                        ],
                        [
                            122.25954,
                            29.7942
                        ],
                        [
                            122.233323,
                            29.813168
                        ],
                        [
                            122.20818,
                            29.844353
                        ],
                        [
                            122.18311,
                            29.892915
                        ],
                        [
                            122.149747,
                            29.926687
                        ],
                        [
                            122.09046,
                            29.927598
                        ],
                        [
                            122.042552,
                            29.92634
                        ],
                        [
                            122.013828,
                            29.940235
                        ],
                        [
                            121.969508,
                            29.977617
                        ],
                        [
                            121.874665,
                            29.961563
                        ],
                        [
                            121.843723,
                            29.973582
                        ],
                        [
                            121.839887,
                            29.98392
                        ],
                        [
                            121.85006,
                            29.962682
                        ],
                        [
                            121.934495,
                            29.961485
                        ],
                        [
                            121.97601,
                            29.961213
                        ],
                        [
                            122.006958,
                            29.934697
                        ],
                        [
                            122.03787,
                            29.921188
                        ],
                        [
                            122.078625,
                            29.920663
                        ],
                        [
                            122.130592,
                            29.920322
                        ],
                        [
                            122.168025,
                            29.898303
                        ],
                        [
                            122.208218,
                            29.837762
                        ],
                        [
                            122.227635,
                            29.816483
                        ],
                        [
                            122.253195,
                            29.795362
                        ],
                        [
                            122.279148,
                            29.775498
                        ],
                        [
                            122.305895,
                            29.752848
                        ],
                        [
                            122.336467,
                            29.731015
                        ],
                        [
                            122.372423,
                            29.720167
                        ],
                        [
                            122.410102,
                            29.70737
                        ],
                        [
                            122.448573,
                            29.696178
                        ],
                        [
                            122.48922,
                            29.683998
                        ],
                        [
                            122.531595,
                            29.671552
                        ],
                        [
                            122.578355,
                            29.666387
                        ],
                        [
                            122.63159,
                            29.664895
                        ],
                        [
                            122.67977,
                            29.65333
                        ],
                        [
                            122.731845,
                            29.654035
                        ],
                        [
                            122.78921,
                            29.655158
                        ],
                        [
                            122.810258,
                            29.63075
                        ],
                        [
                            122.797022,
                            29.588648
                        ],
                        [
                            122.785803,
                            29.552255
                        ],
                        [
                            122.775015,
                            29.515705
                        ],
                        [
                            122.757642,
                            29.480068
                        ],
                        [
                            122.745867,
                            29.4394
                        ],
                        [
                            122.737512,
                            29.4007
                        ],
                        [
                            122.72251853312561,
                            29.358367810242086
                        ],
                        [
                            122.71252842143025,
                            29.33014560631235
                        ],
                        [
                            122.70254384262245,
                            29.301922658291495
                        ],
                        [
                            122.69256477813516,
                            29.27369896871553
                        ],
                        [
                            122.6825912279684,
                            29.245474537584457
                        ],
                        [
                            122.67262317361426,
                            29.217249367425964
                        ],
                        [
                            122.66266061507272,
                            29.189023458240047
                        ],
                        [
                            122.65270353389468,
                            29.160796812546085
                        ],
                        [
                            122.64275193008012,
                            29.132569430344073
                        ],
                        [
                            122.63280578523842,
                            29.104341314145124
                        ],
                        [
                            122.62286509936956,
                            29.076112463949244
                        ],
                        [
                            122.61292985414124,
                            29.047882882259316
                        ],
                        [
                            122.60300004955346,
                            29.019652569075348
                        ],
                        [
                            122.59307566733179,
                            28.99142152689204
                        ],
                        [
                            122.58315670747623,
                            28.963189755709394
                        ],
                        [
                            122.57324315177019,
                            28.93495725801396
                        ],
                        [
                            122.56333500021364,
                            28.90672403380574
                        ],
                        [
                            122.55343223464739,
                            28.87849008556319
                        ],
                        [
                            122.54353485507144,
                            28.85025541328631
                        ],
                        [
                            122.50832469177229,
                            28.784910507181028
                        ],
                        [
                            122.44780174474995,
                            28.682455367247343
                        ],
                        [
                            122.41268682097748,
                            28.625272199762417
                        ],
                        [
                            122.40297992045487,
                            28.613361004726244
                        ],
                        [
                            122.39327522069644,
                            28.601449118725125
                        ],
                        [
                            122.38357272170217,
                            28.589536541759053
                        ],
                        [
                            122.37387242055374,
                            28.57762327482427
                        ],
                        [
                            122.36417431725116,
                            28.565709317920764
                        ],
                        [
                            122.35447840887903,
                            28.553794672043523
                        ],
                        [
                            122.34478469543737,
                            28.541879337192537
                        ],
                        [
                            122.3350931740137,
                            28.529963314361524
                        ],
                        [
                            122.32540384460805,
                            28.518046603550488
                        ],
                        [
                            122.31571670431083,
                            28.50612920575186
                        ],
                        [
                            122.30603175312206,
                            28.49421112096566
                        ],
                        [
                            122.29634898813512,
                            28.482292350183073
                        ],
                        [
                            122.28666840935003,
                            28.470372893404104
                        ],
                        [
                            122.27699001386304,
                            28.45845275161869
                        ],
                        [
                            122.26731380167416,
                            28.44653192482683
                        ],
                        [
                            122.25763976988256,
                            28.434610414017197
                        ],
                        [
                            122.24796791848823,
                            28.4226882191898
                        ],
                        [
                            122.2382982445933,
                            28.410765341332077
                        ],
                        [
                            122.223797,
                            28.39288
                        ],
                        [
                            122.136415,
                            28.26287
                        ],
                        [
                            122.11453,
                            28.231373
                        ],
                        [
                            122.061883,
                            28.1504
                        ],
                        [
                            122.05826348359582,
                            28.136406162640174
                        ],
                        [
                            122.05585089272643,
                            28.127076895493094
                        ],
                        [
                            122.05343872192373,
                            28.117747586105484
                        ],
                        [
                            122.05102697071652,
                            28.10841823452511
                        ],
                        [
                            122.04861563910481,
                            28.09908884075197
                        ],
                        [
                            122.04620472661779,
                            28.08975940483378
                        ],
                        [
                            122.04379423325545,
                            28.08042992677054
                        ],
                        [
                            122.04138415854766,
                            28.07110040660992
                        ],
                        [
                            122.0389745024944,
                            28.06177084435192
                        ],
                        [
                            122.03656526462586,
                            28.052441240044146
                        ],
                        [
                            122.03415644494206,
                            28.043111593686604
                        ],
                        [
                            122.03174804297373,
                            28.033781905326855
                        ],
                        [
                            122.02934005872089,
                            28.0244521749649
                        ],
                        [
                            122.02693249171475,
                            28.01512240264826
                        ],
                        [
                            122.0245253419553,
                            28.005792588376927
                        ],
                        [
                            122.0221186089743,
                            27.996462732198374
                        ],
                        [
                            122.01971229277174,
                            27.987132834112586
                        ],
                        [
                            122.01730639287977,
                            27.977802894166988
                        ],
                        [
                            122.01490090929838,
                            27.968472912361577
                        ],
                        [
                            121.89280177532271,
                            27.793262299563796
                        ],
                        [
                            121.65100899095279,
                            27.452171055773654
                        ],
                        [
                            121.25192944907586,
                            26.919949575408936
                        ],
                        [
                            120.41738,
                            25.834922
                        ],
                        [
                            120.295238,
                            25.681457
                        ],
                        [
                            120.255795,
                            25.621943
                        ],
                        [
                            120.23353,
                            25.588572
                        ],
                        [
                            120.213102,
                            25.558618
                        ],
                        [
                            120.18527,
                            25.519217
                        ],
                        [
                            120.159085,
                            25.485748
                        ],
                        [
                            120.13698,
                            25.458802
                        ],
                        [
                            120.108522,
                            25.41915
                        ],
                        [
                            120.067632,
                            25.363445
                        ],
                        [
                            120.030065,
                            25.314362
                        ],
                        [
                            119.925785,
                            25.212928
                        ],
                        [
                            119.891252,
                            25.178968
                        ],
                        [
                            119.825685,
                            25.152127
                        ],
                        [
                            119.738727,
                            25.108095
                        ],
                        [
                            119.715083,
                            25.077918
                        ],
                        [
                            119.693947,
                            25.039498
                        ],
                        [
                            119.674335,
                            25.007567
                        ],
                        [
                            119.64206,
                            24.973763
                        ],
                        [
                            119.607257,
                            24.939593
                        ],
                        [
                            119.60209,
                            24.93447
                        ],
                        [
                            119.579635,
                            24.91234
                        ],
                        [
                            119.548212,
                            24.884622
                        ],
                        [
                            119.53686,
                            24.874612
                        ],
                        [
                            119.518753,
                            24.858677
                        ],
                        [
                            119.483925,
                            24.816163
                        ],
                        [
                            119.478625,
                            24.810115
                        ],
                        [
                            119.4378,
                            24.77478
                        ],
                        [
                            119.324525,
                            24.685578
                        ],
                        [
                            119.272783,
                            24.659662
                        ],
                        [
                            119.16878,
                            24.580482
                        ],
                        [
                            118.798262,
                            24.297123
                        ],
                        [
                            118.76762,
                            24.271828
                        ],
                        [
                            118.757748,
                            24.260232
                        ],
                        [
                            118.726437,
                            24.23394
                        ],
                        [
                            118.711117,
                            24.221558
                        ],
                        [
                            118.689555,
                            24.204277
                        ],
                        [
                            118.390325,
                            23.961898
                        ],
                        [
                            118.282138,
                            23.871837
                        ],
                        [
                            118.266277,
                            23.857813
                        ],
                        [
                            118.246447,
                            23.84081
                        ],
                        [
                            118.215947,
                            23.816315
                        ],
                        [
                            118.21115,
                            23.812467
                        ],
                        [
                            118.178518,
                            23.786082
                        ],
                        [
                            118.165523,
                            23.77538
                        ],
                        [
                            118.121922,
                            23.737165
                        ],
                        [
                            118.09096,
                            23.706678
                        ],
                        [
                            118.067005,
                            23.68313
                        ],
                        [
                            118.060222,
                            23.676505
                        ],
                        [
                            118.026082,
                            23.649047
                        ],
                        [
                            117.99126,
                            23.623113
                        ],
                        [
                            117.96902,
                            23.605533
                        ],
                        [
                            117.926772,
                            23.571122
                        ],
                        [
                            117.900162,
                            23.545878
                        ],
                        [
                            117.854135,
                            23.506083
                        ],
                        [
                            117.816117,
                            23.483992
                        ],
                        [
                            117.784348,
                            23.457877
                        ],
                        [
                            117.75501,
                            23.427415
                        ],
                        [
                            117.722473,
                            23.401962
                        ],
                        [
                            117.691002,
                            23.377798
                        ],
                        [
                            117.658403,
                            23.353228
                        ],
                        [
                            117.623702,
                            23.330733
                        ],
                        [
                            117.586738,
                            23.309922
                        ],
                        [
                            117.551552,
                            23.290418
                        ],
                        [
                            117.515348,
                            23.267852
                        ],
                        [
                            117.480725,
                            23.246723
                        ],
                        [
                            117.444738,
                            23.226362
                        ],
                        [
                            117.411207,
                            23.208672
                        ],
                        [
                            117.378928,
                            23.188758
                        ],
                        [
                            117.347892,
                            23.169293
                        ],
                        [
                            117.311027,
                            23.146893
                        ],
                        [
                            117.280337,
                            23.128473
                        ],
                        [
                            117.24982,
                            23.109152
                        ],
                        [
                            117.221115,
                            23.087772
                        ],
                        [
                            117.19416,
                            23.067473
                        ],
                        [
                            117.163903,
                            23.048313
                        ],
                        [
                            117.134665,
                            23.031172
                        ],
                        [
                            117.10562,
                            23.010807
                        ],
                        [
                            117.079433,
                            22.989085
                        ],
                        [
                            117.044575,
                            22.966855
                        ],
                        [
                            117.012428,
                            22.94672
                        ],
                        [
                            116.983892,
                            22.928743
                        ],
                        [
                            116.955477,
                            22.910467
                        ],
                        [
                            116.92594,
                            22.89135
                        ],
                        [
                            116.896843,
                            22.868533
                        ],
                        [
                            116.869245,
                            22.845237
                        ],
                        [
                            116.83514,
                            22.828185
                        ],
                        [
                            116.805887,
                            22.810975
                        ],
                        [
                            116.780932,
                            22.782058
                        ],
                        [
                            116.757077,
                            22.753715
                        ],
                        [
                            116.730985,
                            22.731985
                        ],
                        [
                            116.704635,
                            22.707072
                        ],
                        [
                            116.681462,
                            22.682133
                        ],
                        [
                            116.621382,
                            22.6494
                        ],
                        [
                            116.44601,
                            22.564942
                        ],
                        [
                            116.412115,
                            22.5498
                        ],
                        [
                            116.379538,
                            22.535902
                        ],
                        [
                            116.335333,
                            22.5179
                        ],
                        [
                            116.24945388136601,
                            22.497859107123443
                        ],
                        [
                            116.19221220533802,
                            22.484478299222452
                        ],
                        [
                            116.13498159903804,
                            22.471077278671515
                        ],
                        [
                            116.07776207689702,
                            22.457656080029306
                        ],
                        [
                            116.02055363891495,
                            22.444214703295827
                        ],
                        [
                            115.96335629931878,
                            22.430753183089255
                        ],
                        [
                            115.9061700581085,
                            22.41727151940958
                        ],
                        [
                            115.84899492930705,
                            22.403769746933996
                        ],
                        [
                            115.79183091291443,
                            22.390247865662488
                        ],
                        [
                            115.73467802274993,
                            22.37670591033078
                        ],
                        [
                            115.67753625881355,
                            22.36314388093887
                        ],
                        [
                            115.62040563472098,
                            22.349561812280523
                        ],
                        [
                            115.56328615047224,
                            22.335959704355737
                        ],
                        [
                            115.50617781947963,
                            22.322337592015863
                        ],
                        [
                            115.44908064174317,
                            22.30869547526089
                        ],
                        [
                            115.391994630472,
                            22.295033388999283
                        ],
                        [
                            115.33491978566613,
                            22.281351333231036
                        ],
                        [
                            115.27785612033165,
                            22.267649342921224
                        ],
                        [
                            115.22080363446855,
                            22.253927418069857
                        ],
                        [
                            115.19332022908142,
                            22.24417736366894
                        ],
                        [
                            115.19540590417026,
                            22.23839917971847
                        ],
                        [
                            115.19749140729454,
                            22.23262096917869
                        ],
                        [
                            115.19957673845425,
                            22.22684273204959
                        ],
                        [
                            115.2016618977751,
                            22.22106446835086
                        ],
                        [
                            115.20374688525706,
                            22.2152861780825
                        ],
                        [
                            115.20583170102594,
                            22.209507861264193
                        ],
                        [
                            115.20791634508174,
                            22.203729517895937
                        ],
                        [
                            115.21000081755002,
                            22.1979511479974
                        ],
                        [
                            115.21208511843079,
                            22.19217275156859
                        ],
                        [
                            115.21416924784964,
                            22.186394328629156
                        ],
                        [
                            115.21625320580657,
                            22.1806158791791
                        ],
                        [
                            115.21833699242706,
                            22.174837403238072
                        ],
                        [
                            115.2204206077111,
                            22.16905890080607
                        ],
                        [
                            115.2225040517842,
                            22.163280371902733
                        ],
                        [
                            115.22458732464634,
                            22.15750181652806
                        ],
                        [
                            115.22667042642288,
                            22.151723234701677
                        ],
                        [
                            115.22875335711385,
                            22.145944626423592
                        ],
                        [
                            115.2308361168445,
                            22.14016599171341
                        ],
                        [
                            115.23396,
                            22.131498
                        ],
                        [
                            115.176105,
                            22.103595
                        ],
                        [
                            115.10898,
                            22.093408
                        ],
                        [
                            115.062852,
                            22.081452
                        ],
                        [
                            114.916785,
                            22.0431
                        ],
                        [
                            114.8743,
                            22.032888
                        ],
                        [
                            114.83511,
                            22.024653
                        ],
                        [
                            114.782645,
                            22.01028
                        ],
                        [
                            114.747735,
                            21.997767
                        ],
                        [
                            114.712355,
                            21.984592
                        ],
                        [
                            114.671602,
                            21.973315
                        ],
                        [
                            114.634425,
                            21.963228
                        ],
                        [
                            114.589367,
                            21.949283
                        ],
                        [
                            114.526828,
                            21.93599
                        ],
                        [
                            114.491273,
                            21.927525
                        ],
                        [
                            114.454462,
                            21.919055
                        ],
                        [
                            114.41708,
                            21.90686
                        ],
                        [
                            114.380657,
                            21.894335
                        ],
                        [
                            114.346355,
                            21.882235
                        ],
                        [
                            114.3178,
                            21.871372
                        ],
                        [
                            114.308638,
                            21.86783
                        ],
                        [
                            114.272483,
                            21.856403
                        ],
                        [
                            114.231862,
                            21.84823
                        ],
                        [
                            114.097218,
                            21.811018
                        ],
                        [
                            113.863833,
                            21.957575
                        ],
                        [
                            113.859468,
                            22.026268
                        ],
                        [
                            113.852828,
                            22.07175
                        ],
                        [
                            113.85243,
                            22.102447
                        ],
                        [
                            113.85011,
                            22.145795
                        ],
                        [
                            113.847972,
                            22.15068
                        ],
                        [
                            113.830908,
                            22.194038
                        ],
                        [
                            113.81551,
                            22.243708
                        ],
                        [
                            113.812282,
                            22.257795
                        ],
                        [
                            113.804425,
                            22.291015
                        ],
                        [
                            113.802765,
                            22.298497
                        ],
                        [
                            113.794157,
                            22.338875
                        ],
                        [
                            113.793063,
                            22.343873
                        ],
                        [
                            113.790422,
                            22.353618
                        ],
                        [
                            113.787087,
                            22.360213
                        ],
                        [
                            113.777862,
                            22.375858
                        ],
                        [
                            113.771765,
                            22.386663
                        ],
                        [
                            113.76211,
                            22.406973
                        ],
                        [
                            113.761058,
                            22.411822
                        ],
                        [
                            113.75779,
                            22.434038
                        ],
                        [
                            113.754807,
                            22.459495
                        ],
                        [
                            113.751902,
                            22.481805
                        ],
                        [
                            113.74695,
                            22.499238
                        ],
                        [
                            113.737397,
                            22.526482
                        ],
                        [
                            113.735768,
                            22.531078
                        ],
                        [
                            113.73299,
                            22.538067
                        ],
                        [
                            113.722682,
                            22.564843
                        ],
                        [
                            113.720165,
                            22.572922
                        ],
                        [
                            113.703785,
                            22.60029
                        ],
                        [
                            113.715608,
                            22.5859
                        ],
                        [
                            113.690302,
                            22.610028
                        ],
                        [
                            113.69029505508423,
                            22.609969029431163
                        ],
                        [
                            113.690307,
                            22.609972
                        ],
                        [
                            113.695008,
                            22.609837
                        ],
                        [
                            113.706825,
                            22.597845
                        ],
                        [
                            113.71272,
                            22.589295
                        ],
                        [
                            113.723528,
                            22.561703
                        ],
                        [
                            113.734943,
                            22.531463
                        ],
                        [
                            113.739903,
                            22.516545
                        ],
                        [
                            113.747678,
                            22.490658
                        ],
                        [
                            113.751578,
                            22.466162
                        ],
                        [
                            113.752405,
                            22.460598
                        ],
                        [
                            113.753473,
                            22.453507
                        ],
                        [
                            113.755235,
                            22.439198
                        ],
                        [
                            113.758067,
                            22.4154
                        ],
                        [
                            113.772182,
                            22.383382
                        ],
                        [
                            113.777048,
                            22.37483
                        ],
                        [
                            113.779103,
                            22.371365
                        ],
                        [
                            113.789988,
                            22.347087
                        ],
                        [
                            113.795392,
                            22.324753
                        ],
                        [
                            113.798503,
                            22.310445
                        ],
                        [
                            113.801948,
                            22.296218
                        ],
                        [
                            113.806392,
                            22.27714
                        ],
                        [
                            113.798045,
                            22.227215
                        ],
                        [
                            113.788057,
                            22.17887
                        ],
                        [
                            113.793723,
                            22.145918
                        ],
                        [
                            113.797373,
                            22.138552
                        ],
                        [
                            113.810263,
                            22.113202
                        ],
                        [
                            113.83216,
                            22.065565
                        ],
                        [
                            113.846688,
                            22.015893
                        ],
                        [
                            113.877822,
                            21.94509825
                        ],
                        [
                            113.89269999999999,
                            21.911075
                        ],
                        [
                            113.9017,
                            21.890225
                        ],
                        [
                            113.90594999999999,
                            21.87795
                        ],
                        [
                            113.90545,
                            21.87425
                        ],
                        [
                            113.9052,
                            21.858349999999998
                        ],
                        [
                            113.9052,
                            21.83025
                        ],
                        [
                            113.9052,
                            21.79525
                        ],
                        [
                            113.9052,
                            21.753349999999998
                        ],
                        [
                            113.910625,
                            21.692375
                        ],
                        [
                            113.921475,
                            21.612325
                        ],
                        [
                            113.90839669616375,
                            21.43558614126474
                        ],
                        [
                            113.87139008849122,
                            21.16215842379422
                        ],
                        [
                            113.83451875597117,
                            20.888722760149328
                        ],
                        [
                            113.79778269860358,
                            20.615279150330053
                        ],
                        [
                            113.7611771349107,
                            20.341827875641997
                        ],
                        [
                            113.72470206489251,
                            20.068368936085143
                        ],
                        [
                            113.68835282105414,
                            19.794902606223282
                        ],
                        [
                            113.65212940339558,
                            19.52142888605641
                        ],
                        [
                            113.61602725326605,
                            19.2479480437114
                        ],
                        [
                            113.58004637066557,
                            18.974460079188255
                        ],
                        [
                            113.54418230085722,
                            18.700965254469445
                        ],
                        [
                            113.50843504384099,
                            18.427463569554973
                        ],
                        [
                            113.47280024406015,
                            18.153955280563633
                        ],
                        [
                            113.4372779015147,
                            17.88044038749543
                        ],
                        [
                            113.40186375528023,
                            17.60691914087515
                        ],
                        [
                            113.36655780535673,
                            17.333391540702795
                        ],
                        [
                            113.33135588107916,
                            17.05985783216834
                        ],
                        [
                            113.29625798244751,
                            16.78631801527178
                        ],
                        [
                            113.26126002484877,
                            16.512772330117627
                        ],
                        [
                            113.208913,
                            16.102445
                        ],
                        [
                            113.04966618412824,
                            15.803296679434263
                        ],
                        [
                            112.9437090815851,
                            15.603813410493093
                        ],
                        [
                            112.83795942041331,
                            15.404279086321242
                        ],
                        [
                            112.73241098882912,
                            15.204695260709643
                        ],
                        [
                            112.62706378683251,
                            15.005061933658293
                        ],
                        [
                            112.52191167710944,
                            14.805380638341607
                        ],
                        [
                            112.41695465965992,
                            14.605651374759583
                        ],
                        [
                            112.312186669156,
                            14.405875656191206
                        ],
                        [
                            112.2076077055977,
                            14.20605348263648
                        ],
                        [
                            112.10321177320375,
                            14.006186348184347
                        ],
                        [
                            111.99899887197418,
                            13.80627425283481
                        ],
                        [
                            111.89496307327832,
                            13.606318672177078
                        ],
                        [
                            111.79110437711617,
                            13.406319606211152
                        ],
                        [
                            111.68741691965283,
                            13.206278512702308
                        ],
                        [
                            111.58390070088831,
                            13.006195391650547
                        ],
                        [
                            111.48054991946918,
                            12.806071683659084
                        ],
                        [
                            111.37736457539546,
                            12.605907388727921
                        ],
                        [
                            111.27433892751895,
                            12.405703930946757
                        ],
                        [
                            111.12004,
                            12.10534
                        ],
                        [
                            111.100747,
                            12.066655
                        ],
                        [
                            111.081343,
                            12.026892
                        ],
                        [
                            111.05914,
                            11.986502
                        ],
                        [
                            111.038503,
                            11.950028
                        ],
                        [
                            111.017198,
                            11.913338
                        ],
                        [
                            110.986735,
                            11.859935
                        ],
                        [
                            110.964788,
                            11.821695
                        ],
                        [
                            110.888955,
                            11.675003
                        ],
                        [
                            110.862503,
                            11.621472
                        ],
                        [
                            110.81362,
                            11.525592
                        ],
                        [
                            110.779908,
                            11.465062
                        ],
                        [
                            110.75818,
                            11.425962
                        ],
                        [
                            110.3328292955437,
                            10.787992831646342
                        ],
                        [
                            110.05004647995818,
                            10.362428261867208
                        ],
                        [
                            109.76804798509133,
                            9.936611901211377
                        ],
                        [
                            109.48676635512314,
                            9.510565665274449
                        ],
                        [
                            109.20620159005361,
                            9.08428955405642
                        ],
                        [
                            108.92628726638725,
                            8.657805081769782
                        ],
                        [
                            108.64702338412405,
                            8.231112248414531
                        ],
                        [
                            108.36834445518912,
                            7.8042322059721485
                        ],
                        [
                            108.09025047958244,
                            7.377164954442632
                        ],
                        [
                            107.81267680939811,
                            6.9499313216475125
                        ],
                        [
                            107.53562344463614,
                            6.522531307586787
                        ],
                        [
                            107.25902648381398,
                            6.094985453026828
                        ],
                        [
                            106.98288592693163,
                            5.667293757967633
                        ],
                        [
                            106.7071385265391,
                            5.239476512370571
                        ],
                        [
                            106.43178428263639,
                            4.81153371623564
                        ],
                        [
                            106.15676051061561,
                            4.383485444223484
                        ],
                        [
                            105.88206721047678,
                            3.9553316963341008
                        ],
                        [
                            105.60764217030552,
                            3.5270923667920573
                        ],
                        [
                            105.196407,
                            2.884605
                        ],
                        [
                            105.139367,
                            2.748765
                        ],
                        [
                            105.125182,
                            2.714703
                        ],
                        [
                            105.110842,
                            2.679983
                        ],
                        [
                            104.999875,
                            2.40442
                        ],
                        [
                            104.911603,
                            2.213172
                        ],
                        [
                            104.880448,
                            2.143603
                        ],
                        [
                            104.865268,
                            2.104615
                        ],
                        [
                            104.855183,
                            2.076478
                        ],
                        [
                            104.842082,
                            2.039642
                        ],
                        [
                            104.826917,
                            1.997825
                        ],
                        [
                            104.812055,
                            1.962758
                        ],
                        [
                            104.783515,
                            1.897717
                        ],
                        [
                            104.730158,
                            1.763068
                        ],
                        [
                            104.63788,
                            1.586678
                        ],
                        [
                            104.60972,
                            1.569117
                        ],
                        [
                            104.58015,
                            1.54273
                        ],
                        [
                            104.550665,
                            1.514862
                        ],
                        [
                            104.527195,
                            1.493573
                        ],
                        [
                            104.499305,
                            1.470705
                        ],
                        [
                            104.474238,
                            1.452098
                        ],
                        [
                            104.450977,
                            1.433162
                        ],
                        [
                            104.430362,
                            1.412477
                        ],
                        [
                            104.40993,
                            1.391337
                        ],
                        [
                            104.387823,
                            1.368957
                        ],
                        [
                            104.367125,
                            1.34909
                        ],
                        [
                            104.346337,
                            1.327732
                        ],
                        [
                            104.332085,
                            1.315272
                        ],
                        [
                            104.321007,
                            1.31081
                        ],
                        [
                            104.292532,
                            1.302363
                        ],
                        [
                            104.28095,
                            1.300117
                        ],
                        [
                            104.26079,
                            1.296527
                        ],
                        [
                            104.22717,
                            1.290293
                        ],
                        [
                            104.214873,
                            1.287498
                        ],
                        [
                            104.209452,
                            1.28589
                        ],
                        [
                            104.182982,
                            1.278923
                        ],
                        [
                            104.173203,
                            1.277382
                        ],
                        [
                            104.158433,
                            1.274902
                        ],
                        [
                            104.151508,
                            1.273963
                        ],
                        [
                            104.132697,
                            1.27164
                        ],
                        [
                            104.117567,
                            1.270492
                        ],
                        [
                            104.113367,
                            1.270207
                        ],
                        [
                            104.105977,
                            1.26966
                        ],
                        [
                            104.089412,
                            1.268405
                        ],
                        [
                            104.07909,
                            1.267047
                        ],
                        [
                            104.062152,
                            1.264822
                        ],
                        [
                            104.05538,
                            1.263917
                        ],
                        [
                            104.050417,
                            1.263217
                        ],
                        [
                            104.046013,
                            1.262625
                        ],
                        [
                            104.016303,
                            1.258428
                        ],
                        [
                            104.012607,
                            1.257883
                        ],
                        [
                            103.981027,
                            1.253527
                        ],
                        [
                            103.97363,
                            1.251555
                        ],
                        [
                            103.969018,
                            1.25043
                        ],
                        [
                            103.95932,
                            1.248557
                        ],
                        [
                            103.957207,
                            1.24775
                        ],
                        [
                            103.950975,
                            1.245627
                        ],
                        [
                            103.94587,
                            1.243507
                        ],
                        [
                            103.94331,
                            1.2424
                        ],
                        [
                            103.929965,
                            1.237758
                        ],
                        [
                            103.924443,
                            1.235902
                        ],
                        [
                            103.920255,
                            1.234478
                        ],
                        [
                            103.91404,
                            1.232513
                        ],
                        [
                            103.908293,
                            1.22954
                        ],
                        [
                            103.901427,
                            1.226815
                        ],
                        [
                            103.89825,
                            1.227398
                        ],
                        [
                            103.893633,
                            1.228992
                        ],
                        [
                            103.891153,
                            1.230313
                        ],
                        [
                            103.877305,
                            1.23498
                        ],
                        [
                            103.877298,
                            1.236015
                        ],
                        [
                            103.878373,
                            1.239605
                        ],
                        [
                            103.881455,
                            1.243845
                        ],
                        [
                            103.882063,
                            1.244562
                        ],
                        [
                            103.913872,
                            1.223718
                        ],
                        [
                            103.885298,
                            1.241492
                        ],
                        [
                            103.884622,
                            1.23336
                        ],
                        [
                            103.876622,
                            1.222628
                        ],
                        [
                            103.869343,
                            1.214272
                        ],
                        [
                            103.867583,
                            1.212513
                        ],
                        [
                            103.86435,
                            1.209598
                        ],
                        [
                            103.843832,
                            1.195925
                        ],
                        [
                            103.837965,
                            1.192722
                        ],
                        [
                            103.822347,
                            1.18465
                        ],
                        [
                            103.801948,
                            1.176797
                        ],
                        [
                            103.76985,
                            1.160492
                        ],
                        [
                            103.76309,
                            1.156292
                        ],
                        [
                            103.758855,
                            1.153583
                        ],
                        [
                            103.739125,
                            1.143742
                        ],
                        [
                            103.723107,
                            1.145933
                        ],
                        [
                            103.710693,
                            1.151972
                        ],
                        [
                            103.707455,
                            1.153735
                        ],
                        [
                            103.684647,
                            1.165453
                        ],
                        [
                            103.674787,
                            1.169967
                        ],
                        [
                            103.655147,
                            1.178052
                        ],
                        [
                            103.641545,
                            1.181605
                        ],
                        [
                            103.635825,
                            1.183043
                        ],
                        [
                            103.615515,
                            1.18737
                        ],
                        [
                            103.594672,
                            1.191648
                        ],
                        [
                            103.584432,
                            1.194017
                        ],
                        [
                            103.549882,
                            1.198318
                        ],
                        [
                            103.538438,
                            1.200773
                        ],
                        [
                            103.517833,
                            1.204928
                        ],
                        [
                            103.505168,
                            1.207667
                        ],
                        [
                            103.485913,
                            1.212442
                        ],
                        [
                            103.474568,
                            1.215792
                        ],
                        [
                            103.465388,
                            1.218967
                        ],
                        [
                            103.434388,
                            1.230063
                        ],
                        [
                            103.429827,
                            1.231713
                        ],
                        [
                            103.41527,
                            1.237435
                        ],
                        [
                            103.395038,
                            1.249177
                        ],
                        [
                            103.386352,
                            1.254953
                        ],
                        [
                            103.364188,
                            1.269845
                        ],
                        [
                            103.342372,
                            1.287168
                        ],
                        [
                            103.304112,
                            1.324072
                        ],
                        [
                            103.264428,
                            1.365275
                        ],
                        [
                            103.224607,
                            1.406347
                        ],
                        [
                            103.184702,
                            1.448618
                        ],
                        [
                            103.145747,
                            1.48923
                        ],
                        [
                            103.104038,
                            1.527658
                        ],
                        [
                            103.062805,
                            1.564363
                        ],
                        [
                            103.020203,
                            1.60378
                        ],
                        [
                            102.972683,
                            1.630693
                        ],
                        [
                            102.92279,
                            1.65712
                        ],
                        [
                            102.871763,
                            1.679147
                        ],
                        [
                            102.820095,
                            1.698367
                        ],
                        [
                            102.765633,
                            1.718558
                        ],
                        [
                            102.707402,
                            1.741843
                        ],
                        [
                            102.654938,
                            1.764998
                        ],
                        [
                            102.568677,
                            1.805453
                        ],
                        [
                            102.512175,
                            1.831962
                        ],
                        [
                            102.336338,
                            1.905918
                        ],
                        [
                            102.282737,
                            1.928127
                        ],
                        [
                            102.234685,
                            1.955265
                        ],
                        [
                            102.191513,
                            1.991673
                        ],
                        [
                            102.150075,
                            2.030435
                        ],
                        [
                            102.108873,
                            2.069153
                        ],
                        [
                            102.06717,
                            2.107505
                        ],
                        [
                            102.025952,
                            2.145472
                        ],
                        [
                            101.983803,
                            2.180498
                        ],
                        [
                            101.934762,
                            2.22003
                        ],
                        [
                            101.888023,
                            2.257117
                        ],
                        [
                            101.836582,
                            2.302937
                        ],
                        [
                            101.79344,
                            2.341077
                        ],
                        [
                            101.748532,
                            2.379132
                        ],
                        [
                            101.703227,
                            2.413188
                        ],
                        [
                            101.654895,
                            2.44838
                        ],
                        [
                            101.610113,
                            2.481257
                        ],
                        [
                            101.566373,
                            2.513238
                        ],
                        [
                            101.51943,
                            2.55083
                        ],
                        [
                            101.477795,
                            2.582918
                        ],
                        [
                            101.430952,
                            2.611958
                        ],
                        [
                            100.777115,
                            3.03596
                        ],
                        [
                            100.730645,
                            3.07431
                        ],
                        [
                            100.687693,
                            3.108668
                        ],
                        [
                            100.641222,
                            3.145398
                        ],
                        [
                            100.594978,
                            3.183615
                        ],
                        [
                            100.550935,
                            3.221522
                        ],
                        [
                            100.506688,
                            3.256812
                        ],
                        [
                            100.46342,
                            3.289165
                        ],
                        [
                            100.419757,
                            3.321942
                        ],
                        [
                            100.375757,
                            3.354168
                        ],
                        [
                            100.332548,
                            3.38559
                        ],
                        [
                            100.288962,
                            3.419702
                        ],
                        [
                            99.884333,
                            3.760647
                        ],
                        [
                            99.86964893685635,
                            3.7771674848331696
                        ],
                        [
                            99.85985931259395,
                            3.788181031279562
                        ],
                        [
                            99.85006943949824,
                            3.7991944676169003
                        ],
                        [
                            99.84027931610825,
                            3.8102077931964784
                        ],
                        [
                            99.83048894242398,
                            3.821221008018296
                        ],
                        [
                            99.82069831698425,
                            3.8322341114335297
                        ],
                        [
                            99.81090743978905,
                            3.843247103442179
                        ],
                        [
                            99.80111630937705,
                            3.8542599833952997
                        ],
                        [
                            99.79132492574826,
                            3.865272751292892
                        ],
                        [
                            99.78153328744116,
                            3.8762854064858927
                        ],
                        [
                            99.77174139445577,
                            3.887297948974302
                        ],
                        [
                            99.76194924533036,
                            3.8983103781089348
                        ],
                        [
                            99.75215684006491,
                            3.9093226938897896
                        ],
                        [
                            99.74236417719757,
                            3.9203348956675614
                        ],
                        [
                            99.73257125672833,
                            3.93134698344225
                        ],
                        [
                            99.7227780771951,
                            3.9423589565644264
                        ],
                        [
                            99.71298463859787,
                            3.9533708150340914
                        ],
                        [
                            99.70319093947444,
                            3.964382558201693
                        ],
                        [
                            99.69339697982483,
                            3.975394186067231
                        ],
                        [
                            99.62615,
                            4.01295
                        ],
                        [
                            99.50145,
                            4.07705
                        ],
                        [
                            99.42575,
                            4.11895
                        ],
                        [
                            99.39905,
                            4.13865
                        ],
                        [
                            99.35585,
                            4.17995
                        ],
                        [
                            99.29615,
                            4.242850000000001
                        ],
                        [
                            99.253725,
                            4.2886750000000005
                        ],
                        [
                            99.22857499999999,
                            4.317425
                        ],
                        [
                            99.1999,
                            4.334925
                        ],
                        [
                            99.1677,
                            4.341175
                        ],
                        [
                            99.13905,
                            4.347849999999999
                        ],
                        [
                            99.11395,
                            4.3549500000000005
                        ],
                        [
                            99.01365356190323,
                            4.413555999169749
                        ],
                        [
                            98.8381606857097,
                            4.523667997509246
                        ],
                        [
                            98.72208342959976,
                            4.603825500534437
                        ],
                        [
                            98.66542179357342,
                            4.65402850824532
                        ],
                        [
                            98.6097932316702,
                            4.720397509075571
                        ],
                        [
                            98.55519774389006,
                            4.80293250302519
                        ],
                        [
                            98.49725000000001,
                            4.8597
                        ],
                        [
                            98.43594999999999,
                            4.8907
                        ],
                        [
                            98.40532699856975,
                            4.907179300019571
                        ],
                        [
                            98.40538099570927,
                            4.909137900058715
                        ],
                        [
                            98.4054349931659,
                            4.911096500093517
                        ],
                        [
                            98.40548899093966,
                            4.913055100123979
                        ],
                        [
                            98.40554298903083,
                            4.915013700150099
                        ],
                        [
                            98.40559698743942,
                            4.916972300171875
                        ],
                        [
                            98.40565098616568,
                            4.918930900189305
                        ],
                        [
                            98.40570498520961,
                            4.920889500202389
                        ],
                        [
                            98.40575898457143,
                            4.922848100211121
                        ],
                        [
                            98.40581298425116,
                            4.924806700215502
                        ],
                        [
                            98.40586698424909,
                            4.92676530021553
                        ],
                        [
                            98.40592098456523,
                            4.928723900211206
                        ],
                        [
                            98.40597498519978,
                            4.930682500202523
                        ],
                        [
                            98.40602898615273,
                            4.932641100189482
                        ],
                        [
                            98.40608298742441,
                            4.934599700172081
                        ],
                        [
                            98.40613698901481,
                            4.936558300150318
                        ],
                        [
                            98.40619099092416,
                            4.938516900124191
                        ],
                        [
                            98.40624499315246,
                            4.940475500093701
                        ],
                        [
                            98.40629899569996,
                            4.942434100058842
                        ],
                        [
                            98.40638,
                            4.945372
                        ],
                        [
                            98.360987,
                            4.982152
                        ],
                        [
                            98.3152,
                            5.019478
                        ],
                        [
                            98.270012,
                            5.057608
                        ],
                        [
                            98.226313,
                            5.093728
                        ],
                        [
                            98.19651009712939,
                            5.116041630858005
                        ],
                        [
                            98.17664057018078,
                            5.130916771880928
                        ],
                        [
                            98.1567701181973,
                            5.145791300021438
                        ],
                        [
                            98.13689873576888,
                            5.1606652116441065
                        ],
                        [
                            98.11702642289552,
                            5.175538506748934
                        ],
                        [
                            98.09715317416689,
                            5.190411181699451
                        ],
                        [
                            98.077278989583,
                            5.205283236495658
                        ],
                        [
                            98.05740386373327,
                            5.220154667500033
                        ],
                        [
                            98.03752779661772,
                            5.235025474712576
                        ],
                        [
                            98.0176507828256,
                            5.249895654494711
                        ],
                        [
                            97.9977728223569,
                            5.264765206846438
                        ],
                        [
                            97.97789390980068,
                            5.279634128128116
                        ],
                        [
                            97.95801404515697,
                            5.294502418339746
                        ],
                        [
                            97.93813322301455,
                            5.30937007384062
                        ],
                        [
                            97.9182514433734,
                            5.324237094630738
                        ],
                        [
                            97.89836870082223,
                            5.339103477068319
                        ],
                        [
                            97.87848499536102,
                            5.35396922115336
                        ],
                        [
                            97.85860032157808,
                            5.368834323243002
                        ],
                        [
                            97.83871467947344,
                            5.383698783337241
                        ],
                        [
                            97.80777417141852,
                            5.401525393865165
                        ],
                        [
                            97.7657787974133,
                            5.42231415482677
                        ],
                        [
                            97.72378052536578,
                            5.443100014253841
                        ],
                        [
                            97.68177935527592,
                            5.4638829721463775
                        ],
                        [
                            97.63977526524974,
                            5.484663005764392
                        ],
                        [
                            97.59776825528724,
                            5.505440115107885
                        ],
                        [
                            97.55575830350756,
                            5.526214277430794
                        ],
                        [
                            97.51374540991071,
                            5.5469854927331195
                        ],
                        [
                            97.471729552629,
                            5.567753738262681
                        ],
                        [
                            97.42971073166242,
                            5.588519014019477
                        ],
                        [
                            97.38768892515665,
                            5.609281297245175
                        ],
                        [
                            97.34566413311168,
                            5.630040587939773
                        ],
                        [
                            97.30363633368668,
                            5.650796863338741
                        ],
                        [
                            97.26160552688165,
                            5.6715501234420795
                        ],
                        [
                            97.21957169086929,
                            5.692300345479024
                        ],
                        [
                            97.17753482564959,
                            5.713047529449579
                        ],
                        [
                            97.13549490940892,
                            5.733791652576704
                        ],
                        [
                            97.09345194214728,
                            5.7545327148604
                        ],
                        [
                            97.05140590206494,
                            5.775270693517326
                        ],
                        [
                            97.00935678916193,
                            5.796005588547478
                        ],
                        [
                            96.95043334801369,
                            5.815647103133612
                        ],
                        [
                            96.87463557862023,
                            5.8341952372757255
                        ],
                        [
                            96.79883278913093,
                            5.852733214079813
                        ],
                        [
                            96.72302497954576,
                            5.871261033545876
                        ],
                        [
                            96.64721212269058,
                            5.889778629451669
                        ],
                        [
                            96.57139421856539,
                            5.908286001797193
                        ],
                        [
                            96.49557124012338,
                            5.926783084398591
                        ],
                        [
                            96.41974318736456,
                            5.9452698772558605
                        ],
                        [
                            96.34391003336998,
                            5.96374631422389
                        ],
                        [
                            96.26807177813964,
                            5.982212395302678
                        ],
                        [
                            96.19222839488353,
                            6.000668054386214
                        ],
                        [
                            96.11637988360164,
                            6.019113291474495
                        ],
                        [
                            96.04052621763344,
                            6.037548040500976
                        ],
                        [
                            95.96466739697894,
                            6.055972301465656
                        ],
                        [
                            95.88880339510811,
                            6.074386008341811
                        ],
                        [
                            95.81293421202096,
                            6.092789161129446
                        ],
                        [
                            95.7370598213185,
                            6.111181693842028
                        ],
                        [
                            95.66118022300071,
                            6.129563606479558
                        ],
                        [
                            95.5852953908007,
                            6.147934833096068
                        ],
                        [
                            95.50940532471841,
                            6.166295373691557
                        ],
                        [
                            95.20928243468106,
                            6.173046279278254
                        ],
                        [
                            94.68492672068862,
                            6.168187549856162
                        ],
                        [
                            94.16058162635403,
                            6.162816423806414
                        ],
                        [
                            93.63624715167731,
                            6.156932901129011
                        ],
                        [
                            93.111925295985,
                            6.15053798993932
                        ],
                        [
                            92.58761605927711,
                            6.1436316902373385
                        ],
                        [
                            92.06332142359096,
                            6.136215185162802
                        ],
                        [
                            91.53904138892656,
                            6.128288474715711
                        ],
                        [
                            91.01477791732245,
                            6.119852916548203
                        ],
                        [
                            90.49053100877862,
                            6.1109085106602805
                        ],
                        [
                            89.96630260265545,
                            6.101456788629923
                        ],
                        [
                            89.44209269895293,
                            6.091497750457128
                        ],
                        [
                            88.91790321170788,
                            6.081033100985165
                        ],
                        [
                            88.39373414092029,
                            6.070062840214032
                        ],
                        [
                            87.869587372696,
                            6.058588845518441
                        ],
                        [
                            87.34546290703503,
                            6.046611116898395
                        ],
                        [
                            86.82136259954649,
                            6.034131703453704
                        ],
                        [
                            86.29728645023039,
                            6.021150605184368
                        ],
                        [
                            85.77323628167926,
                            6.007670042037275
                        ],
                        [
                            85.24921209389308,
                            5.993690014012425
                        ],
                        [
                            84.90919891329315,
                            5.98395535900742
                        ],
                        [
                            84.75319673987948,
                            5.9784660770222615
                        ],
                        [
                            84.59719772041413,
                            5.972932817203885
                        ],
                        [
                            84.44120185489712,
                            5.96735557955229
                        ],
                        [
                            84.28520918726048,
                            5.961734448541847
                        ],
                        [
                            84.12921971750421,
                            5.956069424172554
                        ],
                        [
                            83.97323348917382,
                            5.950360592234574
                        ],
                        [
                            83.8172505022693,
                            5.944607952727908
                        ],
                        [
                            83.66127079994456,
                            5.938811592755291
                        ],
                        [
                            83.5052943821996,
                            5.932971512316728
                        ],
                        [
                            83.34932129179163,
                            5.927087799824267
                        ],
                        [
                            83.19335152872065,
                            5.92116045527791
                        ],
                        [
                            83.03738513534205,
                            5.915189568395713
                        ],
                        [
                            82.88142211165581,
                            5.909175139177677
                        ],
                        [
                            82.7254624996105,
                            5.903117258644511
                        ],
                        [
                            82.56950629920613,
                            5.8970159267962154
                        ],
                        [
                            82.4135535519795,
                            5.890871235952754
                        ],
                        [
                            82.25760425793064,
                            5.884683186114127
                        ],
                        [
                            82.10165845817966,
                            5.87845187089611
                        ],
                        [
                            81.867745,
                            5.86904
                        ],
                        [
                            81.814402,
                            5.865032
                        ],
                        [
                            81.756513,
                            5.860198
                        ],
                        [
                            81.606828,
                            5.841163
                        ],
                        [
                            81.48711,
                            5.824925
                        ],
                        [
                            81.439598,
                            5.823285
                        ],
                        [
                            81.386215,
                            5.825433
                        ],
                        [
                            81.3348,
                            5.82754
                        ],
                        [
                            81.283807,
                            5.82998
                        ],
                        [
                            81.234738,
                            5.83214
                        ],
                        [
                            81.187843,
                            5.83387
                        ],
                        [
                            81.138415,
                            5.835843
                        ],
                        [
                            81.089778,
                            5.835815
                        ],
                        [
                            81.039695,
                            5.833813
                        ],
                        [
                            80.989637,
                            5.831473
                        ],
                        [
                            80.937113,
                            5.828692
                        ],
                        [
                            80.887418,
                            5.825938
                        ],
                        [
                            80.83542,
                            5.823045
                        ],
                        [
                            80.788598,
                            5.820685
                        ],
                        [
                            80.740572,
                            5.81814
                        ],
                        [
                            80.478957,
                            5.818665
                        ],
                        [
                            80.394468,
                            5.843755
                        ],
                        [
                            80.36195,
                            5.857648
                        ],
                        [
                            80.344648,
                            5.872015
                        ],
                        [
                            80.33218,
                            5.883092
                        ],
                        [
                            80.328383,
                            5.886802
                        ],
                        [
                            80.321313,
                            5.893512
                        ],
                        [
                            80.306322,
                            5.908408
                        ],
                        [
                            80.304077,
                            5.910835
                        ],
                        [
                            80.299215,
                            5.916173
                        ],
                        [
                            80.293845,
                            5.922383
                        ],
                        [
                            80.288738,
                            5.927918
                        ],
                        [
                            80.28468,
                            5.930982
                        ],
                        [
                            80.283042,
                            5.932183
                        ],
                        [
                            80.274947,
                            5.938477
                        ],
                        [
                            80.269728,
                            5.941553
                        ],
                        [
                            80.26082,
                            5.943992
                        ],
                        [
                            80.245492,
                            5.944887
                        ],
                        [
                            80.238637,
                            5.945168
                        ],
                        [
                            80.22621,
                            5.945743
                        ],
                        [
                            80.208825,
                            5.947888
                        ],
                        [
                            80.202457,
                            5.94911
                        ],
                        [
                            80.193703,
                            5.951167
                        ],
                        [
                            80.16693,
                            5.957373
                        ],
                        [
                            80.148437,
                            5.96286
                        ],
                        [
                            80.140195,
                            5.965517
                        ],
                        [
                            80.130605,
                            5.968707
                        ],
                        [
                            80.106938,
                            5.976518
                        ],
                        [
                            80.09801,
                            5.979517
                        ],
                        [
                            80.090328,
                            5.982113
                        ],
                        [
                            80.058907,
                            5.992922
                        ],
                        [
                            80.039195,
                            5.999708
                        ],
                        [
                            79.984798,
                            6.008547
                        ],
                        [
                            79.8134245,
                            6.01323675
                        ],
                        [
                            79.738275,
                            6.014475
                        ],
                        [
                            79.702225,
                            6.013825
                        ],
                        [
                            79.65381250375495,
                            6.022958237304372
                        ],
                        [
                            79.59303751126487,
                            6.041874711913117
                        ],
                        [
                            79.53225826578011,
                            6.0607844275317175
                        ],
                        [
                            79.47147476730072,
                            6.079687384160175
                        ],
                        [
                            79.41068699152447,
                            6.098583538298232
                        ],
                        [
                            79.34989493845137,
                            6.11747288994589
                        ],
                        [
                            79.28909858384296,
                            6.1363553956101295
                        ],
                        [
                            79.22829792769923,
                            6.155231055290949
                        ],
                        [
                            79.16749294584568,
                            6.174099825502663
                        ],
                        [
                            79.1066836382823,
                            6.192961706245267
                        ],
                        [
                            79.04586998089914,
                            6.211816654040499
                        ],
                        [
                            78.98505197369619,
                            6.230664668888359
                        ],
                        [
                            78.92422959262831,
                            6.249505707318101
                        ],
                        [
                            78.8634028376955,
                            6.268339769329726
                        ],
                        [
                            78.80257168491804,
                            6.287166811460106
                        ],
                        [
                            78.7417361342959,
                            6.305986833709239
                        ],
                        [
                            78.68089616191503,
                            6.324799792621713
                        ],
                        [
                            78.62005176777541,
                            6.343605688197524
                        ],
                        [
                            78.5592029280292,
                            6.362404476989073
                        ],
                        [
                            78.467923,
                            6.390592
                        ],
                        [
                            78.32125249034478,
                            6.4364547330818125
                        ],
                        [
                            78.22346035525007,
                            6.467011252077793
                        ],
                        [
                            78.1256564248308,
                            6.4975491346818774
                        ],
                        [
                            78.0278405981779,
                            6.528068198391924
                        ],
                        [
                            77.9300128752914,
                            6.558568443207934
                        ],
                        [
                            77.83217315572108,
                            6.589049686678603
                        ],
                        [
                            77.73432143946695,
                            6.619511928803934
                        ],
                        [
                            77.63645762654238,
                            6.6499549871845485
                        ],
                        [
                            77.53858171694736,
                            6.680378861820446
                        ],
                        [
                            77.44069361116357,
                            6.710783370365274
                        ],
                        [
                            77.342793309191,
                            6.741168512819032
                        ],
                        [
                            77.24488071198414,
                            6.771534106889504
                        ],
                        [
                            77.146955819543,
                            6.801880152576693
                        ],
                        [
                            77.04901853329966,
                            6.832206467643655
                        ],
                        [
                            76.95106885325413,
                            6.86251305209039
                        ],
                        [
                            76.85310668132075,
                            6.892799723736377
                        ],
                        [
                            76.75513201749953,
                            6.923066482581617
                        ],
                        [
                            76.65714476419168,
                            6.953313146503177
                        ],
                        [
                            76.510145,
                            6.998653
                        ],
                        [
                            76.439592,
                            7.019347
                        ],
                        [
                            76.21213108363476,
                            7.087789268941543
                        ],
                        [
                            76.06046037092926,
                            7.133368131392189
                        ],
                        [
                            75.90875955642844,
                            7.17889767699912
                        ],
                        [
                            75.75702830486193,
                            7.224377247608077
                        ],
                        [
                            75.60526661622976,
                            7.26980684321906
                        ],
                        [
                            75.45347415815576,
                            7.315185806092064
                        ],
                        [
                            75.30165093063994,
                            7.360514136227089
                        ],
                        [
                            75.14979660424015,
                            7.405791176310145
                        ],
                        [
                            74.9979111789564,
                            7.4510169263412305
                        ],
                        [
                            74.84599432831999,
                            7.496190729444365
                        ],
                        [
                            74.69404605233092,
                            7.541312585619549
                        ],
                        [
                            74.54206602753379,
                            7.586381838441035
                        ],
                        [
                            74.39005425392861,
                            7.631398487908827
                        ],
                        [
                            74.2380104111127,
                            7.676361878059892
                        ],
                        [
                            74.08593449908605,
                            7.721272008894232
                        ],
                        [
                            73.93382620053836,
                            7.766128224924245
                        ],
                        [
                            73.78168551546963,
                            7.81093052614993
                        ],
                        [
                            73.62951212970145,
                            7.855678257572079
                        ],
                        [
                            73.401203,
                            7.922718
                        ],
                        [
                            73.34465684085873,
                            7.916087167413805
                        ],
                        [
                            73.30696021063815,
                            7.911663230063111
                        ],
                        [
                            73.26926438962451,
                            7.907235910419187
                        ],
                        [
                            73.23156937810123,
                            7.902805212459947
                        ],
                        [
                            73.1938751760683,
                            7.8983711361853945
                        ],
                        [
                            73.15618178380353,
                            7.893933685578848
                        ],
                        [
                            73.11848920130691,
                            7.88949286064031
                        ],
                        [
                            73.08079742885062,
                            7.885048665358496
                        ],
                        [
                            73.04310646643464,
                            7.880601099733408
                        ],
                        [
                            73.00541631432543,
                            7.876150167759148
                        ],
                        [
                            72.967726972523,
                            7.871695869435716
                        ],
                        [
                            72.93003844128819,
                            7.867238208762595
                        ],
                        [
                            72.89235072062101,
                            7.862777185739782
                        ],
                        [
                            72.8546638107766,
                            7.858312804372129
                        ],
                        [
                            72.81697771175496,
                            7.853845064659633
                        ],
                        [
                            72.77929242380557,
                            7.849373970612501
                        ],
                        [
                            72.74160794692844,
                            7.844899522230735
                        ],
                        [
                            72.7039242813674,
                            7.8404217235298885
                        ],
                        [
                            72.66624142712247,
                            7.835940574509963
                        ],
                        [
                            72.56037696468069,
                            7.871861928645654
                        ],
                        [
                            72.38633089404205,
                            7.948185785936961
                        ],
                        [
                            72.21221980608183,
                            8.024436846034147
                        ],
                        [
                            72.03804370080005,
                            8.10061510893721
                        ],
                        [
                            71.86380139913732,
                            8.17671911128274
                        ],
                        [
                            71.68949290109364,
                            8.252748853070736
                        ],
                        [
                            71.51511703394581,
                            8.328702869474004
                        ],
                        [
                            71.34067379769382,
                            8.40458116049254
                        ],
                        [
                            71.16616202610479,
                            8.480382259827538
                        ],
                        [
                            70.9915817191787,
                            8.55610616747899
                        ],
                        [
                            70.81693171732883,
                            8.631751415669843
                        ],
                        [
                            70.64221202055518,
                            8.707318004400094
                        ],
                        [
                            70.46742147607455,
                            8.782804464409052
                        ],
                        [
                            70.29256008388694,
                            8.858210795696717
                        ],
                        [
                            70.11762669817188,
                            8.933535527514646
                        ],
                        [
                            69.94262131892935,
                            9.008778659862838
                        ],
                        [
                            69.76754280746235,
                            9.083938720502264
                        ],
                        [
                            69.59239116377086,
                            9.159015709432921
                        ],
                        [
                            69.41716525644384,
                            9.234008152923689
                        ],
                        [
                            69.154215,
                            9.34637
                        ],
                        [
                            68.908855053291,
                            9.43380150114376
                        ],
                        [
                            68.74522633699914,
                            9.492013385457948
                        ],
                        [
                            68.58154220222141,
                            9.550149486657153
                        ],
                        [
                            68.41780206420304,
                            9.608208803863537
                        ],
                        [
                            68.25400592294403,
                            9.666191337077102
                        ],
                        [
                            68.09015319949424,
                            9.724096085436617
                        ],
                        [
                            67.92624389385367,
                            9.78192304894208
                        ],
                        [
                            67.76227743296582,
                            9.839671226767646
                        ],
                        [
                            67.59825381683069,
                            9.897340618913308
                        ],
                        [
                            67.43417247837476,
                            9.954930224608095
                        ],
                        [
                            67.27003341759803,
                            10.012440043852004
                        ],
                        [
                            67.10583607349955,
                            10.069869075949127
                        ],
                        [
                            66.94158044607931,
                            10.127217320899462
                        ],
                        [
                            66.77726598049878,
                            10.1844837781031
                        ],
                        [
                            66.61289267675795,
                            10.241668447560043
                        ],
                        [
                            66.44845998627102,
                            10.29877032878803
                        ],
                        [
                            66.28396790903798,
                            10.355789421787069
                        ],
                        [
                            66.1194159028161,
                            10.41272472621494
                        ],
                        [
                            65.872498,
                            10.498002
                        ],
                        [
                            65.85479,
                            10.503757
                        ],
                        [
                            65.08787312850177,
                            10.772403956263979
                        ],
                        [
                            64.57598408740961,
                            10.9506555795098
                        ],
                        [
                            64.06348391955743,
                            11.128060855158788
                        ],
                        [
                            63.55035674428575,
                            11.304589313683852
                        ],
                        [
                            63.03660256159458,
                            11.480240955084994
                        ],
                        [
                            62.5222061547027,
                            11.65498533045605
                        ],
                        [
                            62.00716752361012,
                            11.82882243979702
                        ],
                        [
                            61.49147214326101,
                            12.001721863305889
                        ],
                        [
                            60.975120013655356,
                            12.173683600982649
                        ],
                        [
                            60.458097329453494,
                            12.344677271378
                        ],
                        [
                            59.94040409065542,
                            12.514702874491938
                        ],
                        [
                            59.42202723971519,
                            12.683730077259147
                        ],
                        [
                            58.90296677663281,
                            12.851758879679627
                        ],
                        [
                            58.383210419758086,
                            13.018759007901728
                        ],
                        [
                            57.86275816909102,
                            13.184730461925449
                        ],
                        [
                            57.34159854693482,
                            13.349643038754696
                        ],
                        [
                            56.81973155328947,
                            13.513496738389469
                        ],
                        [
                            56.2971465423501,
                            13.676261441155141
                        ],
                        [
                            55.512192,
                            13.918775
                        ],
                        [
                            55.396671299896376,
                            13.945197945011362
                        ],
                        [
                            55.319645747675,
                            13.96278900840463
                        ],
                        [
                            55.24260844330132,
                            13.980355838516932
                        ],
                        [
                            55.16555938490333,
                            13.997898364427671
                        ],
                        [
                            55.08849857248103,
                            14.015416586136853
                        ],
                        [
                            55.01142600450373,
                            14.032910432840545
                        ],
                        [
                            54.93434168097144,
                            14.050379904538744
                        ],
                        [
                            54.85724560069542,
                            14.067824930545154
                        ],
                        [
                            54.78013776367567,
                            14.08524551085977
                        ],
                        [
                            54.70301816906604,
                            14.102641574914887
                        ],
                        [
                            54.62588681686654,
                            14.120013122710503
                        ],
                        [
                            54.548743706574385,
                            14.137360083798496
                        ],
                        [
                            54.471588838189575,
                            14.154682458178863
                        ],
                        [
                            54.39442221155312,
                            14.171980175524029
                        ],
                        [
                            54.31724382666502,
                            14.189253235833995
                        ],
                        [
                            54.240053683710954,
                            14.206501568902725
                        ],
                        [
                            54.16285178269092,
                            14.223725174730223
                        ],
                        [
                            54.08563812413568,
                            14.240923983232978
                        ],
                        [
                            53.9698,
                            14.266685
                        ],
                        [
                            53.912555,
                            14.279917
                        ],
                        [
                            53.8048454306834,
                            14.280544660795352
                        ],
                        [
                            53.73303879789606,
                            14.280941588531164
                        ],
                        [
                            53.66123191186577,
                            14.281317003472555
                        ],
                        [
                            53.58942480003009,
                            14.281670904296686
                        ],
                        [
                            53.51761746238901,
                            14.282003291003562
                        ],
                        [
                            53.445809926386545,
                            14.282314162421937
                        ],
                        [
                            53.37400219202269,
                            14.282603518551813
                        ],
                        [
                            53.30219428674704,
                            14.282871358373551
                        ],
                        [
                            53.2303862105596,
                            14.283117681887148
                        ],
                        [
                            53.15857799091478,
                            14.2833424882246
                        ],
                        [
                            53.08676962781257,
                            14.2835457773859
                        ],
                        [
                            53.014961148711365,
                            14.283727548654676
                        ],
                        [
                            52.94315255361116,
                            14.283887802030927
                        ],
                        [
                            52.871343869973714,
                            14.284026536949924
                        ],
                        [
                            52.79953509779904,
                            14.284143753411666
                        ],
                        [
                            52.72772626455131,
                            14.284239451003085
                        ],
                        [
                            52.655917370230526,
                            14.284313629724185
                        ],
                        [
                            52.5841084423026,
                            14.28436628931355
                        ],
                        [
                            52.476395,
                            14.284413
                        ],
                        [
                            52.465573,
                            14.281208
                        ],
                        [
                            52.273472,
                            14.227035
                        ],
                        [
                            52.16860643604628,
                            14.19630892486001
                        ],
                        [
                            52.09870870622464,
                            14.175804614440228
                        ],
                        [
                            52.028823622550505,
                            14.155280043693988
                        ],
                        [
                            51.95895116720419,
                            14.134735281006186
                        ],
                        [
                            51.8890913401857,
                            14.114170326376819
                        ],
                        [
                            51.81924412339583,
                            14.093585248234248
                        ],
                        [
                            51.74940951683459,
                            14.072980046578477
                        ],
                        [
                            51.67958750212432,
                            14.052354789880702
                        ],
                        [
                            51.60977807926503,
                            14.031709478140924
                        ],
                        [
                            51.53998122960172,
                            14.01104417987255
                        ],
                        [
                            51.470196953134405,
                            13.990358895075584
                        ],
                        [
                            51.40042523093169,
                            13.969653692305016
                        ],
                        [
                            51.33066606299357,
                            13.948928571560845
                        ],
                        [
                            51.26091943011343,
                            13.928183601439029
                        ],
                        [
                            51.19118533229127,
                            13.907418781939565
                        ],
                        [
                            51.12146375004619,
                            13.886634181698756
                        ],
                        [
                            51.05175468337819,
                            13.865829800716607
                        ],
                        [
                            50.982058112533146,
                            13.845005707669149
                        ],
                        [
                            50.877532,
                            13.81374
                        ],
                        [
                            50.75946253025018,
                            13.777537715934006
                        ],
                        [
                            50.68076580951367,
                            13.75337787851913
                        ],
                        [
                            50.60208534787387,
                            13.729193059733374
                        ],
                        [
                            50.52342111268416,
                            13.704983361084006
                        ],
                        [
                            50.444773103944556,
                            13.680748782571026
                        ],
                        [
                            50.36614128856502,
                            13.65648942575554
                        ],
                        [
                            50.28752566654555,
                            13.632205290637547
                        ],
                        [
                            50.20892620435481,
                            13.607896478830924
                        ],
                        [
                            50.130342901992805,
                            13.58356299033567
                        ],
                        [
                            50.05177572548888,
                            13.559204926817358
                        ],
                        [
                            49.97322467484304,
                            13.534822288275988
                        ],
                        [
                            49.8946897156475,
                            13.510415176427774
                        ],
                        [
                            49.81617084790227,
                            13.485983591272717
                        ],
                        [
                            49.73766803676449,
                            13.461527634576626
                        ],
                        [
                            49.65918128223416,
                            13.437047306339505
                        ],
                        [
                            49.580710549035416,
                            13.412542708375714
                        ],
                        [
                            49.50225583716826,
                            13.38801384068525
                        ],
                        [
                            49.42381711092602,
                            13.363460805130014
                        ],
                        [
                            49.306183,
                            13.326595
                        ],
                        [
                            49.133993,
                            13.268265
                        ],
                        [
                            49.117835,
                            13.263308
                        ],
                        [
                            49.012777,
                            13.231088
                        ],
                        [
                            48.909465,
                            13.199825
                        ],
                        [
                            48.733753,
                            13.14614
                        ],
                        [
                            47.723928,
                            12.830102
                        ],
                        [
                            47.71777,
                            12.828275
                        ],
                        [
                            47.583849612015975,
                            12.785576252028012
                        ],
                        [
                            47.49458947839136,
                            12.757080440557843
                        ],
                        [
                            47.40534946979815,
                            12.728554649598829
                        ],
                        [
                            47.31612952631215,
                            12.699999031020035
                        ],
                        [
                            47.22692964793336,
                            12.671413584821456
                        ],
                        [
                            47.137749774055465,
                            12.642798462934305
                        ],
                        [
                            47.048589904678465,
                            12.614153665358582
                        ],
                        [
                            46.959449978517824,
                            12.5854793440859
                        ],
                        [
                            46.87032999557354,
                            12.556775499116265
                        ],
                        [
                            46.781229893887144,
                            12.52804228249998
                        ],
                        [
                            46.69214967345863,
                            12.499279694237048
                        ],
                        [
                            46.60308927165946,
                            12.470487886434773
                        ],
                        [
                            46.51404868848962,
                            12.441666859093154
                        ],
                        [
                            46.42502786065489,
                            12.412816764374814
                        ],
                        [
                            46.336026788155266,
                            12.383937602279753
                        ],
                        [
                            46.24704540703462,
                            12.355029525024255
                        ],
                        [
                            46.15808371729295,
                            12.326092532608325
                        ],
                        [
                            46.06914165431659,
                            12.297126777300269
                        ],
                        [
                            45.935758,
                            12.253635
                        ],
                        [
                            45.927705,
                            12.25134
                        ],
                        [
                            45.786383,
                            12.21122
                        ],
                        [
                            45.78142,
                            12.209818
                        ],
                        [
                            44.621657,
                            11.942473
                        ],
                        [
                            44.605278,
                            11.940373
                        ],
                        [
                            43.64163,
                            11.82321
                        ],
                        [
                            43.559263,
                            11.815053
                        ],
                        [
                            43.477462,
                            11.810105
                        ],
                        [
                            43.399173,
                            11.803442
                        ],
                        [
                            43.323722,
                            11.79787
                        ],
                        [
                            43.25223,
                            11.790503
                        ],
                        [
                            43.186222,
                            11.78185
                        ],
                        [
                            43.171837,
                            11.778928
                        ],
                        [
                            43.156402,
                            11.77575
                        ],
                        [
                            43.127375,
                            11.76969
                        ],
                        [
                            43.108907,
                            11.766145
                        ],
                        [
                            43.100277,
                            11.761282
                        ],
                        [
                            43.072665,
                            11.675872
                        ],
                        [
                            43.073438,
                            11.677035
                        ],
                        [
                            43.063573,
                            11.657922
                        ],
                        [
                            43.062788,
                            11.655717
                        ],
                        [
                            43.06135,
                            11.651648
                        ],
                        [
                            43.06001,
                            11.647637
                        ],
                        [
                            43.059387,
                            11.644922
                        ],
                        [
                            43.059252,
                            11.644452
                        ],
                        [
                            43.061268,
                            11.630985
                        ],
                        [
                            43.063498,
                            11.627297
                        ],
                        [
                            43.062817,
                            11.628908
                        ],
                        [
                            43.065153,
                            11.62262
                        ],
                        [
                            43.067797,
                            11.615753
                        ],
                        [
                            43.069762,
                            11.613108
                        ],
                        [
                            43.070182,
                            11.61163
                        ],
                        [
                            43.070012,
                            11.602798
                        ],
                        [
                            43.070553,
                            11.601373
                        ],
                        [
                            43.07055381448864,
                            11.601385946034918
                        ],
                        [
                            43.070497,
                            11.60142
                        ],
                        [
                            43.070633,
                            11.601197
                        ],
                        [
                            43.070538355303235,
                            11.60142056242297
                        ],
                        [
                            43.070523,
                            11.601367
                        ],
                        [
                            43.070552,
                            11.601402
                        ],
                        [
                            43.070562713791354,
                            11.601398918534635
                        ],
                        [
                            43.070545,
                            11.601428
                        ],
                        [
                            43.072562,
                            11.60232
                        ],
                        [
                            43.073682,
                            11.606693
                        ],
                        [
                            43.070815,
                            11.615187
                        ],
                        [
                            43.071853,
                            11.612033
                        ],
                        [
                            43.065645,
                            11.627763
                        ],
                        [
                            43.064183,
                            11.630593
                        ],
                        [
                            43.065942,
                            11.66118
                        ],
                        [
                            43.066293,
                            11.661792
                        ],
                        [
                            43.095313,
                            11.707997
                        ],
                        [
                            43.108418,
                            11.727297
                        ],
                        [
                            43.129285,
                            11.758368
                        ],
                        [
                            43.167295,
                            11.778335
                        ],
                        [
                            43.18309,
                            11.782557
                        ],
                        [
                            43.213763,
                            11.791212
                        ],
                        [
                            43.24213,
                            11.799232
                        ],
                        [
                            43.249418,
                            11.801307
                        ],
                        [
                            43.297257,
                            11.814537
                        ],
                        [
                            43.33058,
                            11.823517
                        ],
                        [
                            43.356275,
                            11.830345
                        ],
                        [
                            43.402728,
                            11.86484
                        ],
                        [
                            43.438082,
                            11.913745
                        ],
                        [
                            43.458488,
                            11.941312
                        ],
                        [
                            43.47146,
                            11.962225
                        ],
                        [
                            43.498483,
                            12.010095
                        ],
                        [
                            43.526375,
                            12.058837
                        ],
                        [
                            43.535502,
                            12.074362
                        ],
                        [
                            43.553902,
                            12.106912
                        ],
                        [
                            43.565232,
                            12.164172
                        ],
                        [
                            43.56521,
                            12.327915
                        ],
                        [
                            43.563555,
                            12.421278
                        ],
                        [
                            43.528418,
                            12.523025
                        ],
                        [
                            43.52356,
                            12.527473
                        ],
                        [
                            43.504045,
                            12.544312
                        ],
                        [
                            43.386063,
                            12.609342
                        ],
                        [
                            43.35943168518818,
                            12.636855607824382
                        ],
                        [
                            43.14005165167988,
                            13.091648739200844
                        ],
                        [
                            43.055501702913055,
                            13.250875080042256
                        ],
                        [
                            43.03265516105161,
                            13.266132340807438
                        ],
                        [
                            42.87856641759066,
                            13.405523228392521
                        ],
                        [
                            42.45057,
                            13.80081
                        ],
                        [
                            41.89724,
                            14.905
                        ],
                        [
                            41.667648,
                            15.268823
                        ],
                        [
                            41.023828,
                            16.202923
                        ],
                        [
                            40.692062,
                            16.671472
                        ],
                        [
                            40.689278,
                            16.675202
                        ],
                        [
                            40.670243,
                            16.700727
                        ],
                        [
                            40.301888,
                            17.238488
                        ],
                        [
                            40.27231,
                            17.286418
                        ],
                        [
                            40.2229,
                            17.36712
                        ],
                        [
                            40.192973,
                            17.41577
                        ],
                        [
                            39.987828,
                            17.729907
                        ],
                        [
                            39.939847,
                            17.807187
                        ],
                        [
                            39.90988,
                            17.85358
                        ],
                        [
                            39.880615,
                            17.899877
                        ],
                        [
                            39.847787,
                            17.948615
                        ],
                        [
                            39.769988,
                            18.060002
                        ],
                        [
                            39.737332,
                            18.108002
                        ],
                        [
                            39.652933,
                            18.244038
                        ],
                        [
                            39.62199,
                            18.291783
                        ],
                        [
                            39.590777,
                            18.336072
                        ],
                        [
                            39.558627,
                            18.381038
                        ],
                        [
                            39.527477,
                            18.425218
                        ],
                        [
                            39.49696,
                            18.470372
                        ],
                        [
                            39.46567,
                            18.519055
                        ],
                        [
                            39.406172,
                            18.617683
                        ],
                        [
                            39.373075,
                            18.670987
                        ],
                        [
                            39.33396,
                            18.734305
                        ],
                        [
                            39.303692,
                            18.784593
                        ],
                        [
                            39.29642,
                            18.796525
                        ],
                        [
                            39.27429,
                            18.833365
                        ],
                        [
                            39.242898,
                            18.882055
                        ],
                        [
                            39.213095,
                            18.927103
                        ],
                        [
                            39.19342,
                            18.955973
                        ],
                        [
                            39.16313,
                            18.998688
                        ],
                        [
                            39.145592,
                            19.023358
                        ],
                        [
                            39.132047,
                            19.043142
                        ],
                        [
                            39.102273,
                            19.08783
                        ],
                        [
                            39.099698,
                            19.09155
                        ],
                        [
                            39.068075,
                            19.140972
                        ],
                        [
                            39.060275,
                            19.153758
                        ],
                        [
                            39.038913,
                            19.188688
                        ],
                        [
                            39.017812,
                            19.220627
                        ],
                        [
                            39.005582,
                            19.239112
                        ],
                        [
                            38.984835,
                            19.268215
                        ],
                        [
                            38.972913,
                            19.284735
                        ],
                        [
                            38.965023,
                            19.295597
                        ],
                        [
                            38.938677,
                            19.330277
                        ],
                        [
                            38.914748,
                            19.358508
                        ],
                        [
                            38.902705,
                            19.372672
                        ],
                        [
                            38.887253,
                            19.390672
                        ],
                        [
                            38.872205,
                            19.408078
                        ],
                        [
                            38.863887,
                            19.417523
                        ],
                        [
                            38.830733,
                            19.455677
                        ],
                        [
                            38.810507,
                            19.478332
                        ],
                        [
                            38.795232,
                            19.49898
                        ],
                        [
                            38.789205,
                            19.50935
                        ],
                        [
                            38.776755,
                            19.532578
                        ],
                        [
                            38.749985,
                            19.57576
                        ],
                        [
                            38.745752,
                            19.580457
                        ],
                        [
                            38.744493,
                            19.581252
                        ],
                        [
                            38.738392,
                            19.57967
                        ],
                        [
                            38.73543,
                            19.579683
                        ],
                        [
                            38.733668,
                            19.578592
                        ],
                        [
                            38.732163,
                            19.575883
                        ],
                        [
                            38.734083,
                            19.56962
                        ],
                        [
                            38.737327,
                            19.566747
                        ],
                        [
                            38.738283,
                            19.566352
                        ],
                        [
                            38.739757,
                            19.565873
                        ],
                        [
                            38.738702,
                            19.56621
                        ],
                        [
                            38.746112,
                            19.557647
                        ],
                        [
                            38.739533,
                            19.566195
                        ],
                        [
                            38.736727,
                            19.572352
                        ],
                        [
                            38.731395,
                            19.583777
                        ],
                        [
                            38.72533,
                            19.596752
                        ],
                        [
                            38.721985,
                            19.603945
                        ],
                        [
                            38.713962,
                            19.621477
                        ],
                        [
                            38.711712,
                            19.62643
                        ],
                        [
                            38.691905,
                            19.669395
                        ],
                        [
                            38.687112,
                            19.679525
                        ],
                        [
                            38.671207,
                            19.712055
                        ],
                        [
                            38.658243,
                            19.737767
                        ],
                        [
                            38.650002,
                            19.753983
                        ],
                        [
                            38.626448,
                            19.798622
                        ],
                        [
                            38.602108,
                            19.839445
                        ],
                        [
                            38.592298,
                            19.85506
                        ],
                        [
                            38.575613,
                            19.880537
                        ],
                        [
                            38.554767,
                            19.911032
                        ],
                        [
                            38.548617,
                            19.91991
                        ],
                        [
                            38.522895,
                            19.961133
                        ],
                        [
                            38.519525,
                            19.966452
                        ],
                        [
                            38.506333,
                            19.988572
                        ],
                        [
                            38.499902,
                            20.002783
                        ],
                        [
                            38.49909,
                            20.02581
                        ],
                        [
                            38.49985,
                            20.030642
                        ],
                        [
                            38.50245,
                            20.046588
                        ],
                        [
                            38.50361,
                            20.066417
                        ],
                        [
                            38.495995,
                            20.085978
                        ],
                        [
                            38.493755,
                            20.091613
                        ],
                        [
                            38.490177,
                            20.10079
                        ],
                        [
                            38.476105,
                            20.136923
                        ],
                        [
                            38.472733,
                            20.145518
                        ],
                        [
                            38.47125,
                            20.174775
                        ],
                        [
                            38.471702,
                            20.178903
                        ],
                        [
                            38.476288,
                            20.208202
                        ],
                        [
                            38.478678,
                            20.223655
                        ],
                        [
                            38.479412,
                            20.228418
                        ],
                        [
                            38.485967,
                            20.264787
                        ],
                        [
                            38.486887,
                            20.269638
                        ],
                        [
                            38.492978,
                            20.30136
                        ],
                        [
                            38.495655,
                            20.314492
                        ],
                        [
                            38.499183,
                            20.33172
                        ],
                        [
                            38.503902,
                            20.354923
                        ],
                        [
                            38.504865,
                            20.35967
                        ],
                        [
                            38.511758,
                            20.393617
                        ],
                        [
                            38.513997,
                            20.404317
                        ],
                        [
                            38.522665,
                            20.444967
                        ],
                        [
                            38.523412,
                            20.448555
                        ],
                        [
                            38.52559,
                            20.458732
                        ],
                        [
                            38.530288,
                            20.480983
                        ],
                        [
                            38.533097,
                            20.494087
                        ],
                        [
                            38.538792,
                            20.519703
                        ],
                        [
                            38.543278,
                            20.539895
                        ],
                        [
                            38.550405,
                            20.571257
                        ],
                        [
                            38.553363,
                            20.584245
                        ],
                        [
                            38.558757,
                            20.607288
                        ],
                        [
                            38.56408,
                            20.629943
                        ],
                        [
                            38.567667,
                            20.64551
                        ],
                        [
                            38.571347,
                            20.661113
                        ],
                        [
                            38.574678,
                            20.675372
                        ],
                        [
                            38.579973,
                            20.697355
                        ],
                        [
                            38.582262,
                            20.70676
                        ],
                        [
                            38.585623,
                            20.720453
                        ],
                        [
                            38.58903,
                            20.734248
                        ],
                        [
                            38.597065,
                            20.76649
                        ],
                        [
                            38.598277,
                            20.771277
                        ],
                        [
                            38.607867,
                            20.808523
                        ],
                        [
                            38.608778,
                            20.812042
                        ],
                        [
                            38.613905,
                            20.832458
                        ],
                        [
                            38.617292,
                            20.846297
                        ],
                        [
                            38.620058,
                            20.857812
                        ],
                        [
                            38.625917,
                            20.883388
                        ],
                        [
                            38.628673,
                            20.895438
                        ],
                        [
                            38.630605,
                            20.903917
                        ],
                        [
                            38.634312,
                            20.920332
                        ],
                        [
                            38.640688,
                            20.948898
                        ],
                        [
                            38.643715,
                            20.962302
                        ],
                        [
                            38.651125,
                            20.995657
                        ],
                        [
                            38.651952,
                            20.999307
                        ],
                        [
                            38.657723,
                            21.02483
                        ],
                        [
                            38.660175,
                            21.035753
                        ],
                        [
                            38.661852,
                            21.043037
                        ],
                        [
                            38.668577,
                            21.072585
                        ],
                        [
                            38.672012,
                            21.087518
                        ],
                        [
                            38.676298,
                            21.105467
                        ],
                        [
                            38.681297,
                            21.126333
                        ],
                        [
                            38.683768,
                            21.13686
                        ],
                        [
                            38.68599,
                            21.142417
                        ],
                        [
                            38.705147,
                            21.163967
                        ],
                        [
                            38.725157,
                            21.185633
                        ],
                        [
                            38.728572,
                            21.189277
                        ],
                        [
                            38.731648,
                            21.192617
                        ],
                        [
                            38.761285,
                            21.224737
                        ],
                        [
                            38.79052,
                            21.256008
                        ],
                        [
                            38.818822,
                            21.28606
                        ],
                        [
                            38.847447,
                            21.316537
                        ],
                        [
                            38.877333,
                            21.348258
                        ],
                        [
                            38.907203,
                            21.379515
                        ],
                        [
                            38.935452,
                            21.409113
                        ],
                        [
                            38.937862,
                            21.411612
                        ],
                        [
                            38.957618,
                            21.434162
                        ],
                        [
                            38.958458,
                            21.44059
                        ],
                        [
                            38.958787,
                            21.446295
                        ],
                        [
                            38.959278,
                            21.455075
                        ],
                        [
                            38.958728,
                            21.462548
                        ],
                        [
                            38.95368,
                            21.466982
                        ],
                        [
                            38.95199,
                            21.467073
                        ],
                        [
                            38.951382,
                            21.463658
                        ],
                        [
                            38.953762,
                            21.455393
                        ],
                        [
                            38.95418,
                            21.45475
                        ],
                        [
                            38.955702,
                            21.452565
                        ],
                        [
                            38.95789,
                            21.449547
                        ],
                        [
                            38.95823,
                            21.449057
                        ],
                        [
                            38.958992,
                            21.448003
                        ],
                        [
                            38.959932,
                            21.446692
                        ],
                        [
                            38.961445,
                            21.444407
                        ],
                        [
                            38.963388,
                            21.441403
                        ],
                        [
                            38.96376,
                            21.440827
                        ],
                        [
                            38.964495,
                            21.439582
                        ],
                        [
                            38.965133,
                            21.438525
                        ],
                        [
                            38.965925,
                            21.437197
                        ],
                        [
                            38.968612,
                            21.433048
                        ],
                        [
                            38.970388,
                            21.430645
                        ],
                        [
                            38.970613,
                            21.430322
                        ],
                        [
                            38.972402,
                            21.427583
                        ],
                        [
                            38.972615,
                            21.427243
                        ],
                        [
                            38.973815,
                            21.425387
                        ],
                        [
                            38.974993,
                            21.423408
                        ],
                        [
                            38.975232,
                            21.423047
                        ],
                        [
                            38.97712,
                            21.420143
                        ],
                        [
                            38.977445,
                            21.419638
                        ],
                        [
                            38.979372,
                            21.416857
                        ],
                        [
                            38.980282,
                            21.415585
                        ],
                        [
                            38.980592,
                            21.415155
                        ],
                        [
                            38.981482,
                            21.41386
                        ],
                        [
                            38.982942,
                            21.411757
                        ],
                        [
                            38.983635,
                            21.410722
                        ],
                        [
                            38.98434,
                            21.40965
                        ],
                        [
                            38.985705,
                            21.407803
                        ],
                        [
                            38.987857,
                            21.404745
                        ],
                        [
                            38.988185,
                            21.404312
                        ],
                        [
                            38.990193,
                            21.401635
                        ],
                        [
                            38.991222,
                            21.400347
                        ],
                        [
                            38.992227,
                            21.399108
                        ],
                        [
                            38.99388,
                            21.396903
                        ],
                        [
                            38.994295,
                            21.396338
                        ],
                        [
                            38.991467,
                            21.393223
                        ],
                        [
                            38.990022,
                            21.394817
                        ],
                        [
                            38.987535,
                            21.404217
                        ],
                        [
                            38.982755,
                            21.419252
                        ],
                        [
                            38.98146,
                            21.422963
                        ],
                        [
                            38.979382,
                            21.42832
                        ],
                        [
                            38.967737,
                            21.448528
                        ],
                        [
                            38.965563,
                            21.452088
                        ],
                        [
                            38.9546,
                            21.463057
                        ],
                        [
                            38.944995,
                            21.466227
                        ],
                        [
                            38.93649,
                            21.463037
                        ],
                        [
                            38.93748,
                            21.459553
                        ],
                        [
                            38.939437,
                            21.457527
                        ],
                        [
                            38.940017,
                            21.456893
                        ],
                        [
                            38.940258,
                            21.456632
                        ],
                        [
                            38.943447,
                            21.453197
                        ],
                        [
                            38.944682,
                            21.451812
                        ],
                        [
                            38.94676,
                            21.449695
                        ],
                        [
                            38.947372,
                            21.4491
                        ],
                        [
                            38.949478,
                            21.447088
                        ],
                        [
                            38.950195,
                            21.446423
                        ],
                        [
                            38.953932,
                            21.442787
                        ],
                        [
                            38.955212,
                            21.441623
                        ],
                        [
                            38.957145,
                            21.43987
                        ],
                        [
                            38.957662,
                            21.43942
                        ],
                        [
                            38.955702,
                            21.436353
                        ],
                        [
                            38.954825,
                            21.436522
                        ],
                        [
                            38.95374,
                            21.437953
                        ],
                        [
                            38.964312,
                            21.44873
                        ],
                        [
                            38.975557,
                            21.45975
                        ],
                        [
                            38.98454,
                            21.46698
                        ],
                        [
                            38.989553,
                            21.471012
                        ],
                        [
                            39.01168,
                            21.487173
                        ],
                        [
                            39.01942,
                            21.491448
                        ],
                        [
                            39.034258,
                            21.499693
                        ],
                        [
                            39.048823,
                            21.506297
                        ],
                        [
                            39.075528,
                            21.489588
                        ],
                        [
                            39.083313,
                            21.483572
                        ],
                        [
                            39.101732,
                            21.469848
                        ],
                        [
                            39.11294,
                            21.465665
                        ],
                        [
                            39.121533,
                            21.467055
                        ],
                        [
                            39.1307,
                            21.475608
                        ],
                        [
                            39.137608,
                            21.48093
                        ],
                        [
                            39.149202,
                            21.487272
                        ],
                        [
                            39.1506,
                            21.48809
                        ],
                        [
                            39.151012,
                            21.487028
                        ],
                        [
                            39.152608,
                            21.485917
                        ],
                        [
                            39.154048,
                            21.485432
                        ],
                        [
                            39.1543538483216,
                            21.485293467236954
                        ],
                        [
                            39.154462,
                            21.485317
                        ],
                        [
                            39.154412,
                            21.485073
                        ],
                        [
                            39.1522,
                            21.487385
                        ],
                        [
                            39.14963,
                            21.48712
                        ],
                        [
                            39.148348,
                            21.486605
                        ],
                        [
                            39.143038,
                            21.484178
                        ],
                        [
                            39.132645,
                            21.477533
                        ],
                        [
                            39.129423,
                            21.47503
                        ],
                        [
                            39.108188,
                            21.471312
                        ],
                        [
                            39.098172,
                            21.478827
                        ],
                        [
                            39.087095,
                            21.487175
                        ],
                        [
                            39.082355,
                            21.490557
                        ],
                        [
                            39.051232,
                            21.512097
                        ],
                        [
                            39.013842,
                            21.526263
                        ],
                        [
                            39.00107,
                            21.52989
                        ],
                        [
                            38.979452,
                            21.535945
                        ],
                        [
                            38.967757,
                            21.539213
                        ],
                        [
                            38.944545,
                            21.545742
                        ],
                        [
                            38.919485,
                            21.552905
                        ],
                        [
                            38.894363,
                            21.560103
                        ],
                        [
                            38.882492,
                            21.563515
                        ],
                        [
                            38.870523,
                            21.566775
                        ],
                        [
                            38.825545,
                            21.579345
                        ],
                        [
                            38.768218,
                            21.595408
                        ],
                        [
                            38.710762,
                            21.611158
                        ],
                        [
                            38.624835,
                            21.63255
                        ],
                        [
                            38.55726,
                            21.649285
                        ],
                        [
                            38.47271,
                            21.670387
                        ],
                        [
                            38.3912,
                            21.691567
                        ],
                        [
                            38.310733,
                            21.71259
                        ],
                        [
                            38.244653,
                            21.727823
                        ],
                        [
                            38.221355,
                            21.73187
                        ],
                        [
                            38.185772,
                            21.73297
                        ],
                        [
                            38.170303,
                            21.733672
                        ],
                        [
                            38.140923,
                            21.740718
                        ],
                        [
                            38.126512,
                            21.746012
                        ],
                        [
                            38.120678,
                            21.748197
                        ],
                        [
                            38.081815,
                            21.762983
                        ],
                        [
                            38.065878,
                            21.769025
                        ],
                        [
                            38.022267,
                            21.78553
                        ],
                        [
                            38.01312,
                            21.78898
                        ],
                        [
                            37.992122,
                            21.796845
                        ],
                        [
                            37.956595,
                            21.810033
                        ],
                        [
                            37.919397,
                            21.827337
                        ],
                        [
                            37.91306,
                            21.830783
                        ],
                        [
                            37.902762,
                            21.837262
                        ],
                        [
                            37.863622,
                            21.879418
                        ],
                        [
                            37.857612,
                            21.888037
                        ],
                        [
                            37.839938,
                            21.913492
                        ],
                        [
                            37.830553,
                            21.927073
                        ],
                        [
                            37.825142,
                            21.934903
                        ],
                        [
                            37.81136,
                            21.954772
                        ],
                        [
                            37.796752,
                            21.975822
                        ],
                        [
                            37.786042,
                            21.991262
                        ],
                        [
                            37.764043,
                            22.026105
                        ],
                        [
                            37.76125,
                            22.030438
                        ],
                        [
                            37.733872,
                            22.073183
                        ],
                        [
                            37.721853,
                            22.092002
                        ],
                        [
                            37.710627,
                            22.10963
                        ],
                        [
                            37.703718,
                            22.12055
                        ],
                        [
                            37.677005,
                            22.162715
                        ],
                        [
                            37.67157,
                            22.17137
                        ],
                        [
                            37.644443,
                            22.214277
                        ],
                        [
                            37.64179,
                            22.21846
                        ],
                        [
                            37.634127,
                            22.230483
                        ],
                        [
                            37.619572,
                            22.253138
                        ],
                        [
                            37.609603,
                            22.268578
                        ],
                        [
                            37.594737,
                            22.291695
                        ],
                        [
                            37.59073,
                            22.2979
                        ],
                        [
                            37.577287,
                            22.319328
                        ],
                        [
                            37.569707,
                            22.331423
                        ],
                        [
                            37.544832,
                            22.371163
                        ],
                        [
                            37.519793,
                            22.409895
                        ],
                        [
                            37.515567,
                            22.416962
                        ],
                        [
                            37.505453,
                            22.433843
                        ],
                        [
                            37.496253,
                            22.449025
                        ],
                        [
                            37.486432,
                            22.464743
                        ],
                        [
                            37.458628,
                            22.50744
                        ],
                        [
                            37.453308,
                            22.515498
                        ],
                        [
                            37.43233,
                            22.54618
                        ],
                        [
                            37.422998,
                            22.562242
                        ],
                        [
                            37.416845,
                            22.572878
                        ],
                        [
                            37.409637,
                            22.58554
                        ],
                        [
                            37.393453,
                            22.614192
                        ],
                        [
                            37.387198,
                            22.625378
                        ],
                        [
                            37.376557,
                            22.644472
                        ],
                        [
                            37.366673,
                            22.66246
                        ],
                        [
                            37.337893,
                            22.715422
                        ],
                        [
                            37.311937,
                            22.762122
                        ],
                        [
                            37.29794,
                            22.785977
                        ],
                        [
                            37.276387,
                            22.823117
                        ],
                        [
                            37.25764,
                            22.854823
                        ],
                        [
                            37.245623,
                            22.874095
                        ],
                        [
                            37.214963,
                            22.923558
                        ],
                        [
                            37.186592,
                            22.969827
                        ],
                        [
                            37.172252,
                            22.99671
                        ],
                        [
                            37.159673,
                            23.020747
                        ],
                        [
                            37.130613,
                            23.067977
                        ],
                        [
                            37.1006,
                            23.115987
                        ],
                        [
                            37.091545,
                            23.130585
                        ],
                        [
                            37.071113,
                            23.164033
                        ],
                        [
                            37.04935,
                            23.200443
                        ],
                        [
                            37.042552,
                            23.211748
                        ],
                        [
                            37.013978,
                            23.259405
                        ],
                        [
                            37.008195,
                            23.26903
                        ],
                        [
                            36.985792,
                            23.306477
                        ],
                        [
                            36.967433,
                            23.33743
                        ],
                        [
                            36.95728,
                            23.354695
                        ],
                        [
                            36.925257,
                            23.404128
                        ],
                        [
                            36.894385,
                            23.44975
                        ],
                        [
                            36.876452,
                            23.476355
                        ],
                        [
                            36.863452,
                            23.495937
                        ],
                        [
                            36.83377,
                            23.542113
                        ],
                        [
                            36.803742,
                            23.592398
                        ],
                        [
                            36.792077,
                            23.612125
                        ],
                        [
                            36.775408,
                            23.639643
                        ],
                        [
                            36.745115,
                            23.687675
                        ],
                        [
                            36.713367,
                            23.735928
                        ],
                        [
                            36.682648,
                            23.782593
                        ],
                        [
                            36.650277,
                            23.8303
                        ],
                        [
                            36.619637,
                            23.877082
                        ],
                        [
                            36.589188,
                            23.925482
                        ],
                        [
                            36.560468,
                            23.975058
                        ],
                        [
                            36.531827,
                            24.02575
                        ],
                        [
                            36.5013,
                            24.074858
                        ],
                        [
                            36.486313,
                            24.097537
                        ],
                        [
                            36.468502,
                            24.124333
                        ],
                        [
                            36.442342,
                            24.165157
                        ],
                        [
                            36.438133,
                            24.171882
                        ],
                        [
                            36.426882,
                            24.190007
                        ],
                        [
                            36.407202,
                            24.222183
                        ],
                        [
                            36.400047,
                            24.233943
                        ],
                        [
                            36.390162,
                            24.250485
                        ],
                        [
                            36.378658,
                            24.26985
                        ],
                        [
                            36.357305,
                            24.30494
                        ],
                        [
                            36.34949,
                            24.317955
                        ],
                        [
                            36.34226,
                            24.330087
                        ],
                        [
                            36.316697,
                            24.3736
                        ],
                        [
                            36.285888,
                            24.423123
                        ],
                        [
                            36.279485,
                            24.432815
                        ],
                        [
                            36.274357,
                            24.440458
                        ],
                        [
                            36.252105,
                            24.473645
                        ],
                        [
                            36.238568,
                            24.493987
                        ],
                        [
                            36.229427,
                            24.507293
                        ],
                        [
                            36.217825,
                            24.522705
                        ],
                        [
                            36.191203,
                            24.559897
                        ],
                        [
                            36.183588,
                            24.573157
                        ],
                        [
                            36.151685,
                            24.625702
                        ],
                        [
                            36.12341,
                            24.677088
                        ],
                        [
                            36.114273,
                            24.693332
                        ],
                        [
                            36.106148,
                            24.707202
                        ],
                        [
                            36.094452,
                            24.727315
                        ],
                        [
                            36.073837,
                            24.763818
                        ],
                        [
                            36.067408,
                            24.775425
                        ],
                        [
                            36.036157,
                            24.826075
                        ],
                        [
                            36.032672,
                            24.831598
                        ],
                        [
                            36.005883,
                            24.873972
                        ],
                        [
                            35.989523,
                            24.899863
                        ],
                        [
                            35.980425,
                            24.914127
                        ],
                        [
                            35.974517,
                            24.923348
                        ],
                        [
                            35.942172,
                            24.968422
                        ],
                        [
                            35.939235,
                            24.972297
                        ],
                        [
                            35.903915,
                            25.020017
                        ],
                        [
                            35.899268,
                            25.026505
                        ],
                        [
                            35.871143,
                            25.065988
                        ],
                        [
                            35.858192,
                            25.084423
                        ],
                        [
                            35.840362,
                            25.110122
                        ],
                        [
                            35.826965,
                            25.129288
                        ],
                        [
                            35.813608,
                            25.148562
                        ],
                        [
                            35.810407,
                            25.153205
                        ],
                        [
                            35.801302,
                            25.166458
                        ],
                        [
                            35.783112,
                            25.193052
                        ],
                        [
                            35.780635,
                            25.196677
                        ],
                        [
                            35.776118,
                            25.203263
                        ],
                        [
                            35.74935,
                            25.242773
                        ],
                        [
                            35.736583,
                            25.261842
                        ],
                        [
                            35.719255,
                            25.286107
                        ],
                        [
                            35.696077,
                            25.318685
                        ],
                        [
                            35.691922,
                            25.324542
                        ],
                        [
                            35.688053,
                            25.330042
                        ],
                        [
                            35.655213,
                            25.37713
                        ],
                        [
                            35.620995,
                            25.426413
                        ],
                        [
                            35.570725,
                            25.500677
                        ],
                        [
                            35.502828,
                            25.603462
                        ],
                        [
                            35.490907,
                            25.621332
                        ],
                        [
                            35.470802,
                            25.651163
                        ],
                        [
                            35.459518,
                            25.667757
                        ],
                        [
                            35.437655,
                            25.699525
                        ],
                        [
                            35.408873,
                            25.740307
                        ],
                        [
                            35.37231,
                            25.791232
                        ],
                        [
                            35.35879,
                            25.81005
                        ],
                        [
                            35.340527,
                            25.835507
                        ],
                        [
                            35.318237,
                            25.866305
                        ],
                        [
                            35.313658,
                            25.872697
                        ],
                        [
                            35.304698,
                            25.885078
                        ],
                        [
                            35.287032,
                            25.90964
                        ],
                        [
                            35.277472,
                            25.922907
                        ],
                        [
                            35.268745,
                            25.935083
                        ],
                        [
                            35.260372,
                            25.94681
                        ],
                        [
                            35.237735,
                            25.978287
                        ],
                        [
                            35.233233,
                            25.984393
                        ],
                        [
                            35.221768,
                            25.99987
                        ],
                        [
                            35.20664,
                            26.020168
                        ],
                        [
                            35.202628,
                            26.025495
                        ],
                        [
                            35.195707,
                            26.034698
                        ],
                        [
                            35.134347,
                            26.116823
                        ],
                        [
                            34.890983,
                            26.460037
                        ],
                        [
                            34.79984,
                            26.592033
                        ],
                        [
                            34.751685,
                            26.665923
                        ],
                        [
                            34.719462,
                            26.71211
                        ],
                        [
                            34.654285,
                            26.796362
                        ],
                        [
                            34.614165,
                            26.857428
                        ],
                        [
                            34.61097,
                            26.86278
                        ],
                        [
                            34.586457,
                            26.902903
                        ],
                        [
                            34.32823,
                            27.265755
                        ],
                        [
                            34.27739,
                            27.340327
                        ],
                        [
                            34.237343,
                            27.396738
                        ],
                        [
                            34.227115,
                            27.409572
                        ],
                        [
                            34.206222,
                            27.435407
                        ],
                        [
                            34.197042,
                            27.44684
                        ],
                        [
                            34.194283,
                            27.450297
                        ],
                        [
                            34.178568,
                            27.469973
                        ],
                        [
                            34.176215,
                            27.47296
                        ],
                        [
                            34.150332,
                            27.501465
                        ],
                        [
                            34.14186,
                            27.509753
                        ],
                        [
                            34.132368,
                            27.51913
                        ],
                        [
                            34.099163,
                            27.546695
                        ],
                        [
                            34.057102,
                            27.579563
                        ],
                        [
                            34.039835,
                            27.593377
                        ],
                        [
                            34.035932,
                            27.596542
                        ],
                        [
                            34.015578,
                            27.613407
                        ],
                        [
                            33.969168,
                            27.651048
                        ],
                        [
                            33.871633,
                            27.724265
                        ],
                        [
                            33.831447,
                            27.756495
                        ],
                        [
                            33.824525,
                            27.762667
                        ],
                        [
                            33.812693,
                            27.773985
                        ],
                        [
                            33.780285,
                            27.80631
                        ],
                        [
                            33.652368,
                            27.914673
                        ]
                    ]
                ]
            }
        }
    ],
    "properties": {
        "distance": 14527100,
        "mode": "sea",
        "departure": 1723786054000,
        "arrival": 1726330984000,
        "duration": 2544930000,
        "speed": 20.55,
        "areas": {
            "type": "FeatureCollection",
            "features": [
                {
                    "type": "Feature",
                    "properties": {
                        "id": 11146,
                        "name": "North of Sabang",
                        "alternatives": []
                    },
                    "geometry": {
                        "type": "Point",
                        "coordinates": [
                            94.68081647283823,
                            6.324861732860867
                        ]
                    }
                },
                {
                    "type": "Feature",
                    "properties": {
                        "id": 11150,
                        "name": "Taiwan Strait",
                        "alternatives": []
                    },
                    "geometry": {
                        "type": "Point",
                        "coordinates": [
                            119.18853847770525,
                            24.334355579669797
                        ]
                    }
                },
                {
                    "type": "Feature",
                    "properties": {
                        "id": 11135,
                        "name": "Malacca Strait",
                        "alternatives": []
                    },
                    "geometry": {
                        "type": "Point",
                        "coordinates": [
                            99.90993939997549,
                            3.7768863793412635
                        ]
                    }
                },
                {
                    "type": "Feature",
                    "properties": {
                        "id": 21615,
                        "name": "Yemen coast",
                        "alternatives": []
                    },
                    "geometry": {
                        "type": "Point",
                        "coordinates": [
                            47.674449162709465,
                            12.667151083736158
                        ]
                    }
                },
                {
                    "type": "Feature",
                    "properties": {
                        "id": 11137,
                        "name": "Singapore Strait",
                        "alternatives": []
                    },
                    "geometry": {
                        "type": "Point",
                        "coordinates": [
                            103.90174796429032,
                            1.2059581075620434
                        ]
                    }
                },
                {
                    "type": "Feature",
                    "properties": {
                        "id": 21089,
                        "name": "High Risk Area",
                        "alternatives": []
                    },
                    "geometry": {
                        "type": "Point",
                        "coordinates": [
                            49.2132660404583,
                            5.8841119134226
                        ]
                    }
                },
                {
                    "type": "Feature",
                    "properties": {
                        "id": 11106,
                        "name": "South Sri Lanka",
                        "alternatives": []
                    },
                    "geometry": {
                        "type": "Point",
                        "coordinates": [
                            80.925,
                            5.5787
                        ]
                    }
                }
            ],
            "properties": null
        },
        "details": [],
        "secaIntersection": 0,
        "hraIntersection": 2387688,
        "speedInKts": 11.096,
        "intersectsIceArea": false,
        "vessel": {
            "imo": 9150195,
            "name": "OVP ARIES",
            "length": 208.0,
            "width": 30.0,
            "mmsi": 352002499,
            "maxDraft": 11.4
        }
    }
}

✨ Improvement: the vessel trace, previously missing due to outdated vessel general data, is now successfully retrieved with the accurate historical data.


📗 Improved emissions reporting results

We’ve enhanced CO2 emissions reporting by ensuring that vessels are retrieved whether queried by their old or new names. It impacts positively our sea reporting endpoints (/shipment/v2/report/co2 and /co2/v2/direct/sea ). Let's see how:

  • Emissions calculations are improved for vessels previously missed due to name changes.
  • Reporting is enhanced with more accurate data, as we'll be in capacity to return our most accurate models with emissions based on the characteristics of the input vessel:
    • historical model (actual-portcalls-ais) when passing a date (available in Shipment API only);
    • direct model sfd-direct-imo

👀 Now, let’s dive into specific examples for the Shipment API endpoint, and see how the updates impact your API queries and responses."


Shipment API

Endpoint: /shipment/v2/report/co2

Description: computes CO2e emissions for a given shipment, for all modes of transport.

1️⃣ When passing a date (historical model)

Request example:

{
  "orders": [
    {
      "type": "CONTAINER",
      "quantity": 1,
      "sizeTypeCode": "20GP"
    }
  ],
  "legs": [
    {
      "from": "CNSHA",
      "to": "SAJED",
      "mode": "sea",
      "details": {
        "dateTime": {
          "departure": "2024-08-15"
        },
        "vessel": {
          "name": "OVP ARIES"
        }
      }
    }
  ]
}

Before-and-after responses:

{
    "parameters": {
        "orders": [
            {
                "type": "CONTAINER",
                "quantity": 1,
                "sizeTypeCode": "20GP"
            }
        ],
        "details": {}
    },
    "co2e": {
        "total": 1218991,
        "wtt": 180112,
        "ttw": 1038877,
        "intensity": 0.00949
    },
    "legs": [
        {
            "from": {
                "locode": "CNSHA",
                "coordinates": [
                    122.06550521343334,
                    30.61798396262171
                ],
                "city": "Shanghai",
                "country": "China",
                "region": "North East Asia"
            },
            "to": {
                "locode": "SAJED",
                "coordinates": [
                    39.1565914154053,
                    21.4880256652832
                ],
                "city": "Jeddah",
                "country": "Saudi Arabia",
                "region": "Middle East"
            },
            "tradeLane": "Asia to-from Middle East",
            "mode": "sea",
            "parameters": {
                "details": {
                    "vessel": {
                        "name": "OVP ARIES"
                    },
                    "dateTime": {
                        "departure": "2024-08-15"
                    },
                    "carrier": {}
                }
            },
            "properties": {
                "dataType": "MODELED",
                "distance": 12851588,
                "model": {
                    "name": "actual-portcalls-ais"
                },
...
{
    "parameters": {
        "orders": [
            {
                "type": "CONTAINER",
                "quantity": 1,
                "sizeTypeCode": "20GP"
            }
        ],
        "details": {}
    },
    "co2e": {
        "total": 1523659,
        "wtt": 225131,
        "ttw": 1298528,
        "intensity": 0.0107
    },
    "legs": [
        {
            "from": {
                "locode": "CNSHA",
                "coordinates": [
                    122.06550521343334,
                    30.61798396262171
                ],
                "city": "Shanghai",
                "country": "China",
                "region": "North East Asia"
            },
            "to": {
                "locode": "SAJED",
                "coordinates": [
                    39.1565914154053,
                    21.4880256652832
                ],
                "city": "Jeddah",
                "country": "Saudi Arabia",
                "region": "Middle East"
            },
            "tradeLane": "Asia to-from Middle East",
            "mode": "sea",
            "parameters": {
                "details": {
                    "vessel": {
                        "name": "OVP ARIES"
                    },
                    "dateTime": {
                        "departure": "2024-08-15"
                    },
                    "carrier": {}
                }
            },
            "properties": {
                "dataType": "MODELED",
                "distance": 14236137,
                "model": {
                    "name": "actual-portcalls-ais"
                },
...

✨ Improvement: we see a change in the emissions, because with the latest vessel correctly retrieved, the emissions are rigthly modeled, improving the emissions accuracy.


2️⃣ Without passing a date

Request example

{
  "orders": [
    {
      "type": "CONTAINER",
      "quantity": 1,
      "sizeTypeCode": "20GP"
    }
  ],
  "legs": [
    {
      "from": "CNSHA",
      "to": "SAJED",
      "mode": "sea",
      "details": {
        "vessel": {
          "name": "OVP ARIES"
        }
      }
    }
  ]
}
{
    "parameters": {
        "orders": [
            {
                "type": "CONTAINER",
                "quantity": 1,
                "sizeTypeCode": "20GP"
            }
        ],
        "details": {}
    },
    "co2e": {
        "total": 1048090,
        "wtt": 142976,
        "ttw": 905114,
        "intensity": 0.00865
    },
    "legs": [
        {
            "from": {
                "locode": "CNSHA",
                "coordinates": [
                    122.06550521343334,
                    30.61798396262171
                ],
                "city": "Shanghai",
                "country": "China",
                "region": "North East Asia"
            },
            "to": {
                "locode": "SAJED",
                "coordinates": [
                    39.1565914154053,
                    21.4880256652832
                ],
                "city": "Jeddah",
                "country": "Saudi Arabia",
                "region": "Middle East"
            },
            "tradeLane": "Asia to-from Middle East",
            "mode": "sea",
            "parameters": {
                "details": {
                    "vessel": {
                        "name": "OVP ARIES"
                    },
                    "carrier": {}
                }
            },
            "properties": {
                "dataType": "DEFAULT",
                "distance": 12116648,
                "model": {
                    "name": "sfd-direct-emissionfactors"
                },
...
{
    "parameters": {
        "orders": [
            {
                "type": "CONTAINER",
                "quantity": 1,
                "sizeTypeCode": "20GP"
            }
        ],
        "details": {}
    },
    "co2e": {
        "total": 1296849,
        "wtt": 191619,
        "ttw": 1105230,
        "intensity": 0.0107
    },
    "legs": [
        {
            "from": {
                "locode": "CNSHA",
                "coordinates": [
                    122.06550521343334,
                    30.61798396262171
                ],
                "city": "Shanghai",
                "country": "China",
                "region": "North East Asia"
            },
            "to": {
                "locode": "SAJED",
                "coordinates": [
                    39.1565914154053,
                    21.4880256652832
                ],
                "city": "Jeddah",
                "country": "Saudi Arabia",
                "region": "Middle East"
            },
            "tradeLane": "Asia to-from Middle East",
            "mode": "sea",
            "parameters": {
                "details": {
                    "vessel": {
                        "name": "OVP ARIES"
                    },
                    "carrier": {}
                }
            },
            "properties": {
                "dataType": "MODELED",
                "distance": 12116648,
                "model": {
                    "name": "sfd-direct-imo"
                },
...

✨ Improvement: there is a model improvement, from a default model sfd-direct-emissionfactors (no vessel was retrieved) to modeled emissions sfd-direct-imo based on the characteristics of the vessel.


👀 Preview of Cycle C19

In the upcoming cycle, we’ll focus on two main updates:

  • The hub automation integration into our Shipment API, which is part of our effort to meet ISO 14083 certification requirements.
  • A refresh of the app home page, improving user experience by offering greater visibility into our solutions.


📘

You just read our Product Update 👏

We'd love to hear what you think about these updates. Send us your feedback at [email protected]!