Skip to content

Spatial joins

Spatial joins are table joins which are based not on equality, but on some predicate p(x,y), which takes two geometries, and returns a value of either true or false. For geometries, the DE-9IM spatial relationship model is used to determine the spatial relationship between two geometries.

Spatial joins can be done between any geometry types (from geometrycollections to points), just as geometrical predicates can be evaluated on any geometries.

In this tutorial, we will show how to perform a spatial join on first a toy dataset and then two Natural Earth datasets, to show how this can be used in the real world.

In order to perform the spatial join, we use FlexiJoins.jl to perform the join, specifically using its by_pred joining method. This allows the user to specify a predicate in the following manner, for any kind of table join operation:

julia
using FlexiJoins
innerjoin((table1, table1),
    by_pred(:table1_column, predicate_function, :table2_column) # & add other conditions here
)
leftjoin((table1, table1),
    by_pred(:table1_column, predicate_function, :table2_column) # & add other conditions here
)
rightjoin((table1, table1),
    by_pred(:table1_column, predicate_function, :table2_column) # & add other conditions here
)
outerjoin((table1, table1),
    by_pred(:table1_column, predicate_function, :table2_column) # & add other conditions here
)

We have enabled the use of all of GeometryOps' boolean comparisons here. These are:

julia
GO.contains, GO.within, GO.intersects, GO.touches, GO.crosses, GO.disjoint, GO.overlaps, GO.covers, GO.coveredby, GO.equals

Tip

Always place the dataframe with more complex geometries second, as that is the one which will be sorted into a tree.

Simple example

This example demonstrates how to perform a spatial join between two datasets: a set of polygons and a set of randomly generated points.

The polygons are represented as a DataFrame with geometries and colors, while the points are stored in a separate DataFrame.

The spatial join is performed using the contains predicate from GeometryOps, which checks if each point is contained within any of the polygons. The resulting joined DataFrame is then used to plot the points, colored according to the containing polygon.

First, we generate our data. We create two triangle polygons which, together, span the rectangle (0, 0, 1, 1), and a set of points which are randomly distributed within this rectangle.

julia
import GeoInterface as GI, GeometryOps as GO
using FlexiJoins, DataFrames

using CairoMakie, GeoInterfaceMakie

pl = GI.Polygon([GI.LinearRing([(0, 0), (1, 0), (1, 1), (0, 0)])])
pu = GI.Polygon([GI.LinearRing([(0, 0), (0, 1), (1, 1), (0, 0)])])
poly_df = DataFrame(geometry = [pl, pu], color = [:red, :blue])
f, a, p = poly(poly_df.geometry; color = tuple.(poly_df.color, 0.3))

Here, the upper polygon is blue, and the lower polygon is red. Keep this in mind!

Now, we generate the points.

julia
points = tuple.(rand(1000), rand(1000))
points_df = DataFrame(geometry = points)
scatter!(points_df.geometry)
f

You can see that they are evenly distributed around the box. But how do we know which points are in which polygons?

We have to join the two dataframes based on which polygon (if any) each point lies within.

Now, we can perform the "spatial join" using FlexiJoins. We are performing an outer join here

