Skip to content

Commit

Permalink
Deploy v1.6 to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dopplershift committed Apr 2, 2024
1 parent 565723f commit 8e8af34
Show file tree
Hide file tree
Showing 795 changed files with 3,953 additions and 3,925 deletions.
4 changes: 2 additions & 2 deletions v1.6/_downloads/250304950504afb671a5fd8c761b2041/Smoothing.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@

###########################################
# Start with a base pattern with random noise
np.random.seed(61461542)
rng = np.random.default_rng(61461542)
size = 128
x, y = np.mgrid[:size, :size]
distance = np.sqrt((x - size / 2) ** 2 + (y - size / 2) ** 2)
raw_data = np.random.random((size, size)) * 0.3 + distance / distance.max() * 0.7
raw_data = rng.random((size, size)) * 0.3 + distance / distance.max() * 0.7

fig, ax = plt.subplots(1, 1, figsize=(4, 4))
ax.set_title('Raw Data')
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"outputs": [],
"source": [
"np.random.seed(61461542)\nsize = 128\nx, y = np.mgrid[:size, :size]\ndistance = np.sqrt((x - size / 2) ** 2 + (y - size / 2) ** 2)\nraw_data = np.random.random((size, size)) * 0.3 + distance / distance.max() * 0.7\n\nfig, ax = plt.subplots(1, 1, figsize=(4, 4))\nax.set_title('Raw Data')\nax.imshow(raw_data, vmin=0, vmax=1)\nax.axis('off')\nplt.show()"
"rng = np.random.default_rng(61461542)\nsize = 128\nx, y = np.mgrid[:size, :size]\ndistance = np.sqrt((x - size / 2) ** 2 + (y - size / 2) ** 2)\nraw_data = rng.random((size, size)) * 0.3 + distance / distance.max() * 0.7\n\nfig, ax = plt.subplots(1, 1, figsize=(4, 4))\nax.set_title('Raw Data')\nax.imshow(raw_data, vmin=0, vmax=1)\nax.axis('off')\nplt.show()"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def draw_circle(ax, x, y, r, m, label):
# Generate random x and y coordinates, and observation values proportional to x * y.
#
# Set up two test grid locations at (30, 30) and (60, 60).
np.random.seed(100)

pts = np.random.randint(0, 100, (10, 2))
pts = np.array([[8, 24], [67, 87], [79, 48], [10, 94], [52, 98],
[53, 66], [98, 14], [34, 24], [15, 60], [58, 16]])
xp = pts[:, 0]
yp = pts[:, 1]
zp = xp**2 / 1000
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@
# estimate a value using natural neighbor interpolation.
#
# The locations of these observations are then used to generate a Delaunay triangulation.
np.random.seed(100)

pts = np.random.randint(0, 100, (10, 2))
# Some randomly selected points
pts = np.array([[8, 24], [67, 87], [79, 48], [10, 94], [52, 98],
[53, 66], [98, 14], [34, 24], [15, 60], [58, 16]])

xp = pts[:, 0]
yp = pts[:, 1]
zp = (pts[:, 0] * pts[:, 0]) / 1000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"outputs": [],
"source": [
"np.random.seed(100)\n\npts = np.random.randint(0, 100, (10, 2))\nxp = pts[:, 0]\nyp = pts[:, 1]\nzp = (pts[:, 0] * pts[:, 0]) / 1000\n\ntri = Delaunay(pts)\n\nfig, ax = plt.subplots(1, 1, figsize=(15, 10))\nax.ishold = lambda: True # Work-around for Matplotlib 3.0.0 incompatibility\ndelaunay_plot_2d(tri, ax=ax)\n\nfor i, zval in enumerate(zp):\n ax.annotate(f'{zval} F', xy=(pts[i, 0] + 2, pts[i, 1]))\n\nsim_gridx = [30., 60.]\nsim_gridy = [30., 60.]\n\nax.plot(sim_gridx, sim_gridy, '+', markersize=10)\nax.set_aspect('equal', 'datalim')\nax.set_title('Triangulation of observations and test grid cell '\n 'natural neighbor interpolation values')\n\nmembers, circumcenters = geometry.find_natural_neighbors(tri, list(zip(sim_gridx, sim_gridy)))\n\nval = natural_neighbor_point(xp, yp, zp, (sim_gridx[0], sim_gridy[0]), tri, members[0],\n circumcenters)\nax.annotate(f'grid 0: {val:.3f}', xy=(sim_gridx[0] + 2, sim_gridy[0]))\n\nval = natural_neighbor_point(xp, yp, zp, (sim_gridx[1], sim_gridy[1]), tri, members[1],\n circumcenters)\nax.annotate(f'grid 1: {val:.3f}', xy=(sim_gridx[1] + 2, sim_gridy[1]))"
"# Some randomly selected points\npts = np.array([[8, 24], [67, 87], [79, 48], [10, 94], [52, 98],\n [53, 66], [98, 14], [34, 24], [15, 60], [58, 16]])\n\nxp = pts[:, 0]\nyp = pts[:, 1]\nzp = (pts[:, 0] * pts[:, 0]) / 1000\n\ntri = Delaunay(pts)\n\nfig, ax = plt.subplots(1, 1, figsize=(15, 10))\nax.ishold = lambda: True # Work-around for Matplotlib 3.0.0 incompatibility\ndelaunay_plot_2d(tri, ax=ax)\n\nfor i, zval in enumerate(zp):\n ax.annotate(f'{zval} F', xy=(pts[i, 0] + 2, pts[i, 1]))\n\nsim_gridx = [30., 60.]\nsim_gridy = [30., 60.]\n\nax.plot(sim_gridx, sim_gridy, '+', markersize=10)\nax.set_aspect('equal', 'datalim')\nax.set_title('Triangulation of observations and test grid cell '\n 'natural neighbor interpolation values')\n\nmembers, circumcenters = geometry.find_natural_neighbors(tri, list(zip(sim_gridx, sim_gridy)))\n\nval = natural_neighbor_point(xp, yp, zp, (sim_gridx[0], sim_gridy[0]), tri, members[0],\n circumcenters)\nax.annotate(f'grid 0: {val:.3f}', xy=(sim_gridx[0] + 2, sim_gridy[0]))\n\nval = natural_neighbor_point(xp, yp, zp, (sim_gridx[1], sim_gridy[1]), tri, members[1],\n circumcenters)\nax.annotate(f'grid 1: {val:.3f}', xy=(sim_gridx[1] + 2, sim_gridy[1]))"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"outputs": [],
"source": [
"np.random.seed(100)\n\npts = np.random.randint(0, 100, (10, 2))\nxp = pts[:, 0]\nyp = pts[:, 1]\nzp = xp**2 / 1000\n\nsim_gridx = [30, 60]\nsim_gridy = [30, 60]"
"pts = np.array([[8, 24], [67, 87], [79, 48], [10, 94], [52, 98],\n [53, 66], [98, 14], [34, 24], [15, 60], [58, 16]])\nxp = pts[:, 0]\nyp = pts[:, 1]\nzp = xp**2 / 1000\n\nsim_gridx = [30, 60]\nsim_gridy = [30, 60]"
]
},
{
Expand Down
Binary file not shown.
Binary file modified v1.6/_images/areas-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-101.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-102.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-103.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-104.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-105.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-106.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-107.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-108.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-109.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-110.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-111.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-112.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-113.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-114.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-115.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-116.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-117.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-118.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-119.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified v1.6/_images/areas-121.png
Binary file modified v1.6/_images/areas-122.png
Binary file modified v1.6/_images/areas-123.png
Binary file modified v1.6/_images/areas-124.png
Binary file modified v1.6/_images/areas-125.png
Binary file modified v1.6/_images/areas-126.png
Binary file modified v1.6/_images/areas-127.png
Binary file modified v1.6/_images/areas-128.png
Binary file modified v1.6/_images/areas-129.png
Binary file modified v1.6/_images/areas-13.png
Binary file modified v1.6/_images/areas-130.png
Binary file modified v1.6/_images/areas-131.png
Binary file modified v1.6/_images/areas-132.png
Binary file modified v1.6/_images/areas-133.png
Binary file modified v1.6/_images/areas-134.png
Binary file modified v1.6/_images/areas-135.png
Binary file modified v1.6/_images/areas-136.png
Binary file modified v1.6/_images/areas-137.png
Binary file modified v1.6/_images/areas-138.png
Binary file modified v1.6/_images/areas-139.png
Binary file modified v1.6/_images/areas-14.png
Binary file modified v1.6/_images/areas-140.png
Binary file modified v1.6/_images/areas-141.png
Binary file modified v1.6/_images/areas-142.png
Binary file modified v1.6/_images/areas-143.png
Binary file modified v1.6/_images/areas-144.png
Binary file modified v1.6/_images/areas-145.png
Binary file modified v1.6/_images/areas-146.png
Binary file modified v1.6/_images/areas-147.png
Binary file modified v1.6/_images/areas-148.png
Binary file modified v1.6/_images/areas-149.png
Binary file modified v1.6/_images/areas-15.png
Binary file modified v1.6/_images/areas-150.png
Binary file modified v1.6/_images/areas-151.png
Binary file modified v1.6/_images/areas-152.png
Binary file modified v1.6/_images/areas-153.png
Binary file modified v1.6/_images/areas-154.png
Binary file modified v1.6/_images/areas-155.png
Binary file modified v1.6/_images/areas-156.png
Binary file modified v1.6/_images/areas-157.png
Binary file modified v1.6/_images/areas-158.png
Binary file modified v1.6/_images/areas-159.png
Binary file modified v1.6/_images/areas-16.png
Binary file modified v1.6/_images/areas-160.png
Binary file modified v1.6/_images/areas-161.png
Binary file modified v1.6/_images/areas-162.png
Binary file modified v1.6/_images/areas-163.png
Binary file modified v1.6/_images/areas-164.png
Binary file modified v1.6/_images/areas-165.png
Binary file modified v1.6/_images/areas-166.png
Binary file modified v1.6/_images/areas-167.png
Binary file modified v1.6/_images/areas-168.png
Binary file modified v1.6/_images/areas-169.png
Binary file modified v1.6/_images/areas-17.png
Binary file modified v1.6/_images/areas-170.png
Binary file modified v1.6/_images/areas-171.png
Binary file modified v1.6/_images/areas-172.png
Binary file modified v1.6/_images/areas-173.png
Binary file modified v1.6/_images/areas-174.png
Binary file modified v1.6/_images/areas-175.png
Binary file modified v1.6/_images/areas-176.png
Binary file modified v1.6/_images/areas-177.png
Binary file modified v1.6/_images/areas-178.png
Binary file modified v1.6/_images/areas-179.png
Binary file modified v1.6/_images/areas-18.png
Binary file modified v1.6/_images/areas-180.png
Binary file modified v1.6/_images/areas-181.png
Binary file modified v1.6/_images/areas-182.png
Binary file modified v1.6/_images/areas-183.png
Binary file modified v1.6/_images/areas-184.png
Binary file modified v1.6/_images/areas-185.png
Binary file modified v1.6/_images/areas-186.png
Binary file modified v1.6/_images/areas-187.png
Binary file modified v1.6/_images/areas-188.png
Binary file modified v1.6/_images/areas-189.png
Binary file modified v1.6/_images/areas-19.png
Binary file modified v1.6/_images/areas-190.png
Binary file modified v1.6/_images/areas-191.png
Binary file modified v1.6/_images/areas-192.png
Binary file modified v1.6/_images/areas-193.png
Binary file modified v1.6/_images/areas-194.png
Binary file modified v1.6/_images/areas-195.png
Binary file modified v1.6/_images/areas-196.png
Binary file modified v1.6/_images/areas-197.png
Binary file modified v1.6/_images/areas-198.png
Binary file modified v1.6/_images/areas-199.png
Binary file modified v1.6/_images/areas-2.png
Binary file modified v1.6/_images/areas-20.png
Binary file modified v1.6/_images/areas-200.png
Binary file modified v1.6/_images/areas-201.png
Binary file modified v1.6/_images/areas-202.png
Binary file modified v1.6/_images/areas-203.png
Binary file modified v1.6/_images/areas-204.png
Binary file modified v1.6/_images/areas-205.png
Binary file modified v1.6/_images/areas-206.png
Binary file modified v1.6/_images/areas-207.png
Binary file modified v1.6/_images/areas-208.png
Binary file modified v1.6/_images/areas-209.png
Binary file modified v1.6/_images/areas-21.png
Binary file modified v1.6/_images/areas-210.png
Binary file modified v1.6/_images/areas-211.png
Binary file modified v1.6/_images/areas-212.png
Binary file modified v1.6/_images/areas-213.png
Binary file modified v1.6/_images/areas-214.png
Binary file modified v1.6/_images/areas-215.png
Binary file modified v1.6/_images/areas-216.png
Binary file modified v1.6/_images/areas-217.png
Binary file modified v1.6/_images/areas-218.png
Binary file modified v1.6/_images/areas-219.png
Binary file modified v1.6/_images/areas-22.png
Binary file modified v1.6/_images/areas-220.png
Binary file modified v1.6/_images/areas-221.png
Binary file modified v1.6/_images/areas-222.png
Binary file modified v1.6/_images/areas-223.png
Binary file modified v1.6/_images/areas-224.png
Binary file modified v1.6/_images/areas-225.png
Binary file modified v1.6/_images/areas-226.png
Binary file modified v1.6/_images/areas-227.png
Binary file modified v1.6/_images/areas-228.png
Binary file modified v1.6/_images/areas-229.png
Binary file modified v1.6/_images/areas-23.png
Binary file modified v1.6/_images/areas-230.png
Binary file modified v1.6/_images/areas-231.png
Binary file modified v1.6/_images/areas-232.png
Binary file modified v1.6/_images/areas-233.png
Binary file modified v1.6/_images/areas-234.png
Binary file modified v1.6/_images/areas-235.png
Binary file modified v1.6/_images/areas-236.png
Binary file modified v1.6/_images/areas-237.png
Binary file modified v1.6/_images/areas-238.png
Binary file modified v1.6/_images/areas-239.png
Binary file modified v1.6/_images/areas-24.png
Binary file modified v1.6/_images/areas-240.png
Binary file modified v1.6/_images/areas-241.png
Binary file modified v1.6/_images/areas-242.png
Binary file modified v1.6/_images/areas-243.png
Binary file modified v1.6/_images/areas-244.png
Binary file modified v1.6/_images/areas-245.png
Binary file modified v1.6/_images/areas-246.png
Binary file modified v1.6/_images/areas-247.png
Binary file modified v1.6/_images/areas-248.png
Binary file modified v1.6/_images/areas-249.png
Binary file modified v1.6/_images/areas-25.png
Binary file modified v1.6/_images/areas-250.png
Binary file modified v1.6/_images/areas-251.png
Binary file modified v1.6/_images/areas-252.png
Binary file modified v1.6/_images/areas-253.png
Binary file modified v1.6/_images/areas-254.png
Binary file modified v1.6/_images/areas-255.png
Binary file modified v1.6/_images/areas-256.png
Binary file modified v1.6/_images/areas-257.png
Binary file modified v1.6/_images/areas-258.png
Binary file modified v1.6/_images/areas-259.png
Binary file modified v1.6/_images/areas-26.png
Binary file modified v1.6/_images/areas-260.png
Binary file modified v1.6/_images/areas-261.png
Binary file modified v1.6/_images/areas-262.png
Binary file modified v1.6/_images/areas-263.png
Binary file modified v1.6/_images/areas-264.png
Binary file modified v1.6/_images/areas-265.png
Binary file modified v1.6/_images/areas-266.png
Binary file modified v1.6/_images/areas-267.png
Binary file modified v1.6/_images/areas-268.png
Binary file modified v1.6/_images/areas-269.png
Binary file modified v1.6/_images/areas-27.png
Binary file modified v1.6/_images/areas-270.png
Binary file modified v1.6/_images/areas-271.png
Binary file modified v1.6/_images/areas-272.png
Binary file modified v1.6/_images/areas-273.png
Binary file modified v1.6/_images/areas-274.png
Binary file modified v1.6/_images/areas-275.png
Binary file modified v1.6/_images/areas-276.png
Binary file modified v1.6/_images/areas-277.png
Binary file modified v1.6/_images/areas-278.png
Binary file modified v1.6/_images/areas-279.png
Binary file modified v1.6/_images/areas-28.png
Binary file modified v1.6/_images/areas-280.png
Binary file modified v1.6/_images/areas-281.png
Binary file modified v1.6/_images/areas-282.png
Binary file modified v1.6/_images/areas-283.png
Binary file modified v1.6/_images/areas-284.png
Binary file modified v1.6/_images/areas-285.png
Binary file modified v1.6/_images/areas-286.png
Binary file modified v1.6/_images/areas-287.png
Binary file modified v1.6/_images/areas-288.png
Binary file modified v1.6/_images/areas-289.png
Binary file modified v1.6/_images/areas-29.png
Binary file modified v1.6/_images/areas-290.png
Binary file modified v1.6/_images/areas-291.png
Binary file modified v1.6/_images/areas-292.png
Binary file modified v1.6/_images/areas-293.png
Binary file modified v1.6/_images/areas-294.png
Binary file modified v1.6/_images/areas-295.png
Binary file modified v1.6/_images/areas-296.png
Binary file modified v1.6/_images/areas-297.png
Binary file modified v1.6/_images/areas-298.png
Binary file modified v1.6/_images/areas-299.png
Binary file modified v1.6/_images/areas-3.png
Binary file modified v1.6/_images/areas-30.png
Binary file modified v1.6/_images/areas-300.png
Binary file modified v1.6/_images/areas-301.png
Binary file modified v1.6/_images/areas-302.png
Binary file modified v1.6/_images/areas-303.png
Binary file modified v1.6/_images/areas-304.png
Binary file modified v1.6/_images/areas-305.png
Binary file modified v1.6/_images/areas-306.png
Binary file modified v1.6/_images/areas-307.png
Binary file modified v1.6/_images/areas-308.png
Binary file modified v1.6/_images/areas-309.png
Binary file modified v1.6/_images/areas-31.png
Binary file modified v1.6/_images/areas-310.png
Binary file modified v1.6/_images/areas-311.png
Binary file modified v1.6/_images/areas-312.png
Binary file modified v1.6/_images/areas-313.png
Binary file modified v1.6/_images/areas-314.png
Binary file modified v1.6/_images/areas-315.png
Binary file modified v1.6/_images/areas-316.png
Binary file modified v1.6/_images/areas-317.png
Binary file modified v1.6/_images/areas-318.png
Binary file modified v1.6/_images/areas-319.png
Binary file modified v1.6/_images/areas-32.png
Binary file modified v1.6/_images/areas-320.png
Binary file modified v1.6/_images/areas-321.png
Binary file modified v1.6/_images/areas-322.png
Binary file modified v1.6/_images/areas-323.png
Binary file modified v1.6/_images/areas-324.png
Binary file modified v1.6/_images/areas-325.png
Binary file modified v1.6/_images/areas-326.png
Binary file modified v1.6/_images/areas-327.png
Binary file modified v1.6/_images/areas-328.png
Binary file modified v1.6/_images/areas-329.png
Binary file modified v1.6/_images/areas-33.png
Binary file modified v1.6/_images/areas-330.png
Binary file modified v1.6/_images/areas-331.png
Binary file modified v1.6/_images/areas-34.png
Binary file modified v1.6/_images/areas-35.png
Binary file modified v1.6/_images/areas-36.png
Binary file modified v1.6/_images/areas-37.png
Binary file modified v1.6/_images/areas-38.png
Binary file modified v1.6/_images/areas-39.png
Binary file modified v1.6/_images/areas-4.png
Binary file modified v1.6/_images/areas-40.png
Binary file modified v1.6/_images/areas-41.png
Binary file modified v1.6/_images/areas-42.png
Binary file modified v1.6/_images/areas-43.png
Binary file modified v1.6/_images/areas-44.png
Binary file modified v1.6/_images/areas-45.png
Binary file modified v1.6/_images/areas-46.png
Binary file modified v1.6/_images/areas-47.png
Binary file modified v1.6/_images/areas-48.png
Binary file modified v1.6/_images/areas-49.png
Binary file modified v1.6/_images/areas-5.png
Binary file modified v1.6/_images/areas-50.png
Binary file modified v1.6/_images/areas-51.png
Binary file modified v1.6/_images/areas-52.png
Binary file modified v1.6/_images/areas-53.png
Binary file modified v1.6/_images/areas-54.png
Binary file modified v1.6/_images/areas-55.png
Binary file modified v1.6/_images/areas-56.png
Binary file modified v1.6/_images/areas-57.png
Binary file modified v1.6/_images/areas-58.png
Binary file modified v1.6/_images/areas-59.png
Binary file modified v1.6/_images/areas-6.png
Binary file modified v1.6/_images/areas-60.png
Binary file modified v1.6/_images/areas-61.png
Loading

0 comments on commit 8e8af34

Please sign in to comment.