julia
@time joined_df = FlexiJoins.innerjoin(
    (points_df, poly_df),
    by_pred(:geometry, GO.within, :geometry)
)
1000×3 DataFrame
Rowgeometrygeometry_1color
Tuple…Polygon…Symbol
1(0.579668, 0.418981)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
2(0.870787, 0.862943)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
3(0.725779, 0.0271903)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
4(0.617383, 0.411257)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
5(0.552354, 0.618873)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
6(0.637353, 0.107921)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
7(0.588094, 0.991052)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
8(0.998496, 0.0272512)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
9(0.0644319, 0.350338)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
10(0.775918, 0.326632)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
11(0.00762354, 0.85318)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
12(0.811834, 0.538752)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
13(0.988829, 0.884951)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
14(0.330547, 0.261156)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
15(0.278286, 0.71943)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
16(0.0534075, 0.864692)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
17(0.024719, 0.394339)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
18(0.788389, 0.453098)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
19(0.691268, 0.0663854)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
20(0.39578, 0.75686)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
21(0.897274, 0.0489362)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
22(0.753282, 0.0869874)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
23(0.548988, 0.430035)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
24(0.114838, 0.430422)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
25(0.426772, 0.240971)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
26(0.185415, 0.953978)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
27(0.575065, 0.0266779)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
28(0.348095, 0.177604)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
29(0.552024, 0.329429)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
30(0.361157, 0.99895)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
31(0.398495, 0.405048)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
32(0.243348, 0.827048)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
33(0.235185, 0.659998)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
34(0.754472, 0.941849)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
35(0.404439, 0.680964)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
36(0.002662, 0.182011)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
37(0.610443, 0.854407)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
38(0.563156, 0.964938)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
39(0.866182, 0.401861)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
40(0.647219, 0.124533)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
41(0.854595, 0.558525)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
42(0.602683, 0.214484)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
43(0.384321, 0.644376)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
44(0.884604, 0.944742)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
45(0.586309, 0.471658)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
46(0.8505, 0.4623)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
47(0.997294, 0.0678189)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
48(0.317364, 0.615587)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
49(0.378618, 0.771186)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
50(0.534945, 0.0179853)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
51(0.688786, 0.467427)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
52(0.722092, 0.378339)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
53(0.102092, 0.618318)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
54(0.418453, 0.419101)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
55(0.0261376, 0.816022)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
56(0.578811, 0.667704)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
57(0.323848, 0.322599)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
58(0.994931, 0.288486)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
59(0.625242, 0.89373)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
60(0.710596, 0.313373)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
61(0.333057, 0.29897)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
62(0.908564, 0.4224)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
63(0.454278, 0.800345)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
64(0.966585, 0.595327)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
65(0.0953103, 0.639223)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
66(0.0914319, 0.755004)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
67(0.63289, 0.409836)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
68(0.620369, 0.713275)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
69(0.209993, 0.474622)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
70(0.493784, 0.238719)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
71(0.313623, 0.779019)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
72(0.519367, 0.390166)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
73(0.988929, 0.404464)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
74(0.0649826, 0.425928)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
75(0.619116, 0.532399)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
76(0.298143, 0.908251)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
77(0.630795, 0.87142)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
78(0.391039, 0.666571)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
79(0.427709, 0.111327)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
80(0.332403, 0.0157625)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
81(0.0278062, 0.0739536)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
82(0.342169, 0.304149)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
83(0.369434, 0.363217)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
84(0.666966, 0.976261)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
85(0.552586, 0.762224)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
86(0.698848, 0.478768)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
87(0.983519, 0.670713)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
88(0.529423, 0.183544)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
89(0.618424, 0.110481)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
90(0.0839283, 0.251213)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
91(0.786045, 0.910599)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
92(0.0947076, 0.506249)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
93(0.674377, 0.193425)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
94(0.602225, 0.958183)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
95(0.118748, 0.603358)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
96(0.0341476, 0.201966)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
97(0.532341, 0.294496)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
98(0.94896, 0.356144)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
99(0.193849, 0.419929)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
100(0.586595, 0.501804)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
101(0.0164586, 0.4879)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
102(0.22631, 0.104931)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
103(0.421862, 0.139213)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
104(0.811099, 0.441179)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
105(0.811944, 0.450746)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
106(0.0838433, 0.754391)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
107(0.255964, 0.0127259)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
108(0.721995, 0.853024)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
109(0.200029, 0.296122)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
110(0.343322, 0.511149)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
111(0.0565392, 0.653894)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
112(0.275809, 0.5175)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
113(0.561049, 0.550328)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
114(0.938668, 0.402416)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
115(0.0844846, 0.691526)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
116(0.944374, 0.732226)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
117(0.182119, 0.0998986)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
118(0.163265, 0.925162)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
119(0.23315, 0.27209)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
120(0.594561, 0.0425853)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
121(0.642946, 0.260437)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
122(0.808429, 0.304876)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
123(0.88629, 0.124839)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
124(0.921589, 0.99489)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
125(0.190107, 0.261913)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
126(0.459496, 0.547046)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
127(0.0930744, 0.701889)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
128(0.182397, 0.272473)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
129(0.116479, 0.321022)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
130(0.039312, 0.97472)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
131(0.246245, 0.771645)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
132(0.0325692, 0.251786)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
133(0.802032, 0.168536)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
134(0.424586, 0.297395)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
135(0.630128, 0.998186)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
136(0.655726, 0.433154)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
137(0.484146, 0.856493)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
138(0.140988, 0.711692)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
139(0.611612, 0.820418)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
140(0.982111, 0.095843)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
141(0.23438, 0.0673939)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
142(0.0969999, 0.422106)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
143(0.955365, 0.274087)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
144(0.00895708, 0.0621028)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
145(0.395284, 0.265049)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
146(0.0178402, 0.734279)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
147(0.173284, 0.588535)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
148(0.699053, 0.544919)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
149(0.822673, 0.395456)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
150(0.426764, 0.549144)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
151(0.689116, 0.66327)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
152(0.234179, 0.893989)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
153(0.569713, 0.820957)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
154(0.916012, 0.00118429)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
155(0.236411, 0.230516)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
156(0.282603, 0.15483)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
157(0.00215378, 0.573506)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
158(0.763559, 0.549661)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
159(0.277479, 0.48048)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
160(0.180289, 0.321521)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
161(0.862392, 0.100786)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
162(0.871809, 0.0298596)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
163(0.040354, 0.506988)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
164(0.828099, 0.424715)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
165(0.258465, 0.0975471)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
166(0.910901, 0.931625)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
167(0.45398, 0.413321)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
168(0.897373, 0.50173)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
169(0.956159, 0.832213)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
170(0.409859, 0.950581)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
171(0.610675, 0.879621)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
172(0.573704, 0.338029)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
173(0.521067, 0.151645)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
174(0.796559, 0.24183)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
175(0.529097, 0.78605)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
176(0.00941716, 0.556091)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
177(0.459281, 0.639319)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
178(0.776629, 0.19004)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
179(0.863588, 0.131699)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
180(0.0709072, 0.54561)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
181(0.889545, 0.160045)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
182(0.724578, 0.455431)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
183(0.02076, 0.917397)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
184(0.51414, 0.517982)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
185(0.963026, 0.94911)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
186(0.634383, 0.976648)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
187(0.0384469, 0.558345)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
188(0.309496, 0.731982)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
189(0.364036, 0.547624)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
190(0.585404, 0.00827221)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
191(0.276434, 0.321573)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
192(0.325754, 0.378697)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
193(0.0785092, 0.00861288)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
194(0.00630539, 0.19243)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
195(0.969603, 0.925399)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
196(0.324548, 0.246768)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
197(0.362387, 0.344224)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
198(0.955875, 0.639206)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
199(0.601424, 0.301219)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
200(0.528503, 0.90865)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
201(0.971614, 0.97569)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
202(0.60953, 0.0296638)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
203(0.172971, 0.765967)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
204(0.906036, 0.472396)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
205(0.0568112, 0.982787)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
206(0.771676, 0.390684)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
207(0.321325, 0.934222)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
208(0.177378, 0.383428)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
209(0.236632, 0.408068)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
210(0.378195, 0.435996)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
211(0.367217, 0.648389)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
212(0.548948, 0.763468)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
213(0.298183, 0.737617)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
214(0.0598675, 0.443314)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
215(0.631701, 0.401484)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
216(0.810274, 0.0858848)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
217(0.11623, 0.578713)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
218(0.555655, 0.936152)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
219(0.104912, 0.294779)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
220(0.7451, 0.0720437)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
221(0.77051, 0.524551)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
222(0.580689, 0.910769)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
223(0.835236, 0.893728)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
224(0.0350195, 0.712703)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
225(0.623176, 0.401253)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
226(0.705488, 0.712345)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
227(0.710653, 0.753986)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
228(0.595712, 0.823333)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
229(0.105598, 0.949893)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
230(0.57887, 0.73474)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
231(0.471694, 0.868969)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
232(0.5544, 0.329939)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
233(0.464508, 0.779082)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
234(0.46252, 0.866014)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
235(0.755517, 0.890593)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
236(0.35476, 0.0938511)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
237(0.846422, 0.757609)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
238(0.81148, 0.391816)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
239(0.4942, 0.140977)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
240(0.999375, 0.319062)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
241(0.546937, 0.877568)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
242(0.98832, 0.813387)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
243(0.63103, 0.284306)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
244(0.536132, 0.0140722)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
245(0.447294, 0.396962)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
246(0.0500158, 0.687918)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
247(0.224901, 0.822108)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
248(0.374692, 0.331062)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
249(0.333726, 0.702437)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
250(0.533216, 0.779503)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
251(0.921644, 0.606753)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
252(0.774911, 0.617273)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
253(0.82284, 0.822005)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
254(0.075671, 0.495175)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
255(0.525896, 0.0695492)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
256(0.588026, 0.453152)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
257(0.314897, 0.481381)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
258(0.745319, 0.401291)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
259(0.340127, 0.852428)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
260(0.478844, 0.0775538)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
261(0.25151, 0.562742)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
262(0.206273, 0.405787)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
263(0.547066, 0.737491)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
264(0.874209, 0.32125)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
265(0.807919, 0.813234)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
266(0.161543, 0.139109)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
267(0.265534, 0.661962)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
268(0.123998, 0.520414)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
269(0.176826, 0.79901)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
270(0.797618, 0.187862)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
271(0.618589, 0.772829)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
272(0.0655508, 0.720776)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
273(0.672854, 0.583754)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
274(0.966948, 0.343426)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
275(0.255794, 0.75902)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
276(0.793929, 0.546722)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
277(0.22837, 0.653258)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
278(0.606176, 0.25783)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
279(0.0578851, 0.651163)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
280(0.755, 0.854385)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
281(0.101329, 0.886881)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
282(0.730037, 0.76961)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
283(0.283361, 0.66565)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
284(0.838366, 0.786898)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
285(0.184141, 0.658552)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
286(0.191873, 0.793414)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
287(0.450318, 0.387)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
288(0.667755, 0.129055)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
289(0.864911, 0.929751)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
290(0.336795, 0.335736)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
291(0.0787687, 0.612918)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
292(0.503763, 0.579793)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
293(0.000568922, 0.18473)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
294(0.0324784, 0.804884)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
295(0.367361, 0.477247)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
296(0.165973, 0.140923)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
297(0.293915, 0.845816)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
298(0.866572, 0.0442551)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
299(0.893851, 0.399079)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
300(0.00573795, 0.144066)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
301(0.4727, 0.042415)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
302(0.55335, 0.704463)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
303(0.777142, 0.383483)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
304(0.767922, 0.292537)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
305(0.200153, 0.77943)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
306(0.522939, 0.858925)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
307(0.603526, 0.0838304)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
308(0.566191, 0.406679)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
309(0.313818, 0.784733)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
310(0.786816, 0.816798)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
311(0.531672, 0.968844)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
312(0.537129, 0.66804)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
313(0.989711, 0.814063)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
314(0.535402, 0.112259)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
315(0.989529, 0.631786)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
316(0.590853, 0.0662347)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
317(0.825953, 0.959013)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
318(0.683528, 0.717582)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
319(0.550692, 0.332228)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
320(0.891837, 0.331849)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
321(0.0788471, 0.396197)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
322(0.363186, 0.0215896)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
323(0.559715, 0.8059)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
324(0.190168, 0.570777)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
325(0.500399, 0.64474)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
326(0.485945, 0.909184)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
327(0.620305, 0.610863)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
328(0.631184, 0.706752)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
329(0.0223954, 0.659719)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
330(0.552715, 0.192524)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
331(0.670682, 0.298372)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
332(0.822204, 0.258447)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
333(0.210669, 0.874345)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
334(0.587227, 0.235346)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
335(0.446443, 0.258775)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
336(0.554562, 0.272527)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
337(0.472757, 0.522422)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
338(0.454373, 0.260952)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
339(0.835225, 0.62121)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
340(0.343116, 0.186861)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
341(0.820482, 0.423887)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
342(0.964977, 0.214446)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
343(0.406663, 0.915102)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
344(0.909853, 0.568289)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
345(0.75228, 0.538186)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
346(0.964182, 0.468652)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
347(0.476686, 0.76635)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
348(0.881142, 0.852848)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
349(0.0875136, 0.826707)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
350(0.474391, 0.544688)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
351(0.804339, 0.447355)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
352(0.519235, 0.299482)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
353(0.951556, 0.418779)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
354(0.661323, 0.692738)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
355(0.617765, 0.736115)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
356(0.520399, 0.102463)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
357(0.777467, 0.404472)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
358(0.842007, 0.970669)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
359(0.671093, 0.462077)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
360(0.052755, 0.0805379)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
361(0.371472, 0.420622)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
362(0.361223, 0.275529)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
363(0.712723, 0.949206)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
364(0.839556, 0.367051)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
365(0.908129, 0.564451)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
366(0.897244, 0.204985)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
367(0.895557, 0.266101)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
368(0.922429, 0.136686)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
369(0.136284, 0.11774)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
370(0.510634, 0.440489)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
371(0.177651, 0.941326)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
372(0.653837, 0.928918)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
373(0.551004, 0.980784)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
374(0.119739, 0.759617)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
375(0.68748, 0.701782)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
376(0.140038, 0.78358)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
377(0.330944, 0.622553)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
378(0.689447, 0.00523833)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
379(0.919986, 0.101708)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
380(0.813663, 0.706625)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
381(0.349291, 0.250534)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
382(0.254717, 0.582791)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
383(0.422193, 0.686597)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
384(0.240259, 0.866695)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
385(0.292676, 0.378369)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
386(0.585793, 0.651505)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
387(0.572424, 0.233949)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
388(0.45387, 0.191019)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
389(0.369513, 0.0578386)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
390(0.459058, 0.604089)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
391(0.197058, 0.353577)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
392(0.54984, 0.890158)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
393(0.551326, 0.457745)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
394(0.686559, 0.0795873)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
395(0.829477, 0.33469)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
396(0.729281, 0.914253)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
397(0.766035, 0.742888)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
398(0.299789, 0.694096)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
399(0.396616, 0.0370408)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
400(0.258117, 0.293204)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
401(0.475974, 0.680142)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
402(0.249477, 0.124755)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
403(0.105189, 0.188871)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
404(0.389043, 0.536571)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
405(0.426425, 0.0430912)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
406(0.413536, 0.123203)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
407(0.15072, 0.29408)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
408(0.240638, 0.663883)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
409(0.564732, 0.191377)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
410(0.532463, 0.834928)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
411(0.224205, 0.199386)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
412(0.576362, 0.828939)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
413(0.186341, 0.608073)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
414(0.0833662, 0.765639)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
415(0.0221547, 0.544642)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
416(0.413869, 0.688034)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
417(0.547392, 0.123789)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
418(0.734467, 0.704105)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
419(0.567175, 0.882442)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
420(0.324647, 0.0101051)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
421(0.39158, 0.684415)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
422(0.945525, 0.928077)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
423(0.194192, 0.388174)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
424(0.43713, 0.447577)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
425(0.589987, 0.710822)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
426(0.249576, 0.224826)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
427(0.601626, 0.450879)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
428(0.240279, 0.824186)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
429(0.757158, 0.401502)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
430(0.0303522, 0.511233)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
431(0.289843, 0.507122)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
432(0.808268, 0.402546)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
433(0.920402, 0.869044)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
434(0.842526, 0.197478)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
435(0.46875, 0.693198)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
436(0.525207, 0.701852)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
437(0.154391, 0.0934045)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
438(0.873289, 0.652491)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
439(0.786924, 0.812747)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
440(0.387309, 0.975693)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
441(0.56467, 0.821663)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
442(0.480164, 0.0344024)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
443(0.530439, 0.553851)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
444(0.321142, 0.344518)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
445(0.773683, 0.25125)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
446(0.349994, 0.631679)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
447(0.267345, 0.48996)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
448(0.87646, 0.246517)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
449(0.21817, 0.618778)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
450(0.126173, 0.0913011)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
451(0.172019, 0.965214)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
452(0.5808, 0.920004)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
453(0.881317, 0.495051)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
454(0.303799, 0.463338)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
455(0.92718, 0.758251)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
456(0.313552, 0.409902)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
457(0.0931349, 0.59274)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
458(0.79985, 0.542676)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
459(0.504222, 0.527211)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
460(0.843506, 0.356627)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
461(0.578961, 0.0476444)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
462(0.918654, 0.574042)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
463(0.495828, 0.396742)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
464(0.142775, 0.474125)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
465(0.777641, 0.620082)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
466(0.893575, 0.310569)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
467(0.415494, 0.415186)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
468(0.0763824, 0.549112)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
469(0.828036, 0.883)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
470(0.255713, 0.192621)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
471(0.457956, 0.867475)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
472(0.352071, 0.90655)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
473(0.297668, 0.107848)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
474(0.288411, 0.484655)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
475(0.612034, 0.634214)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
476(0.366968, 0.760727)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
477(0.0337788, 0.547059)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
478(0.466139, 0.912583)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
479(0.564769, 0.657923)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
480(0.64016, 0.943939)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
481(0.7695, 0.401172)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
482(0.646265, 0.904753)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
483(0.653015, 0.0389685)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
484(0.0784167, 0.939954)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
485(0.378492, 0.840743)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
486(0.856582, 0.652323)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
487(0.27299, 0.943085)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
488(0.264398, 0.63292)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
489(0.537988, 0.480751)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
490(0.976027, 0.465945)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
491(0.861519, 0.688583)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
492(0.222212, 0.00687235)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
493(0.502936, 0.790437)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
494(0.000597596, 0.427205)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
495(0.746452, 0.281119)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
496(0.382627, 0.426064)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
497(0.00948806, 0.0663716)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
498(0.785807, 0.063362)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
499(0.0599519, 0.565402)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
500(0.248365, 0.258432)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
501(0.99607, 0.391069)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
502(0.704101, 0.592859)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
503(0.284538, 0.170719)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
504(0.0928624, 0.0116864)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
505(0.0794059, 0.361833)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
506(0.206909, 0.278078)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
507(0.115505, 0.121835)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
508(0.679809, 0.797077)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
509(0.63528, 0.402412)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
510(0.0795248, 0.0692936)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
511(0.403739, 0.0509143)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
512(0.741353, 0.320517)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
513(0.706131, 0.289068)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
514(0.532542, 0.571947)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
515(0.0037239, 0.151272)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
516(0.39, 0.780031)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
517(0.451085, 0.0390241)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
518(0.272513, 0.0811024)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
519(0.373099, 0.385567)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
520(0.805736, 0.0113746)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
521(0.767808, 0.156551)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
522(0.654119, 0.626357)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
523(0.841316, 0.444444)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
524(0.754498, 0.553876)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
525(0.794752, 0.222285)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
526(0.214038, 0.940369)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
527(0.758292, 0.327577)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
528(0.50806, 0.181819)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
529(0.41146, 0.532624)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
530(0.250802, 0.789927)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
531(0.886826, 0.11044)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
532(0.180823, 0.879232)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
533(0.770977, 0.723274)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
534(0.781506, 0.985503)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
535(0.63338, 0.86879)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
536(0.930167, 0.985602)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
537(0.89978, 0.334442)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
538(0.337269, 0.961294)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
539(0.804146, 0.57355)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
540(0.218515, 0.675108)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
541(0.293108, 0.258575)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
542(0.627066, 0.93323)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
543(0.173447, 0.888564)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
544(0.0568038, 0.877518)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
545(0.290302, 0.734246)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
546(0.477707, 0.549281)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
547(0.771628, 0.971135)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
548(0.569325, 0.947054)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
549(0.440293, 0.646372)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
550(0.192014, 0.350375)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
551(0.623991, 0.463422)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
552(0.475818, 0.584471)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
553(0.899952, 0.054428)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
554(0.174872, 0.667737)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
555(0.720994, 0.755346)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
556(0.836201, 0.427847)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
557(0.203833, 0.969065)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
558(0.440363, 0.936411)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
559(0.52064, 0.410566)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
560(0.896275, 0.073629)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
561(0.933278, 0.608695)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
562(0.346729, 0.830278)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
563(0.432906, 0.123536)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
564(0.41933, 0.455784)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
565(0.305434, 0.726742)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
566(0.901625, 0.527154)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
567(0.236458, 0.895059)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
568(0.791315, 0.158594)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
569(0.993793, 0.871464)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
570(0.928158, 0.342885)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
571(0.690242, 0.616282)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
572(0.905659, 0.47595)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
573(0.824942, 0.638345)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
574(0.964204, 0.772044)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
575(0.939273, 0.0142486)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
576(0.114023, 0.327315)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
577(0.89654, 0.883098)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
578(0.116775, 0.674023)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
579(0.270854, 0.904031)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
580(0.485333, 0.769394)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
581(0.427713, 0.572203)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
582(0.392183, 0.712923)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
583(0.237125, 0.802753)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
584(0.907651, 0.708605)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
585(0.0332022, 0.292176)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
586(0.35028, 0.588742)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
587(0.893754, 0.62362)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
588(0.557737, 0.934176)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
589(0.719948, 0.978972)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
590(0.396708, 0.465986)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
591(0.504376, 0.723146)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
592(0.204767, 0.00489742)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
593(0.680319, 0.628127)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
594(0.38581, 0.193681)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
595(0.550338, 0.763826)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
596(0.5272, 0.259553)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
597(0.627003, 0.0862037)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
598(0.832569, 0.774284)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
599(0.682148, 0.563325)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
600(0.44994, 0.769079)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
601(0.716726, 0.677086)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
602(0.335838, 0.726001)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
603(0.563335, 0.958445)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
604(0.307733, 0.723714)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
605(0.69071, 0.550488)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
606(0.523819, 0.6369)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
607(0.70852, 0.67273)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
608(0.175161, 0.606384)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
609(0.43722, 0.525832)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
610(0.333085, 0.256295)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
611(0.501451, 0.73887)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
612(0.870326, 0.263243)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
613(0.417626, 0.587339)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
614(0.747397, 0.868873)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
615(0.668151, 0.360186)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
616(0.135877, 0.416409)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
617(0.953955, 0.216794)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
618(0.957996, 0.0696934)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
619(0.752172, 0.928905)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
620(0.389936, 0.981222)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
621(0.251251, 0.372126)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
622(0.224459, 0.757635)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
623(0.0453623, 0.289795)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
624(0.779124, 0.906634)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
625(0.880882, 0.544596)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
626(0.426032, 0.491599)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
627(0.828226, 0.441036)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
628(0.4982, 0.794233)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
629(0.689634, 0.429176)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
630(0.269778, 0.149564)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
631(0.834245, 0.461837)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
632(0.328857, 0.365269)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
633(0.695437, 0.0232173)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
634(0.265396, 0.559389)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
635(0.66581, 0.688863)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
636(0.451078, 0.655507)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
637(0.760736, 0.26411)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
638(0.227634, 0.790296)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
639(0.482199, 0.501575)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
640(0.604208, 0.175113)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
641(0.607069, 0.0319596)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
642(0.56899, 0.674687)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
643(0.13451, 0.537723)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
644(0.019377, 0.609382)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
645(0.312806, 0.661439)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
646(0.117179, 0.224584)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
647(0.137367, 0.169705)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
648(0.448422, 0.985935)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
649(0.0272759, 0.630975)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
650(0.509087, 0.697142)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
651(0.686291, 0.870603)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
652(0.696384, 0.857456)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
653(0.572764, 0.295665)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
654(0.0134834, 0.810248)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
655(0.20569, 0.91242)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
656(0.156701, 0.759952)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
657(0.655009, 0.998471)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
658(0.494494, 0.0504647)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
659(0.416882, 0.847806)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
660(0.490513, 0.079485)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
661(0.299278, 0.157115)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
662(0.502377, 0.537751)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
663(0.412329, 0.28955)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
664(0.463351, 0.794389)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
665(0.976155, 0.671007)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
666(0.840997, 0.238658)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
667(0.663231, 0.811088)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
668(0.897346, 0.917782)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
669(0.0151835, 0.938515)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
670(0.692106, 0.580217)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
671(0.254417, 0.532459)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
672(0.545995, 0.477908)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
673(0.946535, 0.924386)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
674(0.502795, 0.349162)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
675(0.289789, 0.311219)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
676(0.191333, 0.585329)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
677(0.950064, 0.593266)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
678(0.878929, 0.445779)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
679(0.748154, 0.147465)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
680(0.579798, 0.993932)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
681(0.96654, 0.0849375)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
682(0.0858401, 0.411917)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
683(0.369689, 0.75787)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
684(0.23775, 0.190526)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
685(0.278984, 0.524606)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
686(0.905694, 0.133709)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
687(0.880069, 0.53675)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
688(0.864118, 0.678331)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
689(0.517781, 0.398601)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
690(0.110163, 0.072737)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
691(0.924236, 0.838305)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
692(0.725025, 0.27284)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
693(0.288045, 0.183676)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
694(0.613311, 0.054279)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
695(0.462139, 0.46355)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
696(0.890353, 0.937068)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
697(0.995317, 0.243802)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
698(0.461323, 0.165357)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
699(0.537699, 0.501566)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
700(0.949582, 0.754793)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
701(0.748181, 0.787134)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
702(0.747585, 0.0384043)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
703(0.0731726, 0.987318)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
704(0.645461, 0.918388)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
705(0.846336, 0.931166)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
706(0.394124, 0.758768)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
707(0.289529, 0.639075)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
708(0.024499, 0.250842)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
709(0.549776, 0.3804)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
710(0.73851, 0.421738)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
711(0.830633, 0.707821)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
712(0.359168, 0.245077)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
713(0.878006, 0.435907)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
714(0.168148, 0.0300168)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
715(0.391438, 0.822833)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
716(0.330377, 0.11901)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
717(0.230722, 0.961096)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
718(0.925579, 0.107569)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
719(0.597327, 0.0592506)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
720(0.19146, 0.344647)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
721(0.681559, 0.985404)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
722(0.778264, 0.781388)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
723(0.226161, 0.188137)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
724(0.716201, 0.0763721)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
725(0.186345, 0.646837)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
726(0.891701, 0.545323)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
727(0.6264, 0.955302)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
728(0.320837, 0.259022)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
729(0.239993, 0.634387)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
730(0.355403, 0.974718)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
731(0.247865, 0.342139)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
732(0.973403, 0.80163)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
733(0.121985, 0.898512)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
734(0.534162, 0.245633)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
735(0.36047, 0.895898)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
736(0.910512, 0.854521)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
737(0.849422, 0.102022)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
738(0.774621, 0.53439)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
739(0.668827, 0.0878068)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
740(0.536815, 0.403009)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
741(0.210725, 0.945339)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
742(0.763267, 0.897146)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
743(0.216462, 0.454917)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
744(0.919279, 0.705201)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
745(0.719255, 0.0239219)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
746(0.518369, 0.641903)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
747(0.175011, 0.0394304)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
748(0.263298, 0.354947)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
749(0.358403, 0.481324)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
750(0.457378, 0.471547)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
751(0.880441, 0.692233)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
752(0.112242, 0.795999)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
753(0.683182, 0.422801)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
754(0.259521, 0.755959)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
755(0.324104, 0.609911)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
756(0.88559, 0.324173)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
757(0.579766, 0.436791)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
758(0.6907, 0.970716)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
759(0.917617, 0.934394)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
760(0.987098, 0.453591)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
761(0.735306, 0.458692)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
762(0.203767, 0.608092)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
763(0.0412807, 0.389612)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
764(0.702313, 0.282352)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
765(0.84934, 0.0181372)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
766(0.428857, 0.150849)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
767(0.636487, 0.683877)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
768(0.806857, 0.423287)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
769(0.487298, 0.959273)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
770(0.409634, 0.304066)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
771(0.770027, 0.434079)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
772(0.0633757, 0.865945)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
773(0.929929, 0.830548)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
774(0.557166, 0.337954)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
775(0.729463, 0.426901)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
776(0.94703, 0.112814)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
777(0.242424, 0.984489)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
778(0.215365, 0.673768)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
779(0.87598, 0.731379)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
780(0.00565857, 0.0209004)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
781(0.342293, 0.333946)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
782(0.0803693, 0.830222)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
783(0.455789, 0.476141)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
784(0.339057, 0.870662)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
785(0.565653, 0.877731)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
786(0.499071, 0.598611)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
787(0.982669, 0.673053)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
788(0.550818, 0.659097)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
789(0.142648, 0.218539)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
790(0.181929, 0.229951)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
791(0.747348, 0.705939)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
792(0.131397, 0.449063)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
793(0.545705, 0.991653)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
794(0.641882, 0.475059)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
795(0.584991, 0.689854)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
796(0.75235, 0.236788)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
797(0.240731, 0.661391)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
798(0.229511, 0.196474)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
799(0.503043, 0.603956)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
800(0.90717, 0.0455669)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
801(0.124965, 0.376021)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
802(0.170013, 0.371246)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
803(0.555482, 0.785996)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
804(0.295394, 0.735396)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
805(0.702758, 0.532585)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
806(0.0880038, 0.740073)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
807(0.0824559, 0.355474)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
808(0.37085, 0.511245)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
809(0.0423702, 0.506353)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
810(0.801351, 0.427526)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
811(0.526432, 0.724561)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
812(0.544338, 0.990314)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
813(0.828111, 0.525186)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
814(0.225112, 0.584456)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
815(0.357585, 0.537925)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
816(0.235751, 0.861451)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
817(0.616586, 0.0872759)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
818(0.998065, 0.479146)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
819(0.761918, 0.994929)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
820(0.531679, 0.108398)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
821(0.159819, 0.75863)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
822(0.46975, 0.0466289)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
823(0.0747837, 0.0992481)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
824(0.191321, 0.451099)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
825(0.0954821, 0.183645)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
826(0.0194854, 0.410859)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
827(0.0770289, 0.894609)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
828(0.704987, 0.579709)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
829(0.160625, 0.948818)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
830(0.0921905, 0.531742)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
831(0.65147, 0.469888)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
832(0.0447669, 0.704551)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
833(0.696421, 0.915134)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
834(0.477701, 0.560282)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
835(0.826567, 0.08392)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
836(0.0213188, 0.784494)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
837(0.0761495, 0.038821)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
838(0.146966, 0.391633)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
839(0.594674, 0.406787)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
840(0.851184, 0.388569)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
841(0.0594572, 0.283777)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
842(0.642616, 0.698215)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
843(0.580202, 0.0695292)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
844(0.231477, 0.580579)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
845(0.637925, 0.0556328)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
846(0.772001, 0.010895)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
847(0.384666, 0.804292)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
848(0.400217, 0.760891)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
849(0.389938, 0.0471408)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
850(0.323901, 0.0416819)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
851(0.159154, 0.376318)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
852(0.565121, 0.952292)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
853(0.828423, 0.783105)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
854(0.237317, 0.484632)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
855(0.40654, 0.639)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
856(0.27276, 0.905197)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
857(0.675666, 0.506943)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
858(0.737128, 0.562054)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
859(0.790571, 0.907306)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
860(0.455126, 0.930905)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
861(0.464682, 0.981747)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
862(0.714569, 0.319114)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
863(0.747451, 0.01505)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
864(0.197579, 0.53557)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
865(0.376741, 0.160617)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
866(0.185151, 0.209114)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
867(0.496396, 0.297425)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
868(0.41691, 0.514888)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
869(0.315707, 0.150426)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
870(0.444275, 0.319961)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
871(0.470269, 0.62014)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
872(0.250507, 0.134132)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
873(0.685605, 0.276565)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
874(0.401507, 0.246932)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
875(0.546938, 0.758099)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
876(0.361783, 0.196386)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
877(0.798356, 0.790497)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
878(0.381972, 0.635125)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
879(0.41359, 0.244822)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
880(0.199968, 0.792212)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
881(0.311951, 0.900304)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
882(0.893792, 0.702592)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
883(0.0141365, 0.87422)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
884(0.0384743, 0.123574)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
885(0.838422, 0.7201)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
886(0.467911, 0.676947)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
887(0.589786, 0.356815)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
888(0.488852, 0.32107)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
889(0.943818, 0.0698023)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
890(0.650947, 0.0764122)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
891(0.0362271, 0.628359)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
892(0.50163, 0.0471793)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
893(0.603295, 0.946119)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
894(0.612133, 0.918314)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
895(0.992572, 0.0742348)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
896(0.943113, 0.245867)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
897(0.750814, 0.988495)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
898(0.228282, 0.192259)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
899(0.625965, 0.157507)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
900(0.458635, 0.480707)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
901(0.570632, 0.854233)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
902(0.162472, 0.830257)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
903(0.315977, 0.943475)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
904(0.345989, 0.0358308)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
905(0.314856, 0.309973)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
906(0.253382, 0.777722)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
907(0.402153, 0.328242)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
908(0.790449, 0.187355)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
909(0.119362, 0.239842)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
910(0.0243733, 0.488615)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
911(0.502917, 0.432084)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
912(0.127648, 0.328289)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
913(0.655794, 0.405242)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
914(0.741415, 0.840963)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
915(0.971339, 0.0765655)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
916(0.67563, 0.463597)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
917(0.280131, 0.788151)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
918(0.602995, 0.476848)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
919(0.733416, 0.198813)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
920(0.804043, 0.24287)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
921(0.708144, 0.281676)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
922(0.832769, 0.487498)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
923(0.070501, 0.335602)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
924(0.541796, 0.083814)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
925(0.0257521, 0.812221)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
926(0.557798, 0.474775)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
927(0.60401, 0.209763)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
928(0.870377, 0.955184)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
929(0.888437, 0.411656)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
930(0.617794, 0.278618)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
931(0.34026, 0.514954)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
932(0.980924, 0.863469)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
933(0.673122, 0.765125)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
934(0.891067, 0.420811)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
935(0.113691, 0.453122)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
936(0.258487, 0.984122)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
937(0.685378, 0.103095)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
938(0.39382, 0.141373)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
939(0.596235, 0.474412)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
940(0.869424, 0.780699)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
941(0.164131, 0.440058)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
942(0.0436253, 0.968706)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
943(0.824712, 0.0579931)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
944(0.669979, 0.502882)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
945(0.322257, 0.638652)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
946(0.602418, 0.944813)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
947(0.473049, 0.232756)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
948(0.162908, 0.287806)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
949(0.0257871, 0.391599)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
950(0.4458, 0.170956)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
951(0.471641, 0.407937)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
952(0.866939, 0.118715)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
953(0.949593, 0.192584)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
954(0.0809666, 0.928908)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
955(0.401386, 0.832782)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
956(0.715832, 0.122867)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
957(0.408207, 0.797291)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
958(0.384039, 0.0525275)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
959(0.407919, 0.181933)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
960(0.961018, 0.209384)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
961(0.637144, 0.0519378)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
962(0.858008, 0.926193)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
963(0.656818, 0.536412)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
964(0.982761, 0.318581)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
965(0.1553, 0.678756)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
966(0.861853, 0.376452)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
967(0.42193, 0.54552)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
968(0.584755, 0.658766)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
969(0.824075, 0.439823)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
970(0.954337, 0.932345)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
971(0.244003, 0.509786)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
972(0.338185, 0.0942468)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
973(0.333524, 0.880982)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
974(0.375354, 0.879216)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
975(0.687411, 0.616336)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
976(0.401855, 0.55862)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
977(0.782838, 0.921745)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
978(0.723637, 0.701824)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
979(0.00127379, 0.250643)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
980(0.58876, 0.00379436)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
981(0.718404, 0.375573)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
982(0.132484, 0.910641)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
983(0.846967, 0.52689)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
984(0.0245429, 0.249223)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
985(0.211491, 0.166168)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
986(0.928752, 0.129423)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
987(0.101336, 0.913714)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
988(0.588685, 0.792643)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
989(0.825149, 0.456824)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
990(0.955796, 0.0974551)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
991(0.845674, 0.191616)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
992(0.583933, 0.614775)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
993(0.280367, 0.750336)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
994(0.80843, 0.0519292)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
995(0.922822, 0.314164)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
996(0.129179, 0.393819)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
997(0.430212, 0.984949)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
998(0.997466, 0.709782)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
999(0.91426, 0.143988)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)red
1000(0.0537724, 0.140957)Polygon{false, false, Vector{LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (0, 1), (1, 1), (0, 0)], nothing, nothing)], nothing, nothing)blue
julia
scatter!(a, joined_df.geometry; color = joined_df.color)
f

Here, you can see that the colors were assigned appropriately to the scattered points!

Real-world example

Suppose I have a list of polygons representing administrative regions (or mining sites, or what have you), and I have a list of polygons for each country. I want to find the country each region is in.

julia
import GeoInterface as GI, GeometryOps as GO
using FlexiJoins, DataFrames, GADM # GADM gives us country and sublevel geometry

using CairoMakie, GeoInterfaceMakie

country_df = GADM.get.(["JPN", "USA", "IND", "DEU", "FRA"]) |> DataFrame
country_df.geometry = GI.GeometryCollection.(GO.tuples.(country_df.geom))

state_doublets = [
    ("USA", "New York"),
    ("USA", "California"),
    ("IND", "Karnataka"),
    ("DEU", "Berlin"),
    ("FRA", "Grand Est"),
    ("JPN", "Tokyo"),
]

state_full_df = (x -> GADM.get(x...)).(state_doublets) |> DataFrame
state_full_df.geom = GO.tuples.(only.(state_full_df.geom))
state_compact_df = state_full_df[:, [:geom, :NAME_1]]
julia
innerjoin((state_compact_df, country_df), by_pred(:geom, GO.within, :geometry))
innerjoin((state_compact_df,  view(country_df, 1:1, :)), by_pred(:geom, GO.within, :geometry))

Warning

This is how you would do this, but it doesn't work yet, since the GeometryOps predicates are quite slow on large polygons. If you try this, the code will continue to run for a very, very long time (it took 12 hours on my laptop, but with minimal CPU usage).

Enabling custom predicates

In case you want to use a custom predicate, you only need to define a method to tell FlexiJoins how to use it.

For example, let's suppose you wanted to perform a spatial join on geometries which are some distance away from each other:

julia
my_predicate_function = <(5)  abs  GO.distance

You would need to define FlexiJoins.supports_mode on your predicate:

julia
FlexiJoins.supports_mode(
    ::FlexiJoins.Mode.NestedLoopFast, 
    ::FlexiJoins.ByPred{typeof(my_predicate_function)}, 
    datas
) = true

This will enable FlexiJoins to support your custom function, when it's passed to by_pred(:geometry, my_predicate_function, :geometry